@@ -81,14 +81,14 @@ The connector has the following known limitations:
8181
8282The Spark Dgraph Connector is available for Spark 3.0, 3.1, 3.2, 3.3, 3.4 and 3.5, with Scala 2.12 and 2.13.
8383Use Maven artifact ID ` spark-dgraph-connector_2.12 ` or ` spark-dgraph-connector_2.12 ` . The Spark version is part of the package version,
84- i.e. 0.11 .0-3.0, 0.11 .0-3.1, 0.11 .0-3.2, 0.11 .0-3.3, 0.11 .0-3.4 and 0.11 .0-3.5, respectively.
84+ i.e. 0.12 .0-3.0, 0.12 .0-3.1, 0.12 .0-3.2, 0.12 .0-3.3, 0.12 .0-3.4 and 0.12 .0-3.5, respectively.
8585
8686### SBT
8787
8888Add this line to your ` build.sbt ` file to use the latest version for Spark 3.5:
8989
9090``` sbt
91- libraryDependencies += " uk.co.gresearch.spark" %% " spark-dgraph-connector" % " 0.11 .0-3.5"
91+ libraryDependencies += " uk.co.gresearch.spark" %% " spark-dgraph-connector" % " 0.12 .0-3.5"
9292```
9393
9494### Maven
@@ -99,7 +99,7 @@ Add this dependency to your `pom.xml` file to use the latest version:
9999<dependency >
100100 <groupId >uk.co.gresearch.spark</groupId >
101101 <artifactId >spark-dgraph-connector_2.13</artifactId >
102- <version >0.11 .0-3.5</version >
102+ <version >0.12 .0-3.5</version >
103103</dependency >
104104```
105105
@@ -108,21 +108,21 @@ Add this dependency to your `pom.xml` file to use the latest version:
108108Launch the Scala Spark REPL (Spark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
109109
110110``` shell script
111- spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5
111+ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.12 .0-3.5
112112```
113113
114114### PySpark Shell and Python script
115115
116116Launch the Python Spark REPL (pyspark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
117117
118118``` shell script
119- pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5
119+ pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.12 .0-3.5
120120```
121121
122122Run your Python scripts that use PySpark (pyspark ≥3.0.0) and the Spark Dgraph Connector (version ≥0.5.0) via ` spark-submit ` :
123123
124124``` shell script
125- spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5 [script.py]
125+ spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.12 .0-3.5 [script.py]
126126```
127127
128128## Examples
0 commit comments