File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -37,3 +37,5 @@ We welcome open source contributions as well!
3737 - DataFrame-based connected components implementation
3838 - added support for Python 3
3939 - removed support for Spark 1.4 and 1.5
40+ - 0.4.0 release for Spark 2.1
41+ - Fix for checkpointing issue in DataFrame-based connected components implementation (issue 160)
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ val defaultScalaVer = sparkBranch match {
77 case " 1.6" => " 2.10.6"
88 case " 2.0" => " 2.11.8"
99 case " 2.1" => " 2.11.8"
10+ case " 2.2" => " 2.11.8"
1011 case _ => throw new IllegalArgumentException (s " Unsupported Spark version: $sparkVer. " )
1112}
1213val scalaVer = sys.props.getOrElse(" scala.version" , defaultScalaVer)
Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ We use the `--packages` argument to download the graphframes package and any dep
3030<div data-lang =" scala " markdown =" 1 " >
3131
3232{% highlight bash %}
33- $ ./bin/spark-shell --packages graphframes:graphframes:0.3 .0-spark2.0-s_2.11
33+ $ ./bin/spark-shell --packages graphframes:graphframes:0.4 .0-spark2.0-s_2.11
3434{% endhighlight %}
3535
3636</div >
3737
3838<div data-lang =" python " markdown =" 1 " >
3939
4040{% highlight bash %}
41- $ ./bin/pyspark --packages graphframes:graphframes:0.3 .0-spark2.0-s_2.11
41+ $ ./bin/pyspark --packages graphframes:graphframes:0.4 .0-spark2.0-s_2.11
4242{% endhighlight %}
4343
4444</div >
You can’t perform that action at this time.
0 commit comments