Questions tagged [azurite]
77 questions
1
vote
0 answers
Azure WebJobs SDK exception: Forbidden when running application
I've got a .NET Core application that I need to run on a Mac (11.3.1) for development. The same app runs fine on Windows and apart from the OS, the only difference is that on Mac I have to use Azurite for the storage emulation (on Windows the…

Leandro
- 11
- 2
1
vote
0 answers
Azurite doesn't work with Blob Trigger in VS Code
I have created a function to run locally, I am able to do it for HTTP Triggered functions, but when it comes to BlobTriggered I am always getting the same error.
I am using Azurite for mocking the Blob Service in Azure at the http://127.0.0.1:10000…

Tito
- 722
- 4
- 26
- 55
1
vote
1 answer
TableOperation.Insert always returns Conflict 409, TableOperation.InsertOrReplace succeeds
The issue only relates to azurite as using an actual Azure table works fine. I noticed searching in azurite doesn't return ETag for any entity.
Using the below entity, TableOperation.Insert always succeeds but always returns Conflict 409, even…

codebrane
- 4,290
- 2
- 18
- 27
1
vote
3 answers
Authenticating azcopy or az storage cli to upload to Azurite docker emulator
I started an Azurite docker on local VM and then tried to copy data to it by azcopy and az CLI like below
export AZURE_STORAGE_ACCOUNT="devstoreaccount1"
export…

user7788539
- 89
- 1
- 7
1
vote
3 answers
How to run Timer-triggered Azure Functions locally on Mac?
I want to execute a timer-triggered function in my local development environment (Node, OS X) but it seems to require some changes to the HTTP-triggered functions setup I have.
Here's the code related to the timer function so…

Max Ivanov
- 5,695
- 38
- 52
1
vote
1 answer
Azurite only with http?
I have to use azurite as broker, unfortunately I can't use azure service bus yet. So I was forced to use
com.microsoft.azure
azure-servicebus-jms-spring-boot-starter
…

wwww
- 760
- 1
- 11
- 20
0
votes
0 answers
Azurite hangs and errs eventually when I tried to delete a blog storage file or upload a file
Azurite hangs and errs eventually when I tried to delete a blob storage file using Azure Storage Explorer. I uses Putty to connect remote Azure container running linux docker. I mapped 127.0.0.0:5051 to remote 10000 port. The command line is…

Vincent Wu
- 1
- 2
0
votes
1 answer
Azure Durable Function does not respond and error out at the end
I followed these instructions to create a Durable Function App. I use Netherite as the durable storage provider. When I send a POST request to the Orchestrator function, the call does not return for a minute or so. Sometimes I get the following…

wonderful world
- 10,969
- 20
- 97
- 194
0
votes
0 answers
Unable to set Azurite CORS rules using its CLI
Please note that this is not a duplicate of this post.
What is the exact Azurite CLI command to issue to set its CORS rules similar to the following screenshot in a docker compose file?
Example:
storageemulator:
image:…

Arash
- 3,628
- 5
- 46
- 70
0
votes
0 answers
Copy blob fails in azurite, works in azure blob storage
Why does this operation work copying a blob to azure storage:
az storage blob copy start --destination-blob $blob.name --destination-container $containerName --connection-string $destConnectionString --source-account-name "$sourceStorageAccount"…

johnstaveley
- 1,400
- 1
- 22
- 46
0
votes
0 answers
Not able to read data from azurite using pyspark for local testing
I am trying to read a parquet file stored in azurite from pyspark locally. I am getting below mentioned issues :
3/05/21 14:53:19 WARN MetricsConfig: Cannot locate configuration: tried…
0
votes
1 answer
Emulate non public Azure Cloud for testing purposes
As the question reports, I was wondering if there is a way to emulate resources hosted in a non public Azure Cloud (ex. Gov Azure, Germany Azure, China Azure, ...)
I've found out Azurite…

user2896152
- 762
- 1
- 9
- 32
0
votes
0 answers
How can I run a docker container with a read-only bind to a local folder, yet have the container save changes to the bind read-only folder?
I have (comparatively) large azure blob database (>50bg) that is stored on disk. I want to be able to run docker containers that point to this directory and can create changes that are persisted on a volume. I do no want the docker containers to be…
0
votes
1 answer
timer trigger azure function python v2 model - after deployment to azure it says "no http trigger found "
I am trying to deploy an time triggered (schedule) function to azure function using the python v2 model. The function works as expected locally. I am deploying using VSCode and Azurite extension. The deployment seems to be successful, however it…

average.everyman
- 123
- 1
- 12
0
votes
1 answer
How to change option allowInsecureConnection Node.Js working with Azurite
I try to connect to a Table in Azurite from an azure function written in node.js
myTableClient = TableClient.fromConnectionString(process.env.STORAGE_CONNECTION_STRING,
"myTable" );
entity = await myTableClient.getEntity("partitionkey",…

Bogdan_Ch
- 3,328
- 4
- 23
- 39