The Gradle daemon (sometimes referred as the build daemon) aims to improve the startup and execution time of Gradle.
Gradleデーモン(ビルドデーモンと呼ばれることもあります)はGradleの起動と実行の速度を改善します。
We came up with several use cases where the daemon is very useful. For some workflows, the user invokes Gradle many times to execute a small number of relatively quick tasks. For example: デーモン実行が非常に有用だと思われるユースケースをいくつか考えてみました。 例えば、少数の、比較的実行が早く終わるようなタスクを、何度も実行しなければならないような場面があります。
gradle tasks
is executed a number of times. ビルドの挙動を調べるために、gradle tasks
を何度も実行する場合For these workflows, it is important that the startup cost of invoking Gradle is as small as possible. これらの場合、Gradleを起動・実行するための時間は出来る限り短いことが重要でしょう。
In addition, user interfaces can provide some interesting features if the Gradle model can be built relatively quickly. For example, the daemon might be useful for the following scenarios: さらに、Gradleモデルがより素早く構築されるようになれば、ユーザーインターフェースが面白い機能を実装できる可能性があります。 例えば、次のようなケースでデーモンが役に立つかもしれません。
In general, snappy behavior of the build tool is always handy. If you try using the daemon for your local builds, you won't want to go back.
一般的にいって、ビルドツールが軽快に動作して困るということはありません。 ローカル環境のビルドでデーモンを試してみてください。デーモンを使わない普通のビルドにはもう戻れなくなるでしょう。
The Tooling API (see Chapter 63, Embedding Gradle) uses the daemon all the time, e.g. you cannot officially use the Tooling API without the daemon. This means that whenever you are using the STS Gradle plugin for Eclipse or the Gradle support in Intellij IDEA, you're already using the Gradle Daemon.
ツールAPI (参照 Chapter 63, Embedding Gradle)は常にデーモンを使用します。つまり、通常、デーモンなしでツールAPIは使えません。 したがって、EclipseのSTS GradleプラグインやIntelliJ IDEAのGradleサポートを使っているときは、常にデーモンが背後で起動しています。
In future, there are plans for more features in the daemon: 今後は下記の機能が追加される予定です。
The basic idea is that the Gradle command forks a daemon process, which performs the actual build. Subsequent invocations of the Gradle command will reuse the daemon, avoiding the startup costs. Sometimes we cannot use an existing daemon because it is busy or its Java version or jvm arguments are different. For exact details on when exactly a new daemon process is forked read the dedicated section below. The daemon process automatically expires after 3 hours of idle time.
デーモン実行の基本にある考え方は、gradleコマンドがデーモンプロセスを起動して、そのデーモンが実際のビルドを実行するというものです。 そうすれば、後続のgradleコマンドがそのデーモンプロセスを再利用でき、起動に掛かるコストを抑えることができます。 しかし、既存のデーモンプロセスが使用できないこともあります。例えば、プロセスがビジーだったり、要求されたJavaのバージョンやJVM引数が違うといった場合です。 新しいデーモンプロセスが、正確にはいつ起動されるかの詳細については、以下を参照してください。 デーモンプロセスは、アイドル状態で3時間経過すると自動的に期限切れになります。
Here are all situations in which we fork a new daemon process: デーモンプロセスが新しく起動される場面を全て列挙すると、
--stop
command line instruction:
this command will only stop daemons that were started with Gradle version that is executing --stop
.
起動されているデーモンは、特定のバージョンのGradleと関連づいています。
そのため、アイドル状態のデーモンが存在したとしても、それと別のバージョンのGradleでビルドを実行すると新しいデーモンが起動されます。
これは、--stop
コマンドについてあることを教唆しています――つまり、--stop
で停止できるデーモンは、その--stop
を実行しているGradleと同じバージョンのGradleで起動されたデーモンだけだということです。
We plan to improve the functionality of managing and pooling the daemons in the future. 今後、デーモンの管理方法、プール方法の改善を行う予定です。
For command line usage, look at the dedicated section in 付録D Gradle コマンドラインGradle Command Line. If you are tired of using the same command line options again and again, take a look at 「gradle.propertiesを使用したビルド環境の構築Configuring the build environment via gradle.properties」. This section contains information on how to configure certain behavior of the daemon (including turning on the daemon by default) in a more 'persistent' way.
コマンドラインの利用方法については別節付録D Gradle コマンドラインGradle Command Lineを参照してください。 同じコマンドラインを何度も何度も指定してうんざりしている場合は、「gradle.propertiesを使用したビルド環境の構築Configuring the build environment via gradle.properties」を参照してください。 上記の節には、デーモンの振る舞いをより「永続的に」設定する方法が(デフォルトでデーモンを起動する方法を含めて)詳細に記述されています。
Some ways of troubleshooting the Gradle daemon: デーモンのトラブルシューティングについていくつか方法を示します。
--no-daemon
). ビルドで問題が発生した場合、一時的にデーモンを無効化してみてください(コマンドラインにスイッチ--no-daemon
を渡す)。--stop
command line option or in a more forceful way.--stop
オプションや、もっと強制的な方法でデーモンを停止しなければならない場面もあります。--foreground
mode to observe how the build is executed. ビルドの実行状況を見るには、--feoreground
を使ってデーモンを起動します。
Some daemon settings, such as JVM arguments, memory settings or the Java home, can be configured. Please find more information in 「gradle.propertiesを使用したビルド環境の構築Configuring the build environment via gradle.properties」
デーモン設定のうち、JVM引数、メモリーの設定、Java homeなどは設定ファイルなどで変更できます。詳細については「gradle.propertiesを使用したビルド環境の構築Configuring the build environment via gradle.properties」を参照してください。