@azure/cosmos 3.17.1 → 3.17.2-alpha.20221020.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -207,7 +207,7 @@ try {
|
|
|
207
207
|
|
|
208
208
|
### Transpiling
|
|
209
209
|
|
|
210
|
-
The Azure SDKs are designed to support ES5 JavaScript syntax and [LTS versions of Node.js](https://
|
|
210
|
+
The Azure SDKs are designed to support ES5 JavaScript syntax and [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). If you need support for earlier JavaScript runtimes such as Internet Explorer or Node 6, you will need to transpile the SDK code as part of your build process.
|
|
211
211
|
|
|
212
212
|
### Handle transient errors with retries
|
|
213
213
|
|
|
@@ -228,6 +228,39 @@ While working with Cosmos DB, you might encounter transient failures caused by [
|
|
|
228
228
|
- Changing Database/Container throughput settings
|
|
229
229
|
- Multi Region Write Operations
|
|
230
230
|
|
|
231
|
+
### Limitations
|
|
232
|
+
|
|
233
|
+
Currently the features below are **not supported**. For alternatives options, check the **Workarounds** section below.
|
|
234
|
+
|
|
235
|
+
### Data Plane Limitations:
|
|
236
|
+
|
|
237
|
+
* Queries with COUNT from a DISTINCT subquery
|
|
238
|
+
* Direct TCP Mode access
|
|
239
|
+
* Continuation token for cross partitions queries
|
|
240
|
+
* Change Feed: Processor
|
|
241
|
+
* Change Feed: Read multiple partitions key values
|
|
242
|
+
* Change Feed: Read specific time
|
|
243
|
+
* Change Feed: Read from the beginning
|
|
244
|
+
* Change Feed: Pull model
|
|
245
|
+
* Cross-partition ORDER BY for mixed types
|
|
246
|
+
|
|
247
|
+
### Control Plane Limitations:
|
|
248
|
+
|
|
249
|
+
* Get CollectionSizeUsage, DatabaseUsage, and DocumentUsage metrics
|
|
250
|
+
* Create Geospatial Index
|
|
251
|
+
* Update Autoscale throughput
|
|
252
|
+
|
|
253
|
+
## Workarounds
|
|
254
|
+
|
|
255
|
+
### Continuation token for cross partitions queries
|
|
256
|
+
You can achieve cross partition queries with continuation token support by using
|
|
257
|
+
[Side car pattern](https://github.com/Azure-Samples/Cosmosdb-query-sidecar).
|
|
258
|
+
This pattern can also enable applications to be composed of heterogeneous components and technologies.
|
|
259
|
+
|
|
260
|
+
### Control Plane operations
|
|
261
|
+
Typically, you can use [Azure Portal](https://portal.azure.com/), [Azure Cosmos DB Resource Provider REST API](https://docs.microsoft.com/rest/api/cosmos-db-resource-provider), [Azure CLI](https://docs.microsoft.com/cli/azure/azure-cli-reference-for-cosmos-db) or [PowerShell](https://docs.microsoft.com/azure/cosmos-db/manage-with-powershell) for the control plane unsupported limitations.
|
|
262
|
+
|
|
263
|
+
|
|
231
264
|
### Additional documentation
|
|
232
265
|
|
|
233
266
|
For more extensive documentation on the Cosmos DB service, see the [Azure Cosmos DB documentation][cosmos_docs] on docs.microsoft.com.
|
package/dist/index.js
CHANGED