File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ content: |
39
39
40
40
./bin/spark-shell --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
41
41
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
42
- --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
42
+ --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
43
43
44
44
.. include:: /includes/extracts/list-configuration-explanation.rst
45
45
@@ -56,7 +56,7 @@ content: |
56
56
57
57
./bin/pyspark --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
58
58
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
59
- --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
59
+ --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
60
60
61
61
.. include:: /includes/extracts/list-configuration-explanation.rst
62
62
@@ -73,7 +73,7 @@ content: |
73
73
74
74
./bin/sparkR --conf "spark.mongodb.input.uri=mongodb://127.0.0.1/test.myCollection?readPreference=primaryPreferred" \
75
75
--conf "spark.mongodb.output.uri=mongodb://127.0.0.1/test.myCollection" \
76
- --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.0
76
+ --packages org.mongodb.spark:mongo-spark-connector_2.11:2.2.2
77
77
78
78
.. include:: /includes/extracts/list-configuration-explanation.rst
79
79
...
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ MongoDB Connector for Spark
6
6
7
7
.. admonition:: Announcements
8
8
9
- - **July 13, 2017**, `MongoDB Connector for Spark v2.2.0
9
+ - **July 13, 2017**, `MongoDB Connector for Spark v2.2.2
10
10
<https://www.mongodb.com/products/spark-connector>`_ Released.
11
11
12
12
- **July 12, 2017**, `MongoDB Connector for Spark v2.1.0
@@ -44,8 +44,8 @@ versions of Apache Spark and MongoDB:
44
44
- Spark Version
45
45
- MongoDB Version
46
46
47
- * - 2.2.0
48
- - 2.2.x
47
+ * - 2.2.2
48
+ - 2.2.x or 2.3.x
49
49
- 2.6 or later
50
50
51
51
* - 2.1.0
Original file line number Diff line number Diff line change @@ -33,17 +33,17 @@ The following excerpt is from a Maven ``pom.xml`` file:
33
33
<dependency>
34
34
<groupId>org.apache.spark</groupId>
35
35
<artifactId>spark-core_2.11</artifactId>
36
- <version>2.2.0 </version>
36
+ <version>2.2.2 </version>
37
37
</dependency>
38
38
<dependency>
39
39
<groupId>org.mongodb.spark</groupId>
40
40
<artifactId>mongo-spark-connector_2.11</artifactId>
41
- <version>2.2.0 </version>
41
+ <version>2.2.2 </version>
42
42
</dependency>
43
43
<dependency>
44
44
<groupId>org.apache.spark</groupId>
45
45
<artifactId>spark-sql_2.11</artifactId>
46
- <version>2.2.0 </version>
46
+ <version>2.2.2 </version>
47
47
</dependency>
48
48
</dependencies>
49
49
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ a `SBT <http://www.scala-sbt.org/documentation.html>`_ ``build.scala`` file:
64
64
65
65
scalaVersion := "2.11.7",
66
66
libraryDependencies ++= Seq(
67
- "org.mongodb.spark" %% "mongo-spark-connector" % "2.2.0 ",
68
- "org.apache.spark" %% "spark-core" % "2.2.0 ",
69
- "org.apache.spark" %% "spark-sql" % "2.2.0 "
67
+ "org.mongodb.spark" %% "mongo-spark-connector" % "2.2.2 ",
68
+ "org.apache.spark" %% "spark-core" % "2.2.2 ",
69
+ "org.apache.spark" %% "spark-sql" % "2.2.2 "
70
70
)
71
71
72
72
Configuration
You can’t perform that action at this time.
0 commit comments