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
Empty file added VERSION
Empty file.
10 changes: 8 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import ReleaseTransformations._

val sparkVer = sys.props.getOrElse("spark.version", "3.5.0")
val sparkVer = sys.props.getOrElse("spark.version", "3.5.3")
val sparkBranch = sparkVer.substring(0, 3)
val defaultScalaVer = sparkBranch match {
case "3.5" => "2.12.18"
Expand Down Expand Up @@ -63,7 +63,13 @@ scalacOptions in (Test, doc) ++= Seq("-groups", "-implicits")
fork in Test := true

// This and the next line fix a problem with forked run: https://github.com/scalatest/scalatest/issues/770
javaOptions in Test ++= Seq("-Xmx2048m", "-XX:ReservedCodeCacheSize=384m", "-XX:MaxPermSize=384m")
javaOptions in Test ++= Seq(
"-Xmx2048m",
"-XX:ReservedCodeCacheSize=384m",
"-XX:MaxMetaspaceSize=384m",
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED",
"--add-opens=java.base/java.lang=ALL-UNNAMED"
)

concurrentRestrictions in Global := Seq(
Tags.limitAll(1))
Expand Down
2 changes: 1 addition & 1 deletion build/sbt-launch-lib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ get_mem_opts () {
(( $perm < 4096 )) || perm=4096
local codecache=$(( $perm / 2 ))

echo "-Xms${mem}m -Xmx${mem}m -XX:MaxPermSize=${perm}m -XX:ReservedCodeCacheSize=${codecache}m"
echo "-Xms${mem}m -Xmx${mem}m -XX:MaxMetaspaceSize=${perm}m -XX:ReservedCodeCacheSize=${codecache}m"
}

require_arg () {
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.8.0
GRAPHFRAMES_VERSION: 0.8.4
#SCALA_BINARY_VERSION: "2.10"
#SCALA_VERSION: "2.10.4"
#MESOS_VERSION: 0.21.0
Expand Down
21 changes: 5 additions & 16 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,12 @@ Refer to the [User Guide](user-guide.html) for a full list of queries and algori

__Will GraphFrames be part of Apache Spark?__

The GraphX component of Apache Spark has no DataFrames- or Dataset-based equivalent, so it is
natural to ask this question. The current plan is to keep GraphFrames separate from core Apache
Spark for the time being:
The GraphX component of Apache Spark has no DataFrames - or Dataset-based equivalent, so it is
natural to ask this question.

* we are still considering making small adjustments to the API. The GraphFrames project will be
considered for inclusion into Spark once we are confident that the current API addresses current
and future needs.

* some important features present in GraphX such as partitioning are missing. We would like to
offer some equivalent operations before considering merging with the Spark project.

* GraphFrames is used as a testbed for advanced, graph-specific optimizations into Spark’s
Catalyst engine. Having them in a separate project accelerates the development cycle.

That being said, GraphFrames follows the same code quality standards as Spark, and it is
cross-compiled and published for a large number of Spark versions. It is
easy for users to depend on it.
**The new plan is to merge GraphFrames with Apache Spark to make it a component of core Spark.
[Spark committer Holden Karau](https://spark.apache.org/committers.html#:~:text=Holden%20Karau,Netflix)
is willing to support this effort by reviewing the relevant pull requests.**

# Downloading

Expand Down
Loading