Microsoft.Azure.Cosmos.Table.StorageException: 'Not Implemented' | CreateIfNotExistsAsync
See original GitHub issueWhich service(blob, file, queue, table) does this issue concern?
table
Which version of the Azurite was used?
2.7.1
Where do you get Azurite? (npm, DockerHub, NuGet, Visual Studio Code Extension)
npm
What’s the Node.js version?
8.11.2
What problem was encountered?
Microsoft.Azure.Cosmos.Table.StorageException: ‘Not Implemented’
Steps to reproduce the issue?
using Microsoft.Azure.Cosmos.Table;
var table = tableClient.GetTableReference("blah");
await table.CreateIfNotExistsAsync();
Have you found a mitigation/solution?
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Azure Function App fails during message processing when ...
The error appears during incoming ASB message processing. Error writing logs to table storage: Microsoft.Azure.Cosmos.Table.StorageException: ...
Read more >Azure Table Storage - 501 NotImplemented on ...
I'm using a storage account and account key/creds which I know to work: I have a blob container using exactly the same connection...
Read more >Azure function and Cosmos DB Table API – Method not found ...
Reason: Azure Function application project was configured using 'Azure Function v1 (.NET Framework)'. “Microsoft.Azure.Cosmos.
Read more >Using the new C# Azure.Data.Tables SDK with Azure Cosmos ...
await tableClient.CreateIfNotExistsAsync();. To create our Table Client, I'm passing in my storage connection string from Azure and the name of ...
Read more >Jeffrey Richter's Guide to Working with Azure Storage Tables ...
Point out the good and bad parts of Microsoft's Azure storage library. ... 2 If you need to store a value that is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
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
Using Package Microsoft.Azure.Cosmos.Table from Nuget, v1.0.8 and following snippet, this is no longer an issue with the new release and table api support.
Ok, I see, my question was not clearly formulated: What needs to be set as URI, if I want to use a real table storage and not azurite emulator?