Questions tagged [azurite]

77 questions
2
votes
0 answers

How can I create container in azurite running from test container in java?

I am trying to test azure file upload using azurite docker image from test container below is code I am using for the same public class AzureContainer { public static AzureContainer INSTANCE = new AzureContainer(); private static final…
2
votes
0 answers

Problem switch from deprecated Azure Storage Emulator to Azurite in Azure Cloud Service

we are using Azure Storage Emulator (ASE) in the Azure Cloud Service (extended support) project, but as this is deprecated we want to switch to Azurite Emulator (AE). Problem is that if I stop using ASE in Azure Cloud Service (extended support) and…
Ian Cuxan
  • 41
  • 3
2
votes
1 answer

Error in AzureWebJobStorage every time I restart my computer

When I start up my azure functions project after a reboot of my computer I am getting the error below. I have worked around it by deleting files in Azure storage, but I was wondering what is going on here and how I could possibly fix the…
Xander
  • 9,069
  • 14
  • 70
  • 129
2
votes
1 answer

Microsoft.WindowsAzure.Storage: Server encountered an internal error without telling the root cause

Locally I have created with azurite a Blob Storage container and I can write/delete files with Storarge Explorer. This code starts fine but ends after a view seconds with unhandled exception using System.IO; using Microsoft.Azure.WebJobs; using…
user3732793
  • 1,699
  • 4
  • 24
  • 53
1
vote
1 answer

How can I use Azurite in a command line application?

For my unit tests I want to use Azurite to create & verify BLOBs. The instructions only show how to do this for an ASP.NET app. How can I do it for a command line app? I tried running Azurite from the command line and got this error: C:\Program…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
1
vote
1 answer

Send a azure queue message in a docker container to a queue triggered function in another docker container

It is really difficult to explain. I am not expert in docker. I will try it. I have 3 components: 1 container with Azurite 1 container with a queue function Microsoft Azure Storage Explorer in the host. I am using docker-compose.yml to reach my…
Simone
  • 2,304
  • 6
  • 30
  • 79
1
vote
1 answer

C# Azure WebJobs 3.x with Azurite in local development

With .NET Core the WebJobs are now a console application. The new Azure Storage Emulator is Azurite. The Visual Studio documentation about the azurite mentions only how to setup the start of azurite in Azure Functions and ASP.NET projects. Is there…
sschoof
  • 1,531
  • 1
  • 17
  • 24
1
vote
1 answer

azurite container not exposing ssl

I'm trying to setup azurite using these instructions, I see a number of others have been successful with this. I need to configure SSL (and eventually oauth) for my client app testing. The azurite container works fine without SSL, but when SSL is…
KarlP
  • 309
  • 3
  • 15
1
vote
2 answers

Run Azurite with Azure DevOps Pipelines on windows image

I'm trying to run and connect to azurite from Azure DevOps pipelines. This is how my pipeline looks like trigger: - '*' stages: - stage: 'test' displayName: 'test' jobs: - job: 'Build_job' displayName: 'Build job' …
1
vote
0 answers

How to authenticate to Azurite using pyspark?

I am building an application using two docker containers in the same network: mcr.microsoft.com/azure-storage/azurite jupyter/pyspark-notebook Here is my docker-compose file: version: "3.9" services: azurite: image:…
WoolfDall
  • 129
  • 1
  • 12
1
vote
1 answer

How do you run Azurite with oauth and a self signed certificate?

I'm trying to do some local testing using Azurite, which should enable me to do all the things I want to do against blob containers etc. I want to be able to used a managed identity as well and therefore use DefaultAzureCredential when creating the…
sr28
  • 4,728
  • 5
  • 36
  • 67
1
vote
2 answers

Pipeline hangs after starting Azurite

I used the following yml content. Used Azurite 3.15 and 3.9. But no luck. Then I tried as separate jobs. Still unable to pass the integration test. stages: - stage: Publish displayName: 'Build and Publish Artifacts' jobs: -…
1
vote
2 answers

Connect to Azurite from .NET App via Docker

I have a .NET 6 API (running in Docker), and Azurite (running in Docker). I'm trying to connect to Azurite from the .NET app using the .NET SDK, but am getting the following error in the Docker logs: System.AggregateException: Retry failed after 6…
RPM1984
  • 72,246
  • 58
  • 225
  • 350
1
vote
1 answer

Azurite docker image and CORS

I'm developing an Azure function application in C#. I'm trying to run the application locally and am having a large amount of difficulty around getting a file upload to work with Azurite. The application has a frontend written in Angular. It…
peinearydevelopment
  • 11,042
  • 5
  • 48
  • 76
1
vote
1 answer

Azure Blob Storage error in Django - Failed to establish a new connection: [Errno 111]

I am setting up a local Azure Blob Storage using Docker container & Docker-compose. However, when I start creating blob containers and uploading files it throws me the error as below. azure.common.AzureException: HTTPConnectionPool(host='127.0.0.1',…
David
  • 607
  • 1
  • 6
  • 19