skip to Main Content

Azure – Cosmos DB Increment with Partial Document Update

https://learn.microsoft.com/en-us/azure/cosmos-db/partial-document-update#supported-operations says that I can use "increment" to increment a value in my database, however this code const operations = [ { op: 'increment', path: '/public/inventory/irradish', value: irradish}, { op: 'increment', path: '/public/inventory/sunmelon', value: sunmelon}, { op: 'set', path: '/map/garden/lastUse',…

VIEW QUESTION

Azure – Cosmos DB Partition Key considerations for unique ID

As per Azure cosmos DB Documentation below URL, each partition key creates logical partition. https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview Let say I have below data { "firstname": "Phil", "LastName": "Dixon", "age": 28, "org": "Fin", "Level": 3, "region": "India", "id": "123", "which-city": "Bangalore", }, {…

VIEW QUESTION
Back To Top
Search