From 8ec70f3e0b3470fd6de985d28c0b7fdc7d34e8d2 Mon Sep 17 00:00:00 2001 From: juhoautio-rovio Date: Tue, 28 Mar 2023 21:04:29 +0300 Subject: [PATCH] Set version for release 1.0.3 --- README.md | 8 ++++---- examples/rovio-ingest-maven-example/pom.xml | 4 ++-- pom.xml | 2 +- python/notebooks/druid_ingestion_test.ipynb | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index be4d56a..4671f10 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Set the following spark conf: ```python .conf("spark.jars.packages", - "com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1") \ + "com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1") \ ``` #### PySpark job example @@ -206,14 +206,14 @@ A `Dataset[Row]` extension is provided to repartition the dataset for the `Druid For an interactive spark session you can set the following spark conf: ```scala -("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1") +("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1") ``` To use a snapshot version: ```scala ("spark.jars.repositories", "https://s01.oss.sonatype.org/content/repositories/snapshots"), -("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1-SNAPSHOT") +("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1-SNAPSHOT") ``` ```scala @@ -249,7 +249,7 @@ Maven (for a full example, see [examples/rovio-ingest-maven-example](examples/ro com.rovio.ingest rovio-ingest - 1.0.2_spark_3.0.1 + 1.0.3_spark_3.0.1 org.apache.logging.log4j diff --git a/examples/rovio-ingest-maven-example/pom.xml b/examples/rovio-ingest-maven-example/pom.xml index a6e1e9a..2290408 100644 --- a/examples/rovio-ingest-maven-example/pom.xml +++ b/examples/rovio-ingest-maven-example/pom.xml @@ -38,9 +38,9 @@ com.rovio.ingest rovio-ingest - 1.0.2_spark_3.0.1 + 1.0.3_spark_3.0.1 diff --git a/pom.xml b/pom.xml index a2c2295..ead63be 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ com.rovio.ingest rovio-ingest - 1.0.3_spark_3.0.1-SNAPSHOT + 1.0.3_spark_3.0.1 jar rovio-ingest An implementation of the DatasourceV2 interface of Apache Spark™ for writing Spark Datasets to Apache Druid™ diff --git a/python/notebooks/druid_ingestion_test.ipynb b/python/notebooks/druid_ingestion_test.ipynb index 2f937be..ffe8d45 100644 --- a/python/notebooks/druid_ingestion_test.ipynb +++ b/python/notebooks/druid_ingestion_test.ipynb @@ -201,7 +201,7 @@ " # alternative if using a snapshot version\n", "# \"spark.jars.repositories\": \"https://s01.oss.sonatype.org/content/repositories/snapshots\",\n", "# \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1-SNAPSHOT\"\n", - " \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1\"\n", + " \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1\"\n", " }\n", "}\n", "\n",