Questions tagged [azurite]
77 questions
0
votes
1 answer
Azurite throwing Exit due to unhandled error
Today my laptop ran out of battery and after turning it on again I tried to run Azurite and I got the error on the image below. I tried a few things so far with no luck.
Did anyone come across this issue before?

Tiago Ávila
- 2,737
- 1
- 31
- 34
0
votes
1 answer
Is it possible to use cognitive search in a local azurite environment
This could entirely be a case of me misunderstanding how Azurite works, but I can't seem to find the answers by searching.
I've downloaded Azurite through the VS code extension, and uploaded some data to a local blob source on my hard drive using…

howlieT
- 191
- 9
0
votes
1 answer
How connect Azure Storage Explorer to Azurite running in WSL?
On Windows 10, I have Azurite running on Ubuntu 20.04 in WSL 2. However, I can not connect to it via the Azure Storage Manager installed on Windows 10.
What I tried
I tried setting up a connection in the Storage Explorer via Local Azure Storage…

joba2ca
- 169
- 2
- 14
0
votes
1 answer
"407 Proxy Authentication Required" at Azure Function with emulated Storage
I try to make a time-triggered function in Visual Studio 2022, while doing this at the debugging the following error occurs:
[2022-06-27T07:47:03.127Z] The listener for function 'Function1' was unable to start.
[2022-06-27T07:47:03.129Z] The…

Bernhard Pranz
- 1
- 2
0
votes
2 answers
Can you create / delete / update stored access policies if running as a Managed Identity?
I'm not really sure how to test this locally, as my understanding of using Managed Identities is that my code would need to be published as an azure resource and running under that identity to access another azure resource which has given certain…

sr28
- 4,728
- 5
- 36
- 67
0
votes
1 answer
How to use Azurite for Integration test in Blobs
Azurite does not connect with my local project for saving blobs inside local emulator.
I am trying to connect Azurite with my Integration test in blob storage? any guide

Chathu.Thanthrige
- 103
- 7
0
votes
2 answers
Docker Compose service is not using volume
I have this service...
storage:
image: mcr.microsoft.com/azure-storage/azurite
ports:
"20000:10000"
restart: unless-stopped
volumes:
C:/Data:/hello
I can add data to the Azurite service and I can browse it in the volume via Docker Desktop…

Ian Warburton
- 15,170
- 23
- 107
- 189
0
votes
1 answer
Function App Blob Trigger debugging in VS Code failed in Azurite
I have created a sample Blobtrigger Azure function and would like to debug it with Azurite in VScode. However it always throws the same error after a debugging session is started.
I am using Azurite for mocking the Blob Service in Azure.
Docker…

Kit Law
- 323
- 6
- 15
0
votes
1 answer
Create queue in Azurite via PowerShell script
I want to have a script to create a queue in Azurite running in a docker container. (Preferably a PowerShell script)
My docker-compose.yml:
My running container info:
I don't quite understand how I can achieve creation of a queue. This is the…

David Oganov
- 976
- 1
- 11
- 23
0
votes
1 answer
How to set AzureWebJobsStorage of Azure Functions to Azurite storage?
I'm trying to use Azurite as local storage for Azure Functions.
I have installed Azurite as Extension in Visual Studio Code. I can access to Azurite with Storage Explorer.
I tried to use "AzureWebJobsStorage": "UseDevelopmentStorage=true", but did…

Kenny_I
- 2,001
- 5
- 40
- 94
0
votes
1 answer
How to change where azure storage emulator stores its files
I am attempting to debug an application that is comprised of several microservices. Part of the cross service messaging is carried out by storing information in azure blob storage by one service to be read by the other. For local testing we use…

ReiMasuro
- 313
- 3
- 14
0
votes
1 answer
Azurite not giving same results as Azure Storage Emulator when calling CreateCheckStatusResponse on Azure Durable Function
I have an Azure Durable function as follows:
[FunctionName("Function1_HttpStart")]
public async Task HttpStart(
[HttpTrigger(AuthorizationLevel.Anonymous, "post")]
HttpRequest req,
…

Paul
- 1,483
- 14
- 32
0
votes
1 answer
How to generate a valid Azurite custom account key
How to create a valid key for azurite storage explorer, when I give some random alpha numeric values, it's failing saying not a valid base64 value
0
votes
1 answer
How to check whether a Node.js service is running - in my case Azurite emulator?
I am developing a C# application that should run in Azure. I want to use the Azurite emulator to test it locally. What I want to achieve is: Have my tests detect whether Azurite is running and abort quickly with a nice error message if it is not…

Claus Appel
- 1,015
- 10
- 28
0
votes
2 answers
How can I read/write data from Azurite using Spark?
I have tried to read/write Parquet files from/to Azurite using Spark like this:
import com.holdenkarau.spark.testing.DatasetSuiteBase
import org.apache.spark.SparkConf
import org.apache.spark.sql.SaveMode
import org.scalatest.WordSpec
class…

Beryllium
- 12,808
- 10
- 56
- 86