Skip to content

Commit

Permalink
Bump versions in examples to 1.16.0
Browse files Browse the repository at this point in the history
Change-Id: I7ce1d9923dffc4e6ef311457b1c726162370b8b5
Reviewed-on: http://gerrit.cloudera.org:8080/18335
Tested-by: Attila Bukor <[email protected]>
Reviewed-by: Andrew Wong <[email protected]>
Reviewed-by: Alexey Serbin <[email protected]>
  • Loading branch information
attilabukor committed Mar 21, 2022
1 parent fd18103 commit 5cd6779
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/java/collectl/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ If you have Spark available, you can also look at the data in Kudu using Spark,

[source,bash]
----
$ spark2-shell --packages org.apache.kudu:kudu-spark2_2.11:1.15.0
$ spark2-shell --packages org.apache.kudu:kudu-spark2_2.11:1.16.0
----

You can then modify this example script to query the data with SparkSQL:
Expand Down
2 changes: 1 addition & 1 deletion examples/java/collectl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<name>Kudu collectl Example</name>

<properties>
<kudu-version>1.15.0</kudu-version>
<kudu-version>1.16.0</kudu-version>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion examples/java/insert-loadgen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<name>Random Insert Load Generator for Kudu</name>

<properties>
<kudu-version>1.15.0</kudu-version>
<kudu-version>1.16.0</kudu-version>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion examples/java/java-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<name>Kudu Java Client Examples</name>

<properties>
<kudu-version>1.15.0</kudu-version>
<kudu-version>1.16.0</kudu-version>
</properties>

<build>
Expand Down
4 changes: 2 additions & 2 deletions examples/quickstart/nifi/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ docker run -it --rm --network="docker_default" maven:latest bin/bash
# Download the kudu-client-tools jar which has the kudu-client and all the dependencies.
mkdir jars
mvn dependency:copy \
-Dartifact=org.apache.kudu:kudu-client-tools:1.15.0 \
-Dartifact=org.apache.kudu:kudu-client-tools:1.16.0 \
-DoutputDirectory=jars
# Run the jshell with the jar on the classpath.
jshell --class-path jars/*
Expand Down Expand Up @@ -163,7 +163,7 @@ example of the code to allow you to query the `random_user` table:

[source,bash]
----
spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.15.0
spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.16.0
----

[source,scala]
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/spark/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Run the `spark-shell` with the `kudu-spark` package:

[source,bash]
----
spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.15.0
spark-shell --packages org.apache.kudu:kudu-spark2_2.11:1.16.0
----

NOTE: The examples below assume you are in the `spark-shell` with the
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/ycsb/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ with a clone of the repository and a custom build that specifies the desired Kud
----
git clone https://github.com/brianfrankcooper/YCSB.git
pushd YCSB
mvn -Psource-run -pl site.ycsb:kudu-binding -am clean package -DskipTests -Dkudu.version=1.15.0
mvn -Psource-run -pl site.ycsb:kudu-binding -am clean package -DskipTests -Dkudu.version=1.16.0
popd
----

Expand Down
6 changes: 3 additions & 3 deletions examples/scala/sbt-int-test-example/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ lazy val root = (project in file("."))
Defaults.itSettings,
name := "sbt-int-test-example",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "it,test",
libraryDependencies += "org.apache.kudu" % "kudu-client" % "1.15.0",
libraryDependencies += "org.apache.kudu" % "kudu-test-utils" % "1.15.0" % "it", //<2>
libraryDependencies += "org.apache.kudu" % "kudu-binary" % "1.15.0" % "it" classifier osDetectorClassifier.value, //<3>
libraryDependencies += "org.apache.kudu" % "kudu-client" % "1.16.0",
libraryDependencies += "org.apache.kudu" % "kudu-test-utils" % "1.16.0" % "it", //<2>
libraryDependencies += "org.apache.kudu" % "kudu-binary" % "1.16.0" % "it" classifier osDetectorClassifier.value, //<3>
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3",
)
----
Expand Down
6 changes: 3 additions & 3 deletions examples/scala/sbt-int-test-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ lazy val root = (project in file("."))
Defaults.itSettings,
name := "sbt-int-test-example",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.2" % "it,test",
libraryDependencies += "org.apache.kudu" % "kudu-client" % "1.15.0",
libraryDependencies += "org.apache.kudu" % "kudu-test-utils" % "1.15.0" % "it",
libraryDependencies += "org.apache.kudu" % "kudu-binary" % "1.15.0" % "it" classifier osDetectorClassifier.value,
libraryDependencies += "org.apache.kudu" % "kudu-client" % "1.16.0",
libraryDependencies += "org.apache.kudu" % "kudu-test-utils" % "1.16.0" % "it",
libraryDependencies += "org.apache.kudu" % "kudu-binary" % "1.16.0" % "it" classifier osDetectorClassifier.value,
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3",
)
2 changes: 1 addition & 1 deletion examples/scala/spark-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<name>Kudu Spark Examples</name>

<properties>
<kudu-version>1.15.0</kudu-version>
<kudu-version>1.16.0</kudu-version>
</properties>

<build>
Expand Down

0 comments on commit 5cd6779

Please sign in to comment.