目录
Table of Contents
守护进程是作为后台进程运行的计算机程序,而不是在交互式用户的直接控制下运行。
Gradle 在 Java 虚拟机 (JVM) 上运行,并使用多个需要大量初始化时间的支持库。因此,有时启动起来似乎有点慢。这个问题的解决方案是 Gradle守护进程:一个长期存在的后台进程,可以比其他情况更快地执行您的构建。我们通过避免昂贵的引导过程以及利用缓存来实现这一点,方法是将有关项目的数据保存在内存中。使用 Daemon 运行 Gradle 构建与没有运行 Gradle 构建没有什么不同。只需配置是否要使用它——其他一切都由 Gradle 透明地处理。
Gradle runs on the Java Virtual Machine (JVM) and uses several supporting libraries that require a non-trivial initialization time. As a result, it can sometimes seem a little slow to start. The solution to this problem is the Gradle Daemon: a long-lived background process that executes your builds much more quickly than would otherwise be the case. We accomplish this by avoiding the expensive bootstrapping process as well as leveraging caching, by keeping data about your project in memory. Running Gradle builds with the Daemon is no different than without. Simply configure whether you want to use it or not - everything else is handled transparently by Gradle.
Gradle 守护进程默认不启用,但我们建议始终为开发人员的机器启用它(但对于持续集成服务器则将其禁用)。启用守护进程有几种方法,但最常见的一种是添加这一行
The Gradle Daemon is not enabled by default, but we do recommend always enabling it for developers’ machines (but leaving it disabled for continuous integration servers). There are several ways to enable the Daemon, but the most common one is to add the line
org.gradle.daemon=true
到文件 «USER_HOME»/.gradle/gradle.properties
,其中 «USER_HOME»
是你的主目录。它通常是以下之中的一种,具体取决于你的系统:
to the file «USER_HOME»/.gradle/gradle.properties
, where «USER_HOME»
is your home directory. That’s typically one of the following, depending on your platform:
C:\Users\<username>
(Windows Vista & 7+)
/Users/<username>
(Mac OS X)
/home/<username>
(Linux)
如果该文件不存在,那么只需使用文本编辑器创建该文件。 你可以进一步在常见问题及解答中找到其他启用(或禁用)守护进程的方法。 该部分内容还包含有关守护程序如何工作的更详细信息。
If that file doesn’t exist, just create it using a text editor. You can find details of other ways to enable (and disable) the Daemon in the FAQ further down. That section also contains more detailed information on how the Daemon works.
一旦你以这种方式全局启用了守护程序,那么所有构建都将享受到速度提升的好处,而不管特定构建使用的 Gradle 版本是多少。
Once you have globally enabled the Daemon in this way, all your builds will take advantage of the speed boost, regardless of the version of Gradle a particular build uses.
目前,我们建议你在持续集成服务器上禁用守护程序,因为对于每个构建使用新的运行时会更可靠。因为该运行时与之前的构建 完全 隔离。此外,由于守护程序主要用于减少构建启动时间,因此在 CI 环境中并不像在开发者的机器上那么重要。
At the moment, we recommend that you leave the Daemon disabled for continuous integration servers as using a fresh runtime for each build is more reliable since the runtime is completely isolated from previously builds. Additionally, since the Daemon primarily acts to reduce build startup times, this isn't as critical in CI as it is on a developer's machine.
如前所述,守护进程是后台进程。你不必担心在机器上建立 Gradle 进程,因为每个守护程序都会在不活动3小时后停止。如果由于一些原因要显式地停止守护进程,可以使用命令 gradle --stop
。
As mentioned, the Daemon is a background process. You needn’t worry about a build up of Gradle processes on your machine, though: every Daemon stops after 3 hours of inactivity. If you want to explicitly stop a Daemon process for any reason, just use the command gradle --stop
.
这将终止使用这一命令的Gradle 版本所启动的所有守护进程。如果你已安装 Java开发工具包(JDK),那么可以通过运行 jps 命令来轻松验证守护程序是否已停止。你将看到任何正在运行的守护程序都以 GradleDaemon 名字列出。
This will terminate all Daemon processes that were started with the same version of Gradle used to execute the command. If you have the Java Development Kit (JDK) installed, you can easily verify that a Daemon has stopped by running the jps command. You’ll see any running Daemons listed with the name GradleDaemon.
有两种推荐的方法可以在环境中持久性地启用守护进程:
There are two recommended ways to enable the Daemon persistently for an environment:
通过环境变量——将标志-Dorg.gradle.daemon=true
添加到 GRADLE_OPTS
环境变量
通过属性文件——将org.gradle.daemon=true
添加到 "GRADLE_USER_HOME" /gradle.properties
文件
Via environment variables - add the flag -Dorg.gradle.daemon=true
to the GRADLE_OPTS
environment variable
Via properties file - add org.gradle.daemon=true
to the «GRADLE_USER_HOME»/gradle.properties
file
注意,{GRADLE_USER_HOME}
默认为{USER_HOME}/.gradle
,其中 {USER_HOME}
是当前用户的主目录。可以通过 -g
和 --gradle-user-home
命令行开关以及GRADLE_USER_HOME
环境变量或org.gradle.user.home
JVM 系统属性来配置此位置。
Note, «GRADLE_USER_HOME»
defaults to «USER_HOME»/.gradle
, where «USER_HOME»
is the home directory of the current user. This location can be configured via the -g
and --gradle-user-home
command line switches, as well as by the GRADLE_USER_HOME
environment variable and org.gradle.user.home
JVM system property.
这两种方法效果是一样的,具体用哪一种取决于个人偏好。大多数 Gradle 用户选择第二个选项,并将条目添加到用户的 gradle.properties
文件中。
Both approaches have the same effect. Which one to use is up to personal preference. Most Gradle users choose the second option and add the entry to the user gradle.properties
file.
在 Windows 上,这条命令将为当前用户启用守护进程:
On Windows, this command will enable the Daemon for the current user:
(if not exist "%USERPROFILE%/.gradle" mkdir "%USERPROFILE%/.gradle") && (echo org.gradle.daemon=true >> "%USERPROFILE%/.gradle/gradle.properties")
在类 UNIX 的操作系统上,以下 Bash shell 命令将为当前用户启用守护进程:
On UNIX-like operating systems, the following Bash shell command will enable the Daemon for the current user:
touch ~/.gradle/gradle.properties && echo "org.gradle.daemon=true" >> ~/.gradle/gradle.properties
一旦以这种方式为构建环境启用了守护进程,那么所有构建都将隐式使用守护进程。
Once the Daemon is enabled for a build environment in this way, all builds will implicitly use a Daemon.
在使用 Gradle 命令行界面时,--daemon
和 --no-daemon
命令行开关分别用于启用和禁用守护进程,适用于单个构建调用。 通常更方便的做法是,为环境(例如用户帐户)启用守护进程,这样所有构建都会使用守护进程,而不需要记住提供 --daemon
开关。
The --daemon
and --no-daemon
command line switches enable and disable usage of the Daemon for individual build invocations when using the Gradle command line interface. Typically, it is more convenient to enable the Daemon for an environment (e.g. a user account) so that all builds use the Daemon without requiring to remember to supply the --daemon
switch.
默许情况下 Gradle 守护进程是不启用的。但是一旦启用,有时希望对某些项目或某些构建进行禁用。
The Gradle Daemon is not enabled by default. However, once it is enabled it is sometimes desirable to disable for some projects or for some build invocations.
--no-daemon
命令行开关可用于强制守护进程不用于该构建。它很少用到,但在使用特定构建或 Gradle 插件调试问题时,有时会很有用。该命令行开关在考虑构建环境时具有 最高 优先级。
The --no-daemon
command line switch can be used to force that a Daemon not be used for that build. This is rarely used, but can sometimes be useful when debugging issues with certain builds or Gradle plugins. This command line switch has the highest precedence when considering the build environment.
Gradle 可能在构建结束时发出警告,建议您使用 Gradle 守护进程。要避免此警告,您可以通过以上方法启用守护进程,或显式禁用守护进程。您可以使用如上所述的 --no-daemon
命令行开关来显式地禁用守护进程,或使用上述的其中一种方法来启用守护进程,而不是将 org.gradle.daemon
属性从true
设为 false
。
Gradle may emit a warning at the end of the build suggesting that you use the Gradle Daemon. To avoid this warning you can enable the Daemon via the methods above, or explicitly disable the Daemon. You can explicitly disable the Daemon by using the --no-daemon
command line switch as described above, or use one of the methods for enabling the Daemon mentioned above but using a value of false
for the org.gradle.daemon
property instead of true
.
由于不建议将守护程序用于连续集成构建,如果 CI
环境变量存在, Gradle 就不会有这个消息提醒。
As it is not recommend to use the Daemon for Continuous Integration builds, Gradle will not emit the message if the CI
environment variable is present.
Gradle 创建新的而不是使用已在运行的守护进程的原因有几个。基本规则是,如果没有可用的空闲或兼容的守护程序, Gradle 就会启动一个新的守护进程。Gradle 会杀死任何已空闲 3 小时以上的守护进程,因此你不必担心需要手动清除它们。
There are several reasons why Gradle will create a new Daemon, instead of using one that is already running. The basic rule is that Gradle will start a new Daemon if there are no existing idle or compatible Daemons available. Gradle will kill any Daemon that has been idle for 3 hours or more, so you don't have to worry about cleaning them up manually.
空闲的守护进程是指当前未执行构建或未进行其他有用工程的守护进程。
An idle Daemon is one that is not currently executing a build or doing other useful work.
一个兼容的守护进程是指能够(或能够被配置为)满足所请求的构建环境的需求的守护进程。执行构建的 Java 运行时是构建环境的一个例子。另一个例子是构建运行时所需的JVM 系统属性集。
A compatible Daemon is one that can (or can be made to) meet the requirements of the requested build environment. The Java runtime used to execute the build is an example aspect of the build environment. Another example is the set of JVM system properties required by the build runtime.
守护进程可能不满足请求的构建环境的某些方面。如果守护进程以 Java 7 运行时运行,但请求的环境调用 Java 8 ,那么守护进程就会不兼容,因而必须启动另一个守护进程。此外,在 JVM 启动后,无法更改 Java 运行时的某些属性。正在运行的 JVM,它的内存分配(例如 -Xmx1024m
),默认文本编码,默认语言环境等都是不可更改的。
Some aspects of the requested build environment may not be met by an Daemon. If the Daemon is running with a Java 7 runtime, but the requested environment calls for Java 8 then the Daemon is not compatible and another must be started. Moreover, certain properties of a Java runtime cannot be changed once the JVM has started. It is not possible to change the memory allocation (e.g. -Xmx1024m
), default text encoding, default locale, etc of a running JVM.
“请求的构建环境”通常是从构建客户端(例如 Gradle 命令行客户端,IDE 等)环境的各个方面隐式构造的,并且可以通过命令行开关和设置来显式构造。请参阅《第十一章 构建环境》,以获取有关如何指定和控制构建环境的详细信息。
The “requested build environment” is typically constructed implicitly from aspects of the build client’s (e.g. Gradle command line client, IDE etc.) environment and explicitly via command line switches and settings. See Chapter 11, The Build Environment for details on how to specify and control the build environment.
以下 JVM 系统属性在实际上是不可改变的。如果请求的构建环境需要这些属性之一,并且其值与守护进程的 JVM 中该属性的值不同,那么守护进程就不兼容。
The following JVM system properties are effectively immutable. If the requested build environment requires any of these properties, with a different value than a Daemon’s JVM has for this property, the Daemon is not compatible.
以下 JVM 属性受启动参数控制,在实际上也是不可改的。请求的构建环境和守护进程环境的对应属性必须完全匹配,才能使守护进程兼容。
The following JVM attributes, controlled by startup arguments, are also effectively immutable. The corresponding attributes of the requested build environment and the Daemon’s environment must match exactly in order for a Daemon to be compatible.
所需的 Gradle 版本是请求的构建环境的另一个方面。守护进程与特定的 Gradle 运行时相耦合。在一个会话期间使用不同的 Gradle 版本进行多项目构建,是具有多个运行守护进程的常见原因。
The required Gradle version is another aspect of the requested build environment. Daemon processes are coupled to a specific Gradle runtime. Working on multiple Gradle projects during a session that use different Gradle versions is a common reason for having more than one running Daemon process.
如果请求的构建环境未指定最大堆大小,那么守护进程最多使用 1GB 的堆内存。它将使用 JVM 默认的最小堆大小。1GB 对于大多数构建来说都是绰绰有余的。包含数以百计的子项目的更大的构建,大量的配置和源代码可能需要更多内存,或者使用更多内存能够提高性能。
If the requested build environment does not specify a maximum heap size, the Daemon will use up to 1GB of heap. It will use your the JVM's default minimum heap size. 1GB is more than enough for most builds. Larger builds with hundreds of subprojects, lots of configuration, and source code may require, or perform better, with more memory.
要增加守护进程可以使用的内存量,可以指定适当的标志作为请求的构建环境的一部分。请参阅《第十一章 构建环境》以获取详细信息。
To increase the amount of memory the Daemon can use, specify the appropriate flags as part of the requested build environment. Please see Chapter 11, The Build Environment for details.
守护进程将在不活动 3 小时后自动终止。如果要在此之前停止守护进程,那么可以通过操作系统来终止进程,或是通过运行 gradle --stop
命令。--stop
开关会使 Gradle 请求 所有 与 运行命令的 Gradle 相同版本的运行中的守护进程终止自己。
Daemon processes will automatically terminate themselves after 3 hours of inactivity. If you wish to stop a Daemon process before this, you can either kill the process via your operating system or run the gradle --stop
command. The --stop
switch causes Gradle to request that all running Daemon processes, of the same Gradle version used to run the command, terminate themselves.
在日常开发中,大量的工程努力使守护进程变得健壮,透明和不显眼。然而,守护进程有时会受到破坏或耗尽。Gradle 构建从多个源执行任意代码。虽然 Gradle 本身为守护进程设计并进行了大量测试,但用户构建脚本和第三方插件可以通过诸如内存泄漏或全局状态损坏等缺陷而使守护进程变得不稳定。
Considerable engineering effort has gone into making the Daemon robust, transparent and unobtrusive during day to day development. However, Daemon processes can occasionally be corrupted or exhausted. A Gradle build executes arbitrary code from multiple sources. While Gradle itself is designed for and heavily tested with the Daemon, user build scripts and third party plugins can destabilize the Daemon process through defects such as memory leaks or global state corruption.
不正确释放资源的构建也有可能使守护进程(和总体的构建环境)变得不稳定。在使用 Microsoft Windows 时,这是一个特别突出的问题,因为它对在读取或写入之后未能关闭文件的程序不够宽容。
It is also possible to destabilize the Daemon (and build environment in general) by running builds that do not release resources correctly. This is a particularly poignant problem when using Microsoft Windows as it is less forgiving of programs that fail to close files after reading or writing.
Gradle 积极监控堆使用情况,并尝试检测内存泄漏是否开始耗尽守护进程中的可用堆空间。当它检测到堆空间有问题时,Gradle 守护进程将完成当前正在运行的构建,并在下一个构建上重新启动守护程序。此监控默认启用,但可以通过将 org.gradle.daemon.performance.enable-monitory
系统属性设置为 false来禁用。
Gradle actively monitors heap usage and attempts to detect when a leak is starting to exhaust the available heap space in the daemon. When it detects a problem with heap space, the Gradle daemon will finish the currently running build and restart the daemon on the next build. This monitoring is enabled by default, but can be disabled by setting the org.gradle.daemon.performance.enable-monitoring
system property to false.
如果怀疑守护进程已变得不稳定,可以直接终止它。回忆一下,可以为构建指定 --no-daemon
开关,以防止使用守护进程。这对于诊断守护进程是否问题的根本原因非常有用。
If it is suspected that the Daemon process has become unstable, it can simply be killed. Recall that the --no-daemon
switch can be specified for a build to prevent use of the Daemon. This can be useful to diagnose whether or not the Daemon is actually the culprit of a problem.
建议在所有开发者环境中使用守护程序,在持续集成和构建服务器环境中 不启用 它。
It is recommended that the Daemon is used in all developer environments. It is recommend to not enable the Daemon for Continuous Integration and build server environments.
守护进程实现了更快的构建,尤其是有人在构建前等待时更为重要。而对于 CI 构建,稳定性和可预测性至关重要。对每个构建使用新的运行时(即进程)更可靠,因为该运行时与先前构建的是完全隔离的。
The Daemon enables faster builds, which is particularly important when a human is sitting in front of the build. For CI builds, stability and predictability is of utmost importance. Using a fresh runtime (i.e. process) for each build is more reliable as the runtime is completely isolated from previous builds.
Gradle Tooling API(请参阅《第十三章,使用 Tooling API 嵌入 Gradle),被 IDE 和其他工具用于与 Gradle 集成,始终 使用 Gradle 守护进程来执行构建。如果你从 IDE 中执行 Gradle 构建,那么就正在使用 Gradle 守护进程,而不需要为你的环境启用 Gradle 它。
The Gradle Tooling API (see Chapter 13, Embedding Gradle using the Tooling API), that is used by IDEs and other tools to integrate with Gradle, always use the Gradle Daemon to execute builds. If you are executing Gradle builds from within you're IDE you are using the Gradle Daemon and do not need to enable it for your environment.
但是,除非你明确为你环境启用了 Gradle 守护进程,否则你从命令行中构建就不会使用 Gradle 守护进程。
However, unless you have explicitly enabled the Gradle Daemon for you environment your builds from the command line will not use the Gradle Daemon.
Gradle 守护进程是一个 长时间存在 构建进程。在构建之间,它会等待下一次构建。 这明显有一个好处,即在多个构建中只需要将 Gradle 加载到内存中一次 ,而不是每次构建都加载一次。 这本身就是一个显着的性能优化,但并不止于此。
The Gradle Daemon is a long lived build process. In between builds it waits idly for the next build. This has the obvious benefit of only requiring Gradle to be loaded into memory once for multiple builds, as opposed to once for each build. This in itself is a significant performance optimization, but that's not where it stops.
现代 JVM 性能的重要组成部分是运行时代码优化。例如,HotSpot(Oracle 提供的 JVM 实现,也是 OpenJDK 的基础)在代码运行时应用优化。优化是渐进的,而不是瞬时的。 即,代码在执行过程中逐渐被优化,这意味着后续构建可能仅因此优化过程就会变得更快。对 HotSpot 的实验表明,优化稳定只需要 5到10次构建。在使用守护进程的情况下,第一次构建与第十次构建之间的感知构建时间差异可能相当显著。
A significant part of the story for modern JVM performance is runtime code optimization. For example, HotSpot (the JVM implementation provided by Oracle and used as the basis of OpenJDK) applies optimization to code while it is running. The optimization is progressive and not instantaneous. That is, the code is progressively optimized during execution which means that subsequent builds can be faster purely due to this optimization process. Experiments with HotSpot have shown that it takes somewhere between 5 and 10 builds for optimization to stabilize. The difference in perceived build time between the first build and the 10th for a Daemon can be quite dramatic.
守护进程还允许更有效地在构建之间进行内存缓存。例如,构建所需的类(如插件,构建脚本)可以在构建之间保存在内存中。同样,Gradle 还可以维护构建数据的内存缓存,例如任务输入和输出的hash值,用于增量构建。
The Daemon also allows more effective in memory caching across builds. For example, the classes needed by the build (e.g. plugins, build scripts) can be held in memory between builds. Similarly, Gradle can maintain in-memory caches of build data such as the hashes of task inputs and outputs, used for incremental building.
当前,守护进程通过有效支持内存缓存和 JVM 优化器使代码更快,从而加快了构建速度。在将来的 Gradle 版本中,守护进程将变得更智能,会进行预测性的工作。例如,在构建脚本被编辑之后,基于构建即将运行、新修改或添加的依赖将被使用这样一种假设,它就会开始立即下载这些依赖。
Currently, the Daemon makes builds faster by effectively supporting in memory caching and by the JVM optimizer making the code faster. In future Gradle versions, the Daemon will become even smarter and perform work preemptively. It could, for example, start downloading dependencies immediately after the build script has been edited under the assumption that the build is about to be run and the newly changed or added dependencies will be required.
在将来的 Gradle 版本中,Gradle 守护进程还会有许多其他方法使构建更快。
There are many other ways in that the Gradle Daemon will enable even faster builds in future Gradle versions.