Skip to content

Commit ee238e4

Browse files
authored
changed files by pdets auto publish service, publishid[3ed86ec3-009c-4d20-a165-cb9bd755aae0] and do [publish].
1 parent 5ba7a98 commit ee238e4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

learn-pr/wwl-data-ai/choose-indexes-azure-cosmos-db-sql-api/6-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ quiz:
3434
explanation: "Correct. Setting the ``indexingMode`` property to ``none`` disables all indexing."
3535
- content: "``excludedPaths``"
3636
isCorrect: false
37-
explanation: "Incorrect. The ``excludedPaths`` property determines which paths are excluded from the index, not whether the indexer will run."
37+
explanation: "Incorrect. The ``excludedPaths`` property determines which paths are excluded from the index, not whether the indexer runs."
3838
- content: "``automatic``"
3939
isCorrect: false
4040
explanation: "Incorrect. Disabling ``automatic`` indexing using a boolean value of ``false`` doesn't disable all indexing for the container."

learn-pr/wwl-data-ai/choose-indexes-azure-cosmos-db-sql-api/includes/4-review-write-heavy-index-patterns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
If you want your NoSQL queries to be endlessly flexible, why exclude any paths at all? Well, each insert or update operation requires the indexer to run to update the inverted index with data from your newly created or updated item. More oversized items, or bulk workloads, can cause the indexing to use many RU/s or take a significant amount of time.
22

3-
Let’s consider an example JSON object that is much larger than previous examples.
3+
Let’s consider an example JSON object that is larger than previous examples.
44

55
```json
66
{
@@ -76,7 +76,7 @@ WHERE
7676
p.price = <numeric-value>
7777
```
7878

79-
An indexing policy that excludes all paths, except for the **price** property path, would be appropriate here. This policy will still index items, but it will do so quickly because only one property is added to the inverted index.
79+
An indexing policy that excludes all paths, except for the **price** property path, would be appropriate here. This policy will still index items, but it does so quickly because only one property is added to the inverted index.
8080

8181
```json
8282
{
@@ -96,9 +96,9 @@ An indexing policy that excludes all paths, except for the **price** property pa
9696
```
9797

9898
> [!TIP]
99-
> Again, the drawback to this approach is that you will need to update the index anytime you change your schema.
99+
> Again, the drawback to this approach is that you'll need to update the index anytime you change your schema.
100100
101-
Here is a diagram of the inverted index showing that it only has a single property to traverse and then multiple potential values.
101+
Here's a diagram of the inverted index showing that it only has a single property to traverse and then multiple potential values.
102102

103103
![Inverted tree with a single property node of price and multiple child nodes](../media/4-inverted-tree.png)
104104

learn-pr/wwl-data-ai/choose-indexes-azure-cosmos-db-sql-api/includes/5-exercise-optimize-containers-index-policy-common-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### Set up environment
22

33
> [!NOTE]
4-
> To complete this exercise, you will need a [Microsoft Azure subscription](https://azure.microsoft.com/free?azure-portal=true) in which you have administrative access.
4+
> To complete this exercise, you'll need a [Microsoft Azure subscription](https://azure.microsoft.com/free?azure-portal=true) in which you have administrative access.
55
66
To set up the lab environment for this exercise, sign into your Azure subscription and follow these instructions to provision your Azure resources:
77

0 commit comments

Comments
 (0)