a9ace27107
Currently each node monitors the cluster state for a license, and if it does not find one, it sends a request to the master to generate a trial license. However, the master node has this same logic. Since the master node is the only thing that can change the cluster state, we know that once some node becomes master, it will notice the lack of license, generate a trial license, and send a cluster state update. The trigger from every node telling the master to generate the trial license is not needed. This change removes the register_trial_license action that the non master nodes used. It removes the need for the TransportService in the LicensesService, which will help with deguicing. Original commit: elastic/x-pack-elasticsearch@a71656847e |
||
---|---|---|
buildSrc | ||
dev-tools | ||
elasticsearch | ||
.dir-locals.el | ||
.projectile | ||
GRADLE.CHEATSHEET.asciidoc | ||
LICENSE.txt | ||
README.asciidoc | ||
build.gradle | ||
gradle.properties | ||
settings.gradle |
README.asciidoc
= Elasticsearch X Plugins A set of Elastic's commercial plugins: - License - Security - Watcher - Monitoring = Setup You must checkout x-plugins and elasticsearch in the same directory as siblings. This elasticsearch checkout will be used when building x-plugins. = Build - Run unit tests: + [source, txt] ----- gradle clean test ----- - Run all tests: + [source, txt] ----- gradle clean check ----- - Run integration tests: + [source, txt] ----- gradle clean integTest ----- - Package X-Pack (wihtout running tests) + [source, txt] ----- gradle clean assemble ----- - Install X-Pack (wihtout running tests) + [source, txt] ----- gradle clean install ----- - If you don't work on the UI side of x-plugins, you can force gradle to skip building kibana by adding `xpack.kibana.build=false` to your `~/.gradle/gradle.properties`. Alternatively you add `-Pxpack.kibana.build=false` on the command line if you only want to do this on individual builds (or `-Pxpack.kibana.build=true` if you need to override having added this to your `gradle.properties`).