question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Microsoft.Azure.Cosmos.Table.StorageException: 'Not Implemented' | CreateIfNotExistsAsync

See original GitHub issue

Which 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:closed
  • Created 4 years ago
  • Comments:7 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
edwin-hubercommented, May 4, 2021

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.

            var tableClient = new CloudTableClient(new Uri("http://127.0.0.1:10002/devstoreaccount1/"), new StorageCredentials(storageAccount, accountKey));
            var table = tableClient.GetTableReference("blah");
            try
            {
                table.CreateIfNotExistsAsync().Wait();
            }
            catch (Exception e)
            {
                throw e;
            }
0reactions
TarekSalhacommented, Mar 23, 2022

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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found