azure-cosmos-db-emulator-docker
azure-cosmos-db-emulator-docker copied to clipboard
This repo serves as hub for managing issues, gathering feedback, and having discussions regarding the Cosmos DB Emulator Docker.
I would like to start using the docker version of the emulator, but am hestitant due to some concerns around the trial period issue. Also the documentation on this repo...
**Describe the bug** It seems like the location of the start.sh-file has been moved recently to a bin folder? We are running the linux docker image both locally and as...
After pulling the latest docker image (mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest, sha256:0def7379bb27aec0f45b3248b7ed618e58bd1388c50e85f76d7bbf43ea03026d) the emulator is hanging on `Starting` step in the logs without creating any partitions. The explorer (https://localhost:8081/_explorer/index.html) is up but we can't...
Hi, Is it planned to create a new linux image of the stable cosmos image since vnext is still in preview? Currently, there are 25 days till the evaluation period...
Query with LIKE does not work with cosmosEmulatorVnextPreview: ```sql SELECT * FROM c where c.name LIKE "nam" ```
**Describe the bug** It is not possible to INSERT new item into collection without properly setting partition key property - when property is missing completely or has null value, _Save_...
**Describe the bug** When starting up the CosmosDB preview emulator with .NET Aspire inside GitHub Actions my application fails to start. Looking at the logs, it looks like there is...
**Describe the bug** try to create a container with Hierarchical partition keys using the SDK (Microsoft.Azure.Cosmos" Version="3.46.0") passing multiple partition keys fails with a bad request **To Reproduce** Steps to...
Following query does not work. ```sql SELECT VALUE COUNT(1) FROM c ``` Cosmos SDK uses queries with `VALUE COUNT(1)` when using CountAsync method with an IQueryable.
``` System.NotSupportedException: Not supported function call STRINGEQUALS with 3 arguments at Microsoft.Azure.Cosmos.Postgres.Core.Query.SqlObjectPGTextSerializer.Visit(SqlFunctionCallScalarExpression sqlObject) in /tmp/gateway/Cosmos.Postgres.Core/Query/SqlObjectPGTextSerializer.cs:line 438 at Microsoft.Azure.Cosmos.SqlObjects.SqlFunctionCallScalarExpression.Accept(SqlObjectVisitor visitor) in /tmp/gateway/Cosmos.Postgres.Core/Query/SqlObjects/SqlFunctionCallScalarExpression.cs:line 217 at Microsoft.Azure.Cosmos.Postgres.Core.Query.SqlObjectPGTextSerializer.ProcessBinaryScalarExpression(SqlScalarExpression leftExpression, SqlScalarExpression rightExpression, SqlBinaryScalarOperatorKind operatorKind) in...