This is an automated email from the ASF dual-hosted git repository. granthenke pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit a62bfa305cd0d421183247349255b4032c56e7a3 Author: Grant Henke <[email protected]> AuthorDate: Thu Jan 28 09:34:54 2021 -0600 [docs] Update versions in docs to 1.14.0 Change-Id: If8ef66f9a989176bc84993fa264d3b78d184c5ea Reviewed-on: http://gerrit.cloudera.org:8080/17000 Tested-by: Kudu Jenkins Reviewed-by: Alexey Serbin <[email protected]> --- docs/administration.adoc | 6 +++--- docs/developing.adoc | 10 +++++----- docs/quickstart.adoc | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/administration.adoc b/docs/administration.adoc index ec6d3cd..11ed047 100644 --- a/docs/administration.adoc +++ b/docs/administration.adoc @@ -332,7 +332,7 @@ Below is a full example of a `KuduBackup` job execution which will backup the ta [source,bash] ---- -spark-submit --class org.apache.kudu.backup.KuduBackup kudu-backup2_2.11-1.10.0.jar \ +spark-submit --class org.apache.kudu.backup.KuduBackup kudu-backup2_2.11-1.14.0.jar \ --kuduMasterAddresses master1-host,master-2-host,master-3-host \ --rootPath hdfs:///kudu-backups \ foo bar @@ -370,7 +370,7 @@ Below is a full example of a `KuduRestore` job execution which will restore the [source,bash] ---- -spark-submit --class org.apache.kudu.backup.KuduRestore kudu-backup2_2.11-1.10.0.jar \ +spark-submit --class org.apache.kudu.backup.KuduRestore kudu-backup2_2.11-1.14.0.jar \ --kuduMasterAddresses master1-host,master-2-host,master-3-host \ --rootPath hdfs:///kudu-backups \ foo bar @@ -393,7 +393,7 @@ Below is an example execution which will print the command options: [source,bash] ---- -java -cp $(hadoop classpath):kudu-backup-tools-1.10.0.jar org.apache.kudu.backup.KuduBackupCLI --help +java -cp $(hadoop classpath):kudu-backup-tools-1.14.0.jar org.apache.kudu.backup.KuduBackupCLI --help ---- [[backup_directory]] diff --git a/docs/developing.adoc b/docs/developing.adoc index 98f1fd7..8b9b11f 100644 --- a/docs/developing.adoc +++ b/docs/developing.adoc @@ -91,7 +91,7 @@ The following Maven `<dependency>` element is valid for the Apache Kudu public r <dependency> <groupId>org.apache.kudu</groupId> <artifactId>kudu-client</artifactId> - <version>1.10.0</version> + <version>1.14.0</version> </dependency> ---- @@ -125,7 +125,7 @@ on the link:http://kudu.apache.org/releases/[releases page]. [source] ---- -spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.10.0 +spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.14.0 ---- Below is a minimal Spark SQL "select" example. We first import the kudu spark package, @@ -344,7 +344,7 @@ system, use the `os-maven-plugin` to detect the current runtime environment. Finally, the `kudu-test-utils` module provides the `KuduTestHarness` class, which runs a Kudu mini cluster. -Maven example for Kudu 1.10.0: +Maven example for Kudu 1.14.0: [source,xml] ---- @@ -364,13 +364,13 @@ Maven example for Kudu 1.10.0: <dependency> <groupId>org.apache.kudu</groupId> <artifactId>kudu-test-utils</artifactId> - <version>1.10.0</version> + <version>1.14.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.kudu</groupId> <artifactId>kudu-binary</artifactId> - <version>1.10.0</version> + <version>1.14.0</version> <classifier>${os.detected.classifier}</classifier> <scope>test</scope> </dependency> diff --git a/docs/quickstart.adoc b/docs/quickstart.adoc index 39a3286..c930473 100644 --- a/docs/quickstart.adoc +++ b/docs/quickstart.adoc @@ -194,7 +194,7 @@ of `latest` by setting the `KUDU_QUICKSTART_VERSION` environment variable. [source,bash] ---- -export KUDU_QUICKSTART_VERSION="1.9.0" +export KUDU_QUICKSTART_VERSION="1.14.0" ---- === Changing the Kudu configuration
