Forum Widgets
Latest Discussions
Azure Table Storage not accessable
Since yesterday, 6th February 2025, access from Excel to Azure Tables with Entra User is no longer possible. The Storage Account Logs shows AuthenticationErrors. In Excel, access to the Storage Account is done via: https://saname.table.core.windows.net Access to the SA is done with Entra User. The users have the permission as Storage Table Data Reader. We tested various storage accounts and locations but encountered the same issue. Access via Azure Explorer, is still possible without any issues.lboeFeb 08, 2025Copper Contributor50Views0likes1CommentAzure file Share Performance issue
Hi Team, I have recently migrate on-premise file server to Azure file share and setup AD authentication. It's public endpoint but we i am copied like 6 GB data then it was taken more then 2 hours even my internet bandwidth very good. I have setup hot tier but still performance is remain the same. support team is also not able to provide proper resolution.pk_TechFeb 03, 2025Copper Contributor51Views0likes3Commentshow can we give access to specific folder only within blob in azure storage account container
I am trying to grant access to specific folder and its contents within a blob in a container. I have tried using ACL and SAS URLs but it gives access to whole container.Zer0cool114Jan 21, 2025Copper Contributor164Views0likes3CommentsStorage Account, grant SAS tokens but not Entra ID
Hi there, I was playing with Entra and storage account, and I do have permissions in my subscription to generate SAS tokens for sharing access. But when I'm trying to grant Entra ID accesses. that seems to be blocked: Just wondering how I could set the access tokens, but not granting access. What could be the missing role I'm not having?Petri-XJan 06, 2025Bronze Contributor220Views0likes2CommentsAzure NetApp Files | Azure cli command to suspend/resume backup at volume level
I'm looking for the corresponding azure cli for the following action suspend a backup policy for a specific volume I do see a cli (at policy level) az netappfiles account backup-policy update, which has got the following parameter [--enabled {0, 1, f, false, n, no, t, true, y, yes}] The property to decide policy is enabled or not. Accepted values: 0, 1, f, false, n, no, t, true, y, yes But this is at the netapp account > policy level I'm unable to find the azure cli to do this at specific volume level. Is there a cli for this action at Volume level in the Configure Backups dialog box > Policy State { Suspend/Resume}, how shall we achieve this if we have programmatically do this step.DurgalakshmiSivadasDec 10, 2024Copper Contributor58Views0likes2CommentsWhy is element in the queue deleted even if the function throws an exception?
I write an Azure Function with a queue trigger and i want to send the data to the backend service if the backend service is avaiable and if not available then the element should still be in the queue. My question is how can i achieve this? my code and host.json looks like this ? [Function("QueueCancellations")] public async Task<IActionResult> QueueCancellation([QueueTrigger("requests", Connection = "ConnectionStrings:QUEUE_CONNECTION_STRING")] string message) { try { using (var httpClient = new HttpClient()) { var content = new StringContent(message, Encoding.UTF8, "application/json"); var httpResponse = await httpClient.PostAsync(_configuration["LOCAL_SERVICE_URL_CANCELL"], content); if (httpResponse.IsSuccessStatusCode) { return new OkObjectResult("Data sent to backend"); } else { return new BadRequestObjectResult("Backend not available"); } } } catch (Exception ex) { _logger.LogError(ex.Message); return new BadRequestObjectResult("Backend not available"); } } { "version": "2.0", "logging": { "applicationInsights": { "samplingSettings": { "isEnabled": false, "excludedTypes": "Request" }, "enableLiveMetricsFilters": true } }, "logLevel": { "default": "Information", "Host.Results": "Information", "functions": "Information", "Host.Aggregator": "Information" }, "extensions": { "queues": { "maxPollingInterval": "00:00:02", "visibilityTimeout": "00:00:30", "batchSize": 16, "maxDequeueCount": 5, "newBatchThreshold": 8, "messageEncoding": "base64" } } }akin_kNov 04, 2024Copper Contributor136Views0likes1CommentAdvise on upload processing
Hello, I am here to seek some advise regarding the architecture of an application. It is written in .net. The application has a part where tenants can upload fotos into their account (blob storage). They can do that either via Web UI or by connecting an uploader application (like Azure Storage Explorer). Each tenant basically has some kind of image-inbox. Those uploaded images need to be processed afterwards. It is worth to mention that we use Aspire and Azurite when developing. My issue starts with the processing of those images. First I was using azure functions to process those images and they have been triggered by storage blob events. This worked but was kind of slow. When we installed Aspire it was even not possible to use Azure Functions anymore. This was the time when we removed Azure Functions and created our own "Worker" application. This application polled the Azure Blob Storage and if there were images started a sub-worker per tenant to process those files. This was already much faster and more reliable. But after deploying to production we quickly found out, that the cost sky-rocketed due to the polling. I then looked into then new GetChangeFeedClient approach which seems to be a less expensive version to get informed about new data in the blob storage. I developed that just to find out, that it is not supported in Azurite, thus we can not even run in locally. At this point I do not even understand why Azurite does not support all of the Azure features. How can anyone develop something without a simulator? Anyway this seems to be a dead end. I also thought about Azure Event Grid but that is also not supported on Azurite. At this point I am not sure what to do. Should I wait for .net 9 and go back to Azure Functions because they will be supported and will I live with the slow processing and overhead? Or should I ditch Azure Blob Storage and find another storage solution? Any advise is appreciated...andreas1415Nov 03, 2024Copper Contributor90Views0likes2Commentsdisk size on azure wrong size in ubuntu
I create an Azure VM running Ubuntu. I added permanent storage of 64GB: Size 64 GiB Storage type Premium SSD LRS IOPS 240 Throughput (MBps) 50 Disk tier P6 However from within Linux it shows as 8GB df -h /dev/sdb1 Filesystem Size Used Avail Use% Mounted on /dev/sdb1 7.8G 28K 7.4G 1% /mnt any ideas what is wrong ? Thanks PeterwpyungOct 24, 2024Copper Contributor143Views0likes1CommentAzure Premium disk host caching
I have a Zabbix application which is writing and reading from PostgreSQL DB. The PostgreSQL DB is installed in a azure VM with premium SSD data disk. Should I change the host cache on data disk to read/write, will it have any issues. Currently its in read only optionemiljjOct 14, 2024Copper Contributor166Views0likes1CommentAzure File Share : Unable to mount Azure file share when executing docker-compose
I am trying to set up a container service locally that mounts an Azure file share as its extended storage. However, I am encountering an error despite verifying the keys and storage name. Here is the error message I am receiving. [error] Error response from daemon: failed to populate volume: error while mounting volume '/mnt/cloudstor/ipfs-docker_ipfs-azure': VolumeDriver.Mount: mount failed: exit status 32 output="mount error(13): Permission denied\nRefer to the mount.cifs(8) manual page (e.g. man mount.cifs)\nmount error(13): Permission denied\nRefer to the mount.cifs(8) manual page (e.g. man mount.cifs)\nmount: mounting //fileshare.file.core.windows.net/ipfs-share on /mnt/cloudstor/ipfs-docker_ipfs-azure failed: Permission denied\njamesterzzzzzzOct 14, 2024Occasional Reader228Views0likes2Comments
Resources
Tags
- azure blob storage22 Topics
- azure blob13 Topics
- Azure Files8 Topics
- storage explorer6 Topics
- azure backup6 Topics
- Azure Data Lake4 Topics
- Queue Storage3 Topics
- Azure Archive3 Topics
- updates2 Topics
- azure expressroute1 Topic