Skip to content

Commit 1c4a017

Browse files
authored
Merge pull request #48391 from SnehaGunda/graphdocfixes
Title update
2 parents f5b579f + 4cddad0 commit 1c4a017

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

articles/cosmos-db/bulk-executor-dot-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: ramkris
1414

1515
---
1616

17-
# Using bulk executor .NET library to perform bulk operations in Azure Cosmos DB
17+
# Use bulk executor .NET library to perform bulk operations in Azure Cosmos DB
1818

1919
This tutorial provides instructions on using the Azure Cosmos DB’s bulk executor .NET library to import and update documents to Azure Cosmos DB container. To learn about bulk executor library and how it helps you leverage massive throughput and storage, see [bulk executor library overview](bulk-executor-overview.md) article. This tutorial will walk you through a sample .NET application that bulk imports randomly generated documents into an Azure Cosmos DB container. After importing, it shows you how you can bulk update the imported data by specifying patches as operations to perform on specific document fields.
2020

articles/cosmos-db/indexing-policies.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,11 @@ In Azure Cosmos DB, you can make changes to the indexing policy of a collection
320320

321321
![How indexing works – Azure Cosmos DB online index transformations](./media/indexing-policies/index-transformations.png)
322322

323-
Index transformations are made online. This means that the documents indexed per the old policy are efficiently transformed per the new policy *without affecting the write availability or the provisioned throughput* of the collection. The consistency of read and write operations made by using the REST API, SDKs, or from within stored procedures and triggers is not affected during index transformation. There's no performance degradation or downtime to your apps when you make an indexing policy change.
323+
Index transformations are made online. This means that the documents indexed per the old policy are efficiently transformed per the new policy *without affecting the write availability or the provisioned throughput* of the collection. The consistency of read and write operations made by using the REST API, SDKs, or from within stored procedures and triggers is not affected during index transformation.
324324

325-
However, during the time that index transformation is progress, queries are eventually consistent regardless of the indexing mode configuration (Consistent or Lazy). This also applies to queries from all interfaces: REST API, SDKs, and from within stored procedures and triggers. Just like with Lazy indexing, index transformation is performed asynchronously in the background on the replicas by using the spare resources that are available for a specific replica.
325+
Changing indexing policy is an asynchronous process and the time to complete the operation depends on the number of documents, provisioned RUs, and size of documents. While re-indexing of your collection is progress, your query results may not return all matching results if they use an index that is being modified. While index transformation is progress, queries are eventually consistent regardless of the indexing mode configuration (Consistent or Lazy) and after the index transformation is complete, you will get consistent results.
326+
327+
However, . This also applies to queries from all interfaces: REST API, SDKs, and from within stored procedures and triggers. Just like with Lazy indexing, index transformation is performed asynchronously in the background on the replicas by using the spare resources that are available for a specific replica.
326328

327329
Index transformations are also made in place. Azure Cosmos DB doesn't maintain two copies of the index and swap out the old index with the new one. This means that no additional disk space is required or consumed in your collections while index transformations occur.
328330

0 commit comments

Comments
 (0)