@@ -81,14 +81,14 @@ The connector has the following known limitations:
81
81
82
82
The 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.
83
83
Use 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.10 .0-3.0, 0.10 .0-3.1, 0.10 .0-3.2, 0.10 .0-3.3, 0.10 .0-3.4 and 0.10 .0-3.5, respectively.
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.
85
85
86
86
### SBT
87
87
88
88
Add this line to your ` build.sbt ` file to use the latest version for Spark 3.5:
89
89
90
90
``` sbt
91
- libraryDependencies += " uk.co.gresearch.spark" %% " spark-dgraph-connector" % " 0.10 .0-3.5"
91
+ libraryDependencies += " uk.co.gresearch.spark" %% " spark-dgraph-connector" % " 0.11 .0-3.5"
92
92
```
93
93
94
94
### Maven
@@ -99,7 +99,7 @@ Add this dependency to your `pom.xml` file to use the latest version:
99
99
<dependency >
100
100
<groupId >uk.co.gresearch.spark</groupId >
101
101
<artifactId >spark-dgraph-connector_2.13</artifactId >
102
- <version >0.10 .0-3.5</version >
102
+ <version >0.11 .0-3.5</version >
103
103
</dependency >
104
104
```
105
105
@@ -108,21 +108,21 @@ Add this dependency to your `pom.xml` file to use the latest version:
108
108
Launch the Scala Spark REPL (Spark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
109
109
110
110
``` shell script
111
- spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10 .0-3.5
111
+ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5
112
112
```
113
113
114
114
### PySpark Shell and Python script
115
115
116
116
Launch the Python Spark REPL (pyspark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
117
117
118
118
``` shell script
119
- pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10 .0-3.5
119
+ pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5
120
120
```
121
121
122
122
Run your Python scripts that use PySpark (pyspark ≥3.0.0) and the Spark Dgraph Connector (version ≥0.5.0) via ` spark-submit ` :
123
123
124
124
``` shell script
125
- spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10 .0-3.5 [script.py]
125
+ spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11 .0-3.5 [script.py]
126
126
```
127
127
128
128
## Examples
0 commit comments