Skip to content

Commit e7927f7

Browse files
authored
Release 0.6.0 (#301)
1 parent 4343f21 commit e7927f7

File tree

9 files changed

+58
-14
lines changed

9 files changed

+58
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<tbody align="center">
4040
<tr>
4141
<td >2.3.*</td>
42-
<td rowspan=5><a href="https://github.com/dotnet/spark/releases/tag/v0.5.0">v0.5.0</a></td>
42+
<td rowspan=5><a href="https://github.com/dotnet/spark/releases/tag/v0.6.0">v0.6.0</a></td>
4343
</tr>
4444
<tr>
4545
<td>2.4.0</td>

benchmark/scala/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.spark</groupId>
55
<artifactId>microsoft-spark-benchmark</artifactId>
6-
<version>0.5.0</version>
6+
<version>0.6.0</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>

docs/building/ubuntu-instructions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@ Once you build the samples, you can use `spark-submit` to submit your .NET Core
184184
spark-submit \
185185
--class org.apache.spark.deploy.dotnet.DotnetRunner \
186186
--master local \
187-
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.5.0.jar \
187+
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.6.0.jar \
188188
Microsoft.Spark.CSharp.Examples Sql.Basic $SPARK_HOME/examples/src/main/resources/people.json
189189
```
190190
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredNetworkWordCount](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredNetworkWordCount.cs)**
191191
```bash
192192
spark-submit \
193193
--class org.apache.spark.deploy.dotnet.DotnetRunner \
194194
--master local \
195-
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.5.0.jar \
195+
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.6.0.jar \
196196
Microsoft.Spark.CSharp.Examples Sql.Streaming.StructuredNetworkWordCount localhost 9999
197197
```
198198
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredKafkaWordCount (maven accessible)](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredKafkaWordCount.cs)**
@@ -201,7 +201,7 @@ Once you build the samples, you can use `spark-submit` to submit your .NET Core
201201
--packages org.apache.spark:spark-sql-kafka-0-10_2.11:2.3.2 \
202202
--class org.apache.spark.deploy.dotnet.DotnetRunner \
203203
--master local \
204-
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.5.0.jar \
204+
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.6.0.jar \
205205
Microsoft.Spark.CSharp.Examples Sql.Streaming.StructuredKafkaWordCount localhost:9092 subscribe test
206206
```
207207
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredKafkaWordCount (jars provided)](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredKafkaWordCount.cs)**
@@ -210,7 +210,7 @@ Once you build the samples, you can use `spark-submit` to submit your .NET Core
210210
--jars path/to/net.jpountz.lz4/lz4-1.3.0.jar,path/to/org.apache.kafka/kafka-clients-0.10.0.1.jar,path/to/org.apache.spark/spark-sql-kafka-0-10_2.11-2.3.2.jar,`path/to/org.slf4j/slf4j-api-1.7.6.jar,path/to/org.spark-project.spark/unused-1.0.0.jar,path/to/org.xerial.snappy/snappy-java-1.1.2.6.jar \
211211
--class org.apache.spark.deploy.dotnet.DotnetRunner \
212212
--master local \
213-
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.5.0.jar \
213+
~/dotnet.spark/src/scala/microsoft-spark-2.3.x/target/microsoft-spark-2.3.x-0.6.0.jar \
214214
Microsoft.Spark.CSharp.Examples Sql.Streaming.StructuredKafkaWordCount localhost:9092 subscribe test
215215
```
216216

docs/building/windows-instructions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,15 +216,15 @@ Once you build the samples, running them will be through `spark-submit` regardle
216216
spark-submit.cmd `
217217
--class org.apache.spark.deploy.dotnet.DotnetRunner `
218218
--master local `
219-
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.5.0.jar `
219+
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.6.0.jar `
220220
Microsoft.Spark.CSharp.Examples.exe Sql.Basic %SPARK_HOME%\examples\src\main\resources\people.json
221221
```
222222
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredNetworkWordCount](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredNetworkWordCount.cs)**
223223
```powershell
224224
spark-submit.cmd `
225225
--class org.apache.spark.deploy.dotnet.DotnetRunner `
226226
--master local `
227-
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.5.0.jar `
227+
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.6.0.jar `
228228
Microsoft.Spark.CSharp.Examples.exe Sql.Streaming.StructuredNetworkWordCount localhost 9999
229229
```
230230
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredKafkaWordCount (maven accessible)](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredKafkaWordCount.cs)**
@@ -233,7 +233,7 @@ Once you build the samples, running them will be through `spark-submit` regardle
233233
--packages org.apache.spark:spark-sql-kafka-0-10_2.11:2.3.2 `
234234
--class org.apache.spark.deploy.dotnet.DotnetRunner `
235235
--master local `
236-
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.5.0.jar `
236+
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.6.0.jar `
237237
Microsoft.Spark.CSharp.Examples.exe Sql.Streaming.StructuredKafkaWordCount localhost:9092 subscribe test
238238
```
239239
- **[Microsoft.Spark.Examples.Sql.Streaming.StructuredKafkaWordCount (jars provided)](../../examples/Microsoft.Spark.CSharp.Examples/Sql/Streaming/StructuredKafkaWordCount.cs)**
@@ -242,7 +242,7 @@ Once you build the samples, running them will be through `spark-submit` regardle
242242
--jars path\to\net.jpountz.lz4\lz4-1.3.0.jar,path\to\org.apache.kafka\kafka-clients-0.10.0.1.jar,path\to\org.apache.spark\spark-sql-kafka-0-10_2.11-2.3.2.jar,`path\to\org.slf4j\slf4j-api-1.7.6.jar,path\to\org.spark-project.spark\unused-1.0.0.jar,path\to\org.xerial.snappy\snappy-java-1.1.2.6.jar `
243243
--class org.apache.spark.deploy.dotnet.DotnetRunner `
244244
--master local `
245-
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.5.0.jar `
245+
C:\github\dotnet-spark\src\scala\microsoft-spark-2.3.x\target\microsoft-spark-2.3.x-0.6.0.jar `
246246
Microsoft.Spark.CSharp.Examples.exe Sql.Streaming.StructuredKafkaWordCount localhost:9092 subscribe test
247247
```
248248

docs/release-notes/0.6/release-0.6.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# .NET for Apache Spark 0.6 Release Notes
2+
3+
### New Features and Improvements
4+
5+
* Support for v0.4.0 `DeltaTable` APIs in [Delta Lake](https://github.com/delta-io/delta) ([#297](https://github.com/dotnet/spark/pull/297))
6+
7+
### Breaking Changes
8+
* None
9+
10+
### Supported Spark Versions
11+
12+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
13+
14+
<table>
15+
<thead>
16+
<tr>
17+
<th>Spark Version</th>
18+
<th>microsoft-spark JAR</th>
19+
</tr>
20+
</thead>
21+
<tbody align="center">
22+
<tr>
23+
<td>2.3.*</td>
24+
<td>microsoft-spark-2.3.x-0.6.0.jar</td>
25+
</tr>
26+
<tr>
27+
<td>2.4.0</td>
28+
<td rowspan=4>microsoft-spark-2.4.x-0.6.0.jar</td>
29+
</tr>
30+
<tr>
31+
<td>2.4.1</td>
32+
</tr>
33+
<tr>
34+
<td>2.4.3</td>
35+
</tr>
36+
<tr>
37+
<td>2.4.4</td>
38+
</tr>
39+
<tr>
40+
<td>2.4.2</td>
41+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
42+
</tr>
43+
</tbody>
44+
</table>

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionPrefix>0.5.0</VersionPrefix>
4+
<VersionPrefix>0.6.0</VersionPrefix>
55
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
66
<RestoreSources>
77
$(RestoreSources);

src/scala/microsoft-spark-2.3.x/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.5.0</version>
7+
<version>0.6.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.3.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/microsoft-spark-2.4.x/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.5.0</version>
7+
<version>0.6.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.4.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.scala</groupId>
55
<artifactId>microsoft-spark</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.5.0</version>
7+
<version>0.6.0</version>
88
<properties>
99
<encoding>UTF-8</encoding>
1010
</properties>

0 commit comments

Comments
 (0)