Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WorkInProgress] [#247] [spark] Bump Spark Version to 2.4.7 #249

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
bf48928
[#247] [spark] Bump Spark Version to 2.4.7 | Trim Logging Module
Dee-Pac Oct 30, 2020
af18961
[#247] [spark] Bump Spark Version to 2.4.7 | Deprecate kafka 0.10
Dee-Pac Oct 30, 2020
d78326b
[#247] [spark] Bump Spark Version to 2.4.7 | Change Gimel Package Ver…
Dee-Pac Oct 30, 2020
f54b1a1
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 6, 2020
295fedb
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 6, 2020
e957499
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 6, 2020
a83d31f
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 6, 2020
c4b6716
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 7, 2020
219fc00
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 8, 2020
3b25dcb
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 8, 2020
7e5f21e
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 8, 2020
51ca21b
[#247] [spark] Bump Spark Version to 2.4.7 | Remove modules [sql, too…
Dee-Pac Nov 9, 2020
a75a05e
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 9, 2020
6e3ae2f
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 9, 2020
47a79fe
[#247] [spark] Bump Spark Version to 2.4.7 | Bump Spark Version to 2.…
Dee-Pac Nov 9, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
120 changes: 0 additions & 120 deletions gimel-dataapi/gimel-connectors/gimel-kafka-0.10/pom.xml

This file was deleted.

Loading