Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ GraphFrames scala core and Spark-Connect plugin are published in the Sonatype Ce
# Interactive Scala/Java

# For Spark 3.5.x, scala 2.12
$ spark-shell --packages io.graphframes:graphframes-spark3_2.12:0.9.1
$ spark-shell --packages io.graphframes:graphframes-spark3_2.12:0.9.2

# For Spark 3.5.x, scala 2.13
$ spark-shell --packages io.graphframes:graphframes-spark3_2.13:0.9.1
$ spark-shell --packages io.graphframes:graphframes-spark3_2.13:0.9.2

# For Spark 4.0.x
$ spark-shell --packages io.graphframes:graphframes-spark4_2.13:0.9.1
$ spark-shell --packages io.graphframes:graphframes-spark4_2.13:0.9.2

# Interactive Python, Spark 3.5.x
$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.1
$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.2

# Interactive Python, Spark 4.0.x
$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.1
$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.2
```

### GraphFrames Python API
Expand All @@ -62,7 +62,7 @@ To add GraphFrames to your spark connect server, you need to specify the plugin
```bash
./sbin/start-connect-server.sh \
--conf spark.connect.extensions.relation.classes=org.apache.spark.sql.graphframes.GraphFramesConnect \
--packages io.graphframes.graphframes-connect-spark4_2.13:0.9.1
--packages io.graphframes.graphframes-connect-spark4_2.13:0.9.2
--conf spark.checkpoint.dir=${CHECKPOINT_DIR}
```

Expand Down Expand Up @@ -212,14 +212,14 @@ Maven:
<dependency>
<groupId>io.graphframes</groupId>
<artifactId>graphframes-spark4_2.13</artifactId>
<version>0.9.1</version>
<version>0.9.2</version>
</dependency>
</dependencies>
```

SBT:
```sbt
libraryDependencies += "io.graphframes" %% "graphframes-spark4" % "0.9.1"
libraryDependencies += "io.graphframes" %% "graphframes-spark4" % "0.9.2"
```

**WARNING!**
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include:

# These allow the documentation to be updated with newer releases
# of Spark, Scala, and Mesos.
GRAPHFRAMES_VERSION: 0.9.1
GRAPHFRAMES_VERSION: 0.9.2
#SCALA_BINARY_VERSION: "2.10"
#SCALA_VERSION: "2.10.4"
#MESOS_VERSION: 0.21.0
Expand Down
4 changes: 2 additions & 2 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ You should use GraphFrames via the `--packages` argument to `pyspark` or `spark-

```bash
# Interactive Python, Spark 3.5.x
$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.1
$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.2

# Interactive Python, Spark 4.0.x
$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.1
$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.2
```

## Documentation
Expand Down