mirror of https://github.com/apache/druid.git
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:
parent
9231f2acb3
commit
e9888f41cb
|
@ -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:
|
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.
|
> 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.
|
||||||
|
|
||||||
|
|
|
@ -35,10 +35,10 @@ Before beginning the quickstart, it is helpful to read the [general Druid overvi
|
||||||
|
|
||||||
You will need:
|
You will need:
|
||||||
|
|
||||||
* **Java 8 (8u92+)**
|
* **Java 8 (8u92+) or later**
|
||||||
* Linux, Mac OS X, or other Unix-like OS (Windows is not supported)
|
* 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.
|
> 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.
|
||||||
|
|
||||||
|
|
|
@ -28,10 +28,10 @@ sub fail_check {
|
||||||
: "Make sure that \"java\" is installed and on your PATH.";
|
: "Make sure that \"java\" is installed and on your PATH.";
|
||||||
|
|
||||||
print STDERR <<"EOT";
|
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
|
If you believe this check is in error or you still want to proceed with Java version other than 8,
|
||||||
environment variable:
|
you can skip this check using an environment variable:
|
||||||
|
|
||||||
export DRUID_SKIP_JAVA_CHECK=1
|
export DRUID_SKIP_JAVA_CHECK=1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue