EmmaZhu-MSFT

Results 75 comments of EmmaZhu-MSFT

Hi @psiservices-tsmallwood , the feature is under design and review. We have a draft PR for it here: https://github.com/Azure/Azurite/pull/2311

Hi @RudiSzalai , Current Azurite is only an emulator for test environment to see whether an application works before connecting to Azure. There's no performance and TPS guarantee. We'd love...

Hi @RobertM15 , The request format sent from the python SDK is different from .Net and JS SDK. A batch request body from python SDK looks like: ``` --batch_2c203f2b-b344-11ed-8810-64006a946869 Content-Type:...

I can repro the issue with code as following with Storage Blob .Net SDK: ``` var serviceClient = new TableServiceClient( new Uri("http://devstoreaccount1.blob.localhost:10002/"), new TableSharedKeyCredential("devstoreaccount1", "accountkey==")); var tableClient = serviceClient.GetTableClient("tablename"); tableClient.CreateIfNotExists();...

Hi @edwin-huber , would you be able to take a look at this?

Hi @anna-mazhar , Thanks a lot for reporting this to us. We see the issue here, and will have a fix for it. Thanks Emma

Hi @anna-mazhar , Upload from URL is not supported by Azurite yet. I can get the "not implemented" error with the latest Azurite (3.29.0). Would you have a try with...

Hi @wayne-w-cloud , With 400 error returned, seems you have successfully connected to Azurite, which means customized port should not be the root cause for the error. Could you share...

Hi @wayne-w-cloud Can you enable debug log in Azurite? Following is a sample to let Azurite in docker output debug log to folder c:/azurite:/workspace: `docker run -p 7777:7777 -p 8888:8888...