Failing to open a new Azurite table in Storage Explorer
See original GitHub issueI have Node.js 10.13.0 installed via nvm. I started Azurite 2.7.0 by running the following:
$ node --version
v10.13.0
$ mkdir empty
$ cd empty
$ npx azurite
...
Azurite started normally. I then used Storage Explorer 1.5.0 to create a new table named “Example”. The operation completed successfully, and I saw the “Example” table in the navigation tree. However, selecting the table to open it resulted in the following error:
<?xml version="1.0" encoding="utf-8"?><Error><Code>EntityNotFound</Code><Message>The specified entity does not exist.</Message></Error>
I found the following in the console log (no other errors or anything that looked too relevent):
POST /devstoreaccount1/Tables 204 2.419 ms - -
GET /devstoreaccount1/Example?%24top=1000 404 0.866 ms - 135
This is a simple reproduction of a more general issue we’ve encountered creating and reading tables in Azurite. Working with tables no longer appears to be working from our .NET Core application.
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Troubleshooting Azurite and Azure Storage Emulator issues
Right-click the Start button and choose 'Command Prompt(Admin'. · From the command prompt cd to the directory “C:\Program Files (x86)\Microsoft ...
Read more >Unable to load storage tables in azure storage explorer
Not all storage accounts (like Blob Storage) supports tables. That could be the reason. Try to delete the %AppData%/Roaming/StorageExplorer ...
Read more >Azurite V3 - npm
An open source Azure Storage API compatible server. ... Note: The latest Azurite V3 code, which supports Blob, Queue, and Table (preview) is ......
Read more >Getting started with Azure storage explorer - SQLShack
Azurite is an open-source emulator that creates a local environment for testing and development for your application to use Azure blob storage, ...
Read more >Tag: Azure Storage - The Flying Maverick
After installing Visual Studio 2022 and working with Azure Functions I noticed that a new storage emulator is being used called Azurite. Azurite...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@XiaoningLiu We need to push out a release.
I am unable to repro with the current version, and the tables behavior in the legacy-dev branch is the same as the service: When I use the query Syntax
It returns 404 not found
This is “almost” the same behavior that I get from the service, we can argue whether we need to update the Code to ResourceNotFound…: HTTP Status 404
When I use a filter:
I get an empty list: HTTP Status 200
The service provides a little more, but essentially also the empty list:
We could change our response format to match the XML response from the service… but the responses are working with my sample app and queries submitted by the Cosmos Table API, so I think a release should be enough.
released version and new release in Azurite v3 also addresses this issue.