AdminAzure Cosmos DB Team
(Product Manager, Microsoft Azure)
My feedback
-
1,246 votes
Moving to unplanned (Backlog).
Apologies. This status should have been changed.
This is not on our current roadmap for this semester ending in June. Will again evaluate for H2 2020.
Thank you.
An error occurred while saving the comment -
53 votes
We’d like to encourage you to take a look at our new serverless option. This is a consumption offering so you only pay for what you use.
To learn more see, https://docs.microsoft.com/en-us/azure/cosmos-db/serverless
Please provide feedback if this will meet your needs.
Thank you.
An error occurred while saving the comment What is the scenario that you need to create 30 containers? Are you using containers and tenant boundaries?
-
103 votes
This is currently on our roadmap with a tentative release date of Summer 2019.
Thank you for your suggestion.
An error occurred while saving the comment Yes, still planned.
-
729 votes
This feature is now available in Preview.
You can read more here.
https://docs.microsoft.com/en-us/azure/cosmos-db/continuous-backup-restore-introductionThanks.
An error occurred while saving the comment Hi Min. There is a private preview portal you can use instead. Please contact support for access.
Thanks.
-
152 votes
We have reviewed this and have elected to not include this on our road map for the time being. We may revisit this in the future so will leave as unplanned rather than declined or closed.
Thanks for your suggestion and comments.
An error occurred while saving the comment There is no update on this to report. When there is progress we will definitely update here.
Thanks.
-
377 votes
This feature is now available in public preview. Please visit https://docs.microsoft.com/azure/cosmos-db/how-to-setup-rbac for more information.
An error occurred while saving the comment MSI is actually possible to do today as our Control Plane has AAD support.
Work on AAD support for Data Plane (eg. CRUD operations) is Started. There is no closed preview for this at this time.
-
21 votes
At this time this feature is not on our road map. We will leave this marked as unplanned for now and will revisit this in upcoming cycles and will update here if this changes.
Thank you for your suggestion and votes.
An error occurred while saving the comment This is not in the current semester's plan. Will evaluate for next semester starting July.
Thanks.
-
2,569 votes
Another update on this since it’s been over a year.
First, our apologies this has taken so long. As previously stated the work on this took much longer than expected. Additionally, work on the emulator has started/stopped/started/stopped over the past year and COVID has also not helped to get this completed.
Rest assured we still intend to complete this work. We apologize for the delays.
Thanks again for your patience.
An error occurred while saving the comment Hello everyone.
We are still in progress for rewriting the Cosmos DB Emulator. We realize this is taking more time than we expected.
In the mean time there is an alternative emulator which does work on Linux and Mac OSX which may be an option for some of you while we are working on this. Feel free to take a look at this open source project here. https://github.com/zeit/cosmosdb-server
We will certainly update here when we release a cross-platform version of our emulator. In the meantime, we hope this one above will help some of you now.
Thanks.
-
5,641 votes
Work on this feature has started. Will update here when this becomes generally available.
Thank you for your suggestion and votes.
-
31 votes
This work is planned. Tentative start for H2 2020.
Thanks.
An error occurred while saving the comment Hello. Have you seen this article? I think this may be what you are looking for.
https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-sql-subquery
Let us know and thanks!
-
11 votes
This feature is now available in public preview.
Please visit https://docs.microsoft.com/azure/cosmos-db/how-to-setup-rbac for more information.
An error occurred while saving the comment Hello Daniel.
Yes, on our Control Plane we are adding a number of improvements that should be coming out over the next few months which should provide this level of control.
Thanks!
-
133 votes
More details on Azure Cosmos DB on Azure Stack will follow as we make progress on it.
Thanks for the feedback.
An error occurred while saving the comment We are still reviewing this as there are a number of dependencies and teams involved. We will update the status here as this progresses.
Thanks.
-
135 votes
For this we recommend using Azure Search. This is not on our roadmap. If that ever changes we will reopen this item.
Thanks.
An error occurred while saving the comment Pretty much all of $text functionality (and more) has been implemented in Azure Search and we're happy to let you know that it now supports for MongoDB API collections (in private preview). Working with MongoDB collections is very similar to working with SQL Cosmos DB collections as described in https://docs.microsoft.com/azure/search/search-howto-index-cosmosdb
To create a MongoDB datasource, POST an HTTP request as shown below:
POST https://[service name].search.windows.net/datasources?api-version=2016-09-01
Content-Type: application/json
api-key: [Search service admin key]
{
"name": "mymongodbdatasource",
"type": "documentdb",
"credentials": {
"connectionString": "AccountEndpoint=https://<Your Cosmos DB account name>.documents.azure.com;AccountKey=<Your Cosmos DB account key>;Database=<Your database>;ApiKind=MongoDb"
},
"container": { "name": "<Your collection>", "query": null },
"dataChangeDetectionPolicy": {
"@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
"highWaterMarkColumnName": "_ts"
}
}Note:
1. Use `documentdb` as the data source type.
2. Do not use a MongoDB connection string that you would use in your MongoDB application. Instead, construct the connection string as shown above. Make sure to add **ApiKind=MongoDb** to the connection string.Once you've created the data source, follow the steps in https://docs.microsoft.com/azure/search/search-howto-index-cosmosdb to create a search index, create an indexer, and monitor the indexer execution.
## Known issues and limitations
1. Only the REST API is supported. For now, you cannot create or edit MongdoDB data sources using Azure Portal or Azure Search .NET SDK. However, you **can** monitor execution history of MongoDB indexers in the portal.
2. Custom queries are not supported: `container.query` parameter must be set to null or omitted. If you need to use a custom query, please let us know at the emails below.
If you encounter any issues, please contact azscustquestions@microsoft.com
An error occurred while saving the comment Currently, simple text search is provided through $regex operator. More comprehensive text search is coming shortly through Azure Search that will be able to index MongoDB API collections as well: https://feedback.azure.com/forums/263029-azure-search/suggestions/18861421-documentdb-indexer-should-be-able-to-index-mongodb
Hi Alex. Need to clarify with you. Are you asking for a CouchDB API like we have with Mongo or Cassandra?
thanks.