Questions tagged [azurite]

77 questions
13
votes
2 answers

Visual studio 2022 with azurite integrated (v3.14.1) In creation of local blob container gives error message InvalidHeaderValue

This is the error that is thrown: Headers: Server: Azurite-Blob/3.14.1 x-ms-error-code: InvalidHeaderValue x-ms-request-id: a3aca2f1-c0af-4af5-a54c-d7e24c188ba0 Date: Mon, 21 Mar 2022 13:22:04 GMT Connection: keep-alive Keep-Alive:…
user1110336
  • 135
  • 1
  • 6
9
votes
2 answers

Azure Functions: Blob Storage emulator stopped working after moving to VS2022

I have one old Azure Functions project (v3). It contains several timer triggered functions. They stopped working on VS2022. You can see the logs below. If I create a new Functions project via VS2022, it will work fine. Looks like Azurite also starts…
Lgeprorok
  • 97
  • 1
  • 5
6
votes
4 answers

'Server failed to authenticate the request' when attempting to generate SAS URI for (Azurite) Azure BLOB storage

I've combed through at least a dozen different versions of this problem but none of them have so far produced an answer to the one I'm having. I'm attempting to develop a proof-of-concept for retrieving an image from Azure BLOB storage using Azurite…
Dumas.DED
  • 466
  • 5
  • 17
6
votes
2 answers

Is there a way to automatically create a container when starting Azurite?

For test purposes I create and run an Azurite docker image, in a test pipeline. I would like to have the blob container automatically created though after Azurite is started, as it would simplify things. Is there any good way to achieve this? For…
user3533716
  • 491
  • 7
  • 14
6
votes
2 answers

How to use Azurite blob containers as Azure Function internal storage and as trigger?

I've followed the instructions to download and install Azurite for Linux (Ubuntu 18.04). I want to use it with Azure Storage Explorer (also downloaded and installed) to visually manage/test an Azure Function with BlobTrigger. I understand how to…
SeaDude
  • 3,725
  • 6
  • 31
  • 68
4
votes
1 answer

Error in Azure Storage Explorer with Azurite : The first argument must be of type string or an instance of Buffer

I'm running an Azure function locally, from VSCode, that outputs a string to a blob. I'm using Azurite to emulate the output blob container. My function looks like this: import azure.functions as func def main(mytimer: func.TimerRequest,…
4
votes
2 answers

Azurite storage emulator stopping if running multiple projects at once

Good evening, I have been working on the project that has got a web app, api, a few libraries and some Azure functions. When I run only Azure function on its own it works just fine but today I noticed that when I select Multiple startup projects in…
Vladimir
  • 322
  • 1
  • 17
4
votes
4 answers

Unable to debug Python Azure function in VS Code IDE. Getting connect ECONNREFUSED 127.0.0.1:9091 error

I am trying to debug Azure functions python code using VS code IDE. Local.settings.json is updated with below config "AzureWebJobsStorage": "UseDevelopmentStorage=true" Things I tried so far :- I reinstalled VS code, Downgraded Azure Function…
4
votes
1 answer

Customized storage account for Azurite on docker compose

I am trying to use Azurite for my testing environment , I added it to the docker compose file , and it worked fine, code below : azurite: image: mcr.microsoft.com/azure-storage/azurite container_name: test-azurite ports: - '10001:10001' -…
4
votes
1 answer

Error: unable to verify the first certificate in nodejs azure queue storage createMessage

I am trying to test my Azure Queue Storage on Azurite emulator on MacOS in a local environment. I wrote a piece of code to send a message, which was to be viewed on Azure Storage Explorer. I am using the https connection string as stated in the…
3
votes
2 answers

Azure Storage Explorer not connecting to Azurite local emulator

Context: I've successfully installed Azurite, a local emulator (via the Visual Studio Code extension) and Azure Storage Explorer. I've also successfully placed a parquet file in the blob directory, started blob service in Azurite and confirmed in…
2
votes
1 answer

Customized storage account(s) for Azurite on local windows with VS not working

I have a similar issue as here, but this is running Azurite on windows with VS against an Azure Function. I am trying to follow this documentation Azurite is being initiated by VS through this setting in local.settings.json in the Azure Functions…
noontz
  • 1,782
  • 20
  • 29
2
votes
2 answers

Adjust service dependencies startup arguments in Visual Studio 2022

Question Is it possible to set startup parameters or configure them in any way for service dependencies in Visual Studio 2022? Can I perhaps create my own? Work around Startup azurite manually with my preferred arguments before opening Visual Studio…
2
votes
4 answers

Azure Functions Azurite 404 BlobNotFound

After cleaning up the Azurite folder and restarting my .Net 6 Azure Functions ~4 projects, I get the following error: Azure.RequestFailedException: 'Service request failed. Status: 404 (The specified container does not exist.) ErrorCode:…
Norbert Huurnink
  • 1,326
  • 10
  • 18
2
votes
2 answers

How to emulate Azure File Storage on Local Machine?

I want to integrate and test Azure File Storage from my Web application, and before deploying it to the environment (where an Azure Shared folder is provisioned), I would like to test it on my local. I have a docker container running Azurite on my…
1
2 3 4 5 6