Modify check java version script to indicate experimental support for Java 11 (#9455)

* Modify check java version script to indicate experimental support for Java 11

* update docs
This commit is contained in:
Maytas Monsereenusorn 2020-03-11 09:22:39 -07:00 committed by GitHub
parent 9231f2acb3
commit e9888f41cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -132,9 +132,9 @@ The [basic cluster tuning guide](../operations/basic-cluster-tuning.md) has info
We recommend running your favorite Linux distribution. You will also need:
* **Java 8**
* **Java 8 or later**
> **Warning:** Java 8 is required to run Druid. While Druid will start with a higher version of Java it will not function correctly.
> **Warning:** Druid only officially supports Java 8. Any Java version later than 8 is still experimental.
>
> If needed, you can specify where to find Java using the environment variables `DRUID_JAVA_HOME` or `JAVA_HOME`. For more details run the verify-java script.

View File

@ -35,10 +35,10 @@ Before beginning the quickstart, it is helpful to read the [general Druid overvi
You will need:
* **Java 8 (8u92+)**
* **Java 8 (8u92+) or later**
* Linux, Mac OS X, or other Unix-like OS (Windows is not supported)
> **Warning:** Java 8 is required to run Druid. While Druid will start with a higher version of Java it will not function correctly.
> **Warning:** Druid only officially supports Java 8. Any Java version later than 8 is still experimental.
>
> If needed, you can specify where to find Java using the environment variables `DRUID_JAVA_HOME` or `JAVA_HOME`. For more details run the verify-java script.

View File

@ -28,10 +28,10 @@ sub fail_check {
: "Make sure that \"java\" is installed and on your PATH.";
print STDERR <<"EOT";
Druid requires Java 8. $current_version_text
Druid only officially supports Java 8. Any Java version later than 8 is still experimental. $current_version_text
If you believe this check is in error, you can skip it using an
environment variable:
If you believe this check is in error or you still want to proceed with Java version other than 8,
you can skip this check using an environment variable:
export DRUID_SKIP_JAVA_CHECK=1