Skip to content

Commit 76047f4

Browse files
authored
Merge branch 'main' into horizontals-cosmos-db
2 parents 73970d4 + ad392bd commit 76047f4

File tree

82 files changed

+1601
-342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1601
-342
lines changed

articles/cosmos-db/TOC.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
items:
2929
- name: Vector search overview
3030
href: gen-ai/vector-search-overview.md
31+
- name: Retrieval Augmented Generation (RAG)
32+
href: gen-ai/rag.md
3133
- name: Tokens
3234
href: gen-ai/tokens.md
3335
- name: Vector embeddings
@@ -36,8 +38,13 @@
3638
href: gen-ai/distance-functions.md
3739
- name: kNN vs ANN
3840
href: gen-ai/knn-vs-ann.md
39-
- name: Generative AI
41+
- name: Multi-tenancy for vector search
42+
href: nosql/multi-tenancy-vector-search.md
43+
- name: AI Applications
44+
expanded: true
4045
items:
46+
- name: Quickstart - build a RAG chatbot
47+
href: gen-ai/quickstart-rag-chatbot.md
4148
- name: AI agent
4249
href: ai-agents.md
4350
- name: Real-time custom content generation
@@ -55,4 +62,4 @@
5562
- name: Apache Gremlin
5663
href: gremlin/toc.yml
5764
- name: Table
58-
href: table/toc.yml
65+
href: table/toc.yml

articles/cosmos-db/analytical-store-introduction.md

+5
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,11 @@ FROM OPENROWSET('CosmosDB',
487487
                HTAP) WITH (_id VARCHAR(1000)) as HTAP
488488
```
489489
490+
##### Working with MongoDB `id` field
491+
492+
The `id` property in MongoDB containers is automatically overridden with the Base64 representation of the "_id" property both in analytical store. The "id" field is intended for internal use by MongoDB applications. Currently, the only workaround is to rename the "id" property to something other than "id".
493+
494+
490495
#### Full fidelity schema for API for NoSQL or Gremlin accounts
491496
492497
It's possible to use full fidelity Schema for API for NoSQL accounts, instead of the default option, by setting the schema type when enabling Synapse Link on an Azure Cosmos DB account for the first time. Here are the considerations about changing the default schema representation type:

articles/cosmos-db/continuous-backup-restore-permissions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To perform a restore, a user or a principal need the permission to restore (that
3737
| Assign access to | User, group, or service principal |
3838
| Members | <User of your choice> |
3939

40-
:::image type="content" source="../../includes/role-based-access-control/media/add-role-assignment-page.png" alt-text="Screenshot that shows Add role assignment page in Azure portal.":::
40+
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/role-based-access-control/add-role-assignment-page.png" alt-text="Screenshot that shows Add role assignment page in Azure portal.":::
4141

4242
1. Repeat step 4 with the **Cosmos DB Operator** role to grant the write permission. When assigning this role from the Azure portal, it grants the restore permission to the whole subscription.
4343

articles/cosmos-db/gen-ai/distance-functions.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Two vectors are multiplied to return a single number. It combines the two vector
3131
## Related content
3232
- [VectorDistance system function](../nosql/query/vectordistance.md) in Azure Cosmos DB NoSQL
3333
- [What is a vector database?](../vector-database.md)
34+
- [Retrieval Augmented Generation (RAG)](rag.md)
3435
- [Vector database in Azure Cosmos DB NoSQL](../nosql/vector-search.md)
3536
- [Vector database in Azure Cosmos DB for MongoDB](../mongodb/vcore/vector-search.md)
3637
- [What is vector search?](vector-search-overview.md)

articles/cosmos-db/gen-ai/knn-vs-ann.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Two major categories of vector search algorithms are k-Nearest Neighbors (kNN) a
3333

3434
## Related content
3535
- [What is a vector database?](../vector-database.md)
36+
- [Retrieval Augmented Generation (RAG)](rag.md)
3637
- [Vector database in Azure Cosmos DB NoSQL](../nosql/vector-search.md)
3738
- [Vector database in Azure Cosmos DB for MongoDB](../mongodb/vcore/vector-search.md)
3839
- [What is vector search?](vector-search-overview.md)

0 commit comments

Comments
 (0)