-
Notifications
You must be signed in to change notification settings - Fork 27
Cannot query table storage against Docker image - what am I doing wrong? #162
Comments
I've been able to verify this with a (somewhat) simple test; see the code snippet at the bottom. It boils down to
|
Hi @tlycken ! The reason Azurite crashes is that QueryTables has not been implemented yet. I'm aiming for implementing Current support of Table storage is really limited right now. See https://github.com/arafato/azurite/blob/master/release-notes.md and https://github.com/arafato/azurite#table-storage---api-implementation-status respectively, for more details. I planning on having full support by the end of this month, so stay tuned! |
Good news! I'm willing to help with this, if I can, in order to speed it up even further :) I'm having some difficulties following request flow at the beginning of a request, though; would you mind pointing me to the extension point(s) where I need to register/modify stuff to initialize those properties on the request object? |
I've started the docker image using
docker run --rm --name azurite -d -t -p 10000:10000 -p 10001:10001 -p 10002:10002 -v "$(pwd):/opt/azurite/folder" -e executable=table arafato/azurite
and now I'm trying to connect to Table Storage using the Azure CLI:
az storage table list --connection-string 'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;'
but it crashes (returns
500 Internal Server Error
) with the following message:Am I doing something wrong, or is there a bug in the emulator?
The text was updated successfully, but these errors were encountered: