forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Azure#19 from Azure/moderakh/faq
Moderakh/faq
- Loading branch information
Showing
4 changed files
with
265 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Changelog | ||
|
||
|
||
### 1.0.0 | ||
- Release 1.0.0 has fully end to end support for non-blocking IO using netty library in Gateway mode. | ||
- Dependency on ``azure-documentdb`` SDK removed. | ||
- Artifact id changed to ``azure-cosmosdb`` from ``azure-documentdb-rx`` in 0.9.0-rc2. | ||
- Java package name changed to ``com.microsoft.azure.cosmosdb`` from ``com.microsoft.azure.documentdb`` in 0.9.0-rc2. | ||
|
||
### 0.9.0-rc2 | ||
- ``FeedResponsePage`` renamed to ``FeedReponse`` | ||
- Some minor modifications to ``ConnectionPolicy`` configuration. | ||
All time fields and methods in ConnectionPolicy suffixed with "InMillis" to be more precise of the time unit. | ||
- ``ConnectionPolicy#setProxy()`` removed. | ||
- ``FeedOptions#pageSize`` renamed to | ||
``FeedOptions#maxItemCount`` | ||
- Release 1.0.0 deprecates 0.9.x releases. | ||
|
||
### 0.9.0-rc1 | ||
- First release of ``azure-documentdb-rx`` SDK. | ||
- CRUD Document API fully non-blocking using netty. Query async API implemented as a wrapper using blocking SDK ``azure-documentdb``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
### FAQ | ||
|
||
#### I am getting this error: | ||
|
||
- ``Request Rate too Large`` Request too large is an error from service indicating that you temporarily went beyond the provisioned throughput. You should retry after the provided | ||
``DocumentClientException#getRetryAfterInMilliseconds()``. | ||
|
||
- ``CollectionPoolExhausted`` this is a SDK side error indicating that the SDK's connection pool is saturated. Consider to retry later, increase the connection pool size or use a semaphore to throttle your workload. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters