Prep for 2.3.2 release (#354)
This commit is contained in:
Родитель
d75b41c62c
Коммит
3682b30e7d
|
@ -39,14 +39,14 @@ Then add the following dependency declaration:
|
|||
<dependency>
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
<artifactId>azure-eventhubs-spark_[2.XX]</artifactId>
|
||||
<version>2.3.1-SNAPSHOT</version>
|
||||
<version>2.3.2-SNAPSHOT</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
### SBT Dependency
|
||||
|
||||
// https://mvnrepository.com/artifact/com.microsoft.azure/azure-eventhubs-spark_2.11
|
||||
libraryDependencies += "com.microsoft.azure" %% "azure-eventhubs-spark" %% "2.3.1"
|
||||
libraryDependencies += "com.microsoft.azure" %% "azure-eventhubs-spark" %% "2.3.2"
|
||||
|
||||
## Filing Issues
|
||||
|
||||
|
|
|
@ -30,15 +30,15 @@ By making Event Hubs and Spark easier to use together, we hope this connector ma
|
|||
#### Spark
|
||||
|Spark Version|Package Name|Package Version|
|
||||
|-------------|------------|----------------|
|
||||
|Spark 2.3|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.1-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.1%7Cjar)|
|
||||
|Spark 2.3|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.2.1-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.2%7Cjar)|
|
||||
|Spark 2.2|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.2.0-blue.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.2.0%7Cjar)|
|
||||
|Spark 2.1|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.2.0-blue.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.2.0%7Cjar)|
|
||||
|
||||
#### Databricks
|
||||
|Databricks Runtime Version|Artifact Id|Package Version|
|
||||
|-------------|------------|----------------|
|
||||
|Databricks Runtime 4.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.1-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.1%7Cjar)|
|
||||
|Databricks Runtime 3.5|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.1-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.1%7Cjar)|
|
||||
|Databricks Runtime 4.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.2-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.2%7Cjar)|
|
||||
|Databricks Runtime 3.5|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.2-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.2%7Cjar)|
|
||||
|
||||
#### Roadmap
|
||||
|
||||
|
@ -54,7 +54,7 @@ For Scala/Java applications using SBT/Maven project definitions, link your appli
|
|||
|
||||
groupId = com.microsoft.azure
|
||||
artifactId = azure-eventhubs-spark_2.11
|
||||
version = 2.3.1
|
||||
version = 2.3.2
|
||||
|
||||
### Documentation
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<parent>
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
<artifactId>azure-eventhubs-spark-parent_2.11</artifactId>
|
||||
<version>2.3.2-SNAPSHOT</version>
|
||||
<version>2.3.2</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>azure-eventhubs-spark_2.11</artifactId>
|
||||
|
|
|
@ -23,7 +23,7 @@ Structured streaming integration for Azure Event Hubs is ultimately run on the J
|
|||
```
|
||||
groupId = com.microsoft.azure
|
||||
artifactId = azure-eventhubs-spark_2.11
|
||||
version = 2.3.1
|
||||
version = 2.3.2
|
||||
```
|
||||
|
||||
For Python applications, you need to add this above library and its dependencies when deploying your application.
|
||||
|
@ -384,11 +384,11 @@ AMQP types need to be handled explicitly by the connector. Below we list the AMQ
|
|||
As with any Spark applications, `spark-submit` is used to launch your application. `azure-eventhubs-spark_2.11`
|
||||
and its dependencies can be directly added to `spark-submit` using `--packages`, such as,
|
||||
|
||||
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.1 ...
|
||||
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.3 ...
|
||||
|
||||
For experimenting on `spark-shell`, you can also use `--packages` to add `azure-eventhubs-spark_2.11` and its dependencies directly,
|
||||
|
||||
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.1 ...
|
||||
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.3 ...
|
||||
|
||||
See [Application Submission Guide](https://spark.apache.org/docs/latest/submitting-applications.html) for more details about submitting
|
||||
applications with external dependencies.
|
||||
|
|
|
@ -23,7 +23,7 @@ For Scala/Java applications using SBT/Maven project defnitions, link your applic
|
|||
```
|
||||
groupId = com.microsoft.azure
|
||||
artifactId = azure-eventhubs-spark_2.11
|
||||
version = 2.3.1
|
||||
version = 2.3.2
|
||||
```
|
||||
|
||||
For Python applications, you need to add this above library and its dependencies when deploying your application.
|
||||
|
|
|
@ -23,7 +23,7 @@ For Scala/Java applications using SBT/Maven project defnitions, link your applic
|
|||
```
|
||||
groupId = com.microsoft.azure
|
||||
artifactId = azure-eventhubs-spark_2.11
|
||||
version = 2.3.1
|
||||
version = 2.3.2
|
||||
```
|
||||
|
||||
For Python applications, you need to add this above library and its dependencies when deploying your application.
|
||||
|
@ -366,11 +366,11 @@ AMQP types need to be handled explicitly by the connector. Below we list the AMQ
|
|||
As with any Spark applications, `spark-submit` is used to launch your application. `azure-eventhubs-spark_2.11`
|
||||
and its dependencies can be directly added to `spark-submit` using `--packages`, such as,
|
||||
|
||||
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.1 ...
|
||||
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.2 ...
|
||||
|
||||
For experimenting on `spark-shell`, you can also use `--packages` to add `azure-eventhubs-spark_2.11` and its dependencies directly,
|
||||
|
||||
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.1 ...
|
||||
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.2 ...
|
||||
|
||||
See [Application Submission Guide](https://spark.apache.org/docs/latest/submitting-applications.html) for more details about submitting
|
||||
applications with external dependencies.
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -25,7 +25,7 @@
|
|||
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
<artifactId>azure-eventhubs-spark-parent_2.11</artifactId>
|
||||
<version>2.3.2-SNAPSHOT</version>
|
||||
<version>2.3.2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>EventHubs+Spark Parent POM</name>
|
||||
|
|
Загрузка…
Ссылка в новой задаче