Update version numbers in the document and mark 2.3.11 as Preview release (#445)

This commit is contained in:
SJ 2019-05-02 18:08:00 -07:00 коммит произвёл GitHub
Родитель d368d7c6b0
Коммит 081e76b0cb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 14 добавлений и 14 удалений

2
.github/CONTRIBUTING.md поставляемый
Просмотреть файл

@ -19,7 +19,7 @@ run all unit/integration tests and build a JAR.
### SBT Dependency
// https://mvnrepository.com/artifact/com.microsoft.azure/azure-eventhubs-spark_2.11
libraryDependencies += "com.microsoft.azure" %% "azure-eventhubs-spark" %% "2.3.11"
libraryDependencies += "com.microsoft.azure" %% "azure-eventhubs-spark" %% "2.3.10"
## Filing Issues

Просмотреть файл

@ -30,17 +30,17 @@ By making Event Hubs and Spark easier to use together, we hope this connector ma
#### Spark
|Spark Version|Package Name|Package Version|
|-------------|------------|----------------|
|Spark 2.4|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.11-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.11%7Cjar)|
|Spark 2.3|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.11-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.11%7Cjar)|
|Spark 2.4|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.10-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.10%7Cjar)|
|Spark 2.3|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.10-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.10%7Cjar)|
|Spark 2.2|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.2.10-blue.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.2.10%7Cjar)|
|Spark 2.1|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.2.10-blue.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.2.10%7Cjar)|
#### Databricks
|Databricks Runtime Version|Artifact Id|Package Version|
|-------------|------------|----------------|
|Databricks Runtime 5.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.11-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.11%7Cjar)|
|Databricks Runtime 4.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.11-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.11%7Cjar)|
|Databricks Runtime 3.5|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.11-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.11%7Cjar)|
|Databricks Runtime 5.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.10-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.10%7Cjar)|
|Databricks Runtime 4.X|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.10-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.10%7Cjar)|
|Databricks Runtime 3.5|azure-eventhubs-spark_2.11|[![Maven Central](https://img.shields.io/badge/maven%20central-2.3.10-brightgreen.svg)](https://search.maven.org/#artifactdetails%7Ccom.microsoft.azure%7Cazure-eventhubs-spark_2.11%7C2.3.10%7Cjar)|
#### Roadmap
@ -55,7 +55,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.11
version = 2.3.10
### Documentation

Просмотреть файл

@ -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.11
version = 2.3.10
```
For Python applications, you need to add this above library and its dependencies when deploying your application.
@ -387,11 +387,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.11 ...
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.10 ...
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.11 ...
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.10 ...
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.11
version = 2.3.10
```
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.11
version = 2.3.10
```
For Python applications, you need to add this above library and its dependencies when deploying your application.
@ -391,11 +391,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.11 ...
./bin/spark-submit --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.10 ...
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.11 ...
./bin/spark-shell --packages com.microsoft.azure:azure-eventhubs-spark_2.11:2.3.10 ...
See [Application Submission Guide](https://spark.apache.org/docs/latest/submitting-applications.html) for more details about submitting
applications with external dependencies.