Skip to content

Commit

Permalink
[#247] [spark] Bump Spark Version to 2.4.7 | Change Gimel Package Ver…
Browse files Browse the repository at this point in the history
…sion to 2.4.7
  • Loading branch information
Dee-Pac committed Oct 30, 2020
1 parent af18961 commit d78326b
Show file tree
Hide file tree
Showing 30 changed files with 87 additions and 181 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started/gimel-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-tools</artifactId> <!--Refer one of the below listed 3 versions, depending on the required spark version -->
<version>2.0.0-SNAPSHOT</version> <!--provides spark 2.2.0 compiled code-->
<version>2.4.7-SNAPSHOT</version> <!--provides spark 2.4.7 compiled code-->
<scope>provided</scope> <!--Ensure scope is provided as the gimel libraries can be added at runtime-->
</dependency>
```
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-sql</artifactId> <!--Refer one of the below listed 3 versions, depending on the required spark version -->
<version>2.0.0-SNAPSHOT</version> <!--provides spark 2.2.0 compiled code-->
<version>2.4.7-SNAPSHOT</version> <!--provides spark 2.4.7 compiled code-->
<scope>provided</scope> <!--Ensure scope is provided as the gimel libraries can be added at runtime-->
</dependency>
```
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-core</artifactId> <!--Refer one of the below listed 3 versions, depending on the required spark version -->
<version>2.0.0-SNAPSHOT</version> <!--provides spark 2.2.0 compiled code-->
<version>2.4.7-SNAPSHOT</version> <!--provides spark 2.4.7 compiled code-->
<scope>provided</scope> <!--Ensure scope is provided as the gimel libraries can be added at runtime-->
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/gimel-connectors/kafka2.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@

```bash
spark-shell --jars
gimel-tools-2.0.0-SNAPSHOT-uber.jar,
gimel-tools-2.4.7-SNAPSHOT-uber.jar,
generic-deserializers-1.0-SNAPSHOT-uber.jar,
generic-serializers-1.0-SNAPSHOT-uber.jar

Expand Down Expand Up @@ -510,7 +510,7 @@ Users can implement their own logic for getting the kafka properties which will
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-common</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/gimel-logging/gimel-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ object SparkWordCount {
Example:

```shell script
spark-shell --jars gimel-tools-2.0.0-SNAPSHOT-uber.jar \
spark-shell --jars gimel-tools-2.4.7-SNAPSHOT-uber.jar \
--conf spark.driver.extraJavaOptions="-Dgimel.logger.properties.filepath=gimelLoggerConfig.properties" \
--conf spark.executor.extraJavaOptions="-Dgimel.logger.properties.filepath=gimelLoggerConfig.properties" \
--conf spark.files=/path/to/gimelLoggerConfig.properties \
Expand Down
2 changes: 1 addition & 1 deletion docs/gimel-serde/gimel-serde.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Example:
spark-shell --jars \
generic-deserializers-1.0-SNAPSHOT-uber.jar,\
generic-serializers-1.0-SNAPSHOT-uber.jar,\
gimel-tools-2.0.0-SNAPSHOT-uber.jar
gimel-tools-2.4.7-SNAPSHOT-uber.jar
```

## Generic Deserializers
Expand Down
2 changes: 1 addition & 1 deletion docs/try-gimel/0-prerequisite.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ quickstart/start-gimel kafka,elasticsearch,hbase-master,hbase-regionserver
```
docker exec -it spark-master bash -c \
"export USER=an;export SPARK_HOME=/spark/;export PATH=$PATH:$SPARK_HOME/bin:$SPARK_HOME/sbin; \
/spark/bin/spark-shell --jars /root/gimel-sql-2.0.0-SNAPSHOT-uber.jar"
/spark/bin/spark-shell --jars /root/gimel-sql-2.4.7-SNAPSHOT-uber.jar"
```

**Note:** *You can view the Spark UI <a href="http://localhost:4040" target="_blank">here</a>*
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-common</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-aerospike-3.14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-aerospike-3.14</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<!--https://mvnrepository.com/artifact/org.scala-lang-->
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-cassandra-2.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>gimel-cassandra-2.0</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-druid-0.82/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>gimel-druid-0.82</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-elasticsearch-6.2</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-hbase-1.2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-hbase-1.2</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-hive-1.2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-hive-1.2</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-jdbc</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-kafka-2.2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-kafka-2.2</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-restapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-restapi</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-s3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-s3</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-connectors/gimel-sftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-sftp</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
9 changes: 2 additions & 7 deletions gimel-dataapi/gimel-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>gimel-core</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<profiles>
<profile>
Expand Down Expand Up @@ -85,11 +85,6 @@ under the License.
<artifactId>gimel-common</artifactId>
<version>${gimel.version}-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-kafka-0.10</artifactId>
<version>${gimel.version}-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.paypal.gimel</groupId>
<artifactId>gimel-kafka-2.2</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>gimel-examples</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-logger</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-sql</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/gimel-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ under the License.
<parent>
<artifactId>gimel-dataapi</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-tools</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions gimel-dataapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ under the License.
<parent>
<artifactId>gimel</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -34,7 +34,7 @@ under the License.
<name>Gimel Data API</name>
<inceptionYear>2017</inceptionYear>

<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<modules>
<module>gimel-logger</module>
<module>gimel-common</module>
Expand Down
4 changes: 2 additions & 2 deletions gimel-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gimel</artifactId>
<groupId>com.paypal.gimel</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>gimel-parser</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.4.7-SNAPSHOT</version>

<dependencies>
<!--Provided dependencies-->
Expand Down
Loading

0 comments on commit d78326b

Please sign in to comment.