azure-storage-blobs

Azure Blob video is not streaming

自作多情 提交于 2021-02-20 03:35:06
问题 I'm trying to stream my videos from Azure blob, but its not working actually. I checked through different sources and found something interesting to update the x-ms-version . But before doing that I checked it in cloudberry explorer, it says as below. But in browser it says x-ms-version as 2009 like below Anyway I tried updating the x-ms-version using setBlobProperties (Azure PHP SDK) but still its not updating. Am I missing something here? 回答1: Do you have access set to all on your blob

Azure Storage SAS AuthenticationFailed

倾然丶 夕夏残阳落幕 提交于 2021-02-19 07:54:05
问题 I have a private azure storage container and am trying out azure storage SAS, so that I can upload and download files. I am able to generate the signature, but it always throws me the Authentication Fail error AuthenticationFailed Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature. RequestId:a9dce486-0001-0021-23f7-d8f6dc000000 Time:2017-05-30T03:45:56.6617677Z Signature did not match. String to sign used was r

Improve axios get download speed

女生的网名这么多〃 提交于 2021-02-19 05:38:06
问题 I am using axios to download a file (~100MB) from an Azure Storage Blob. axios({ method: 'get', url: uri, onDownloadProgress: (progressEvent) => { console.log("Loaded: " + ((progressEvent.loaded / progressEvent.total) * 100) + "%"); }, responseType: 'arraybuffer' }).then({}) My problem is that it is taking quite a while to actually download the file (~10 minutes). I was previously using fetch() which was slower than this even (~15-20 minutes). Are there any recommendations you guys have on

Load balancing Azure Blob Storage

末鹿安然 提交于 2021-02-19 03:40:20
问题 Is there any way to load balance the Azure Blob Storage by just using Azure Load Balancer and the Blob Storage (without needing a service)? What I'm trying to achieve is to hit a load-balancer url like: https://load-balancer.somerandomazureurl.net Which will route the request to a blob container (with same contents) in either West Europe or Central US data centers depending on the location and the load. 回答1: You could not do that using Azure Load Balancer since it only could load incoming

Encrypting image data before uploading to azure blob storage

放肆的年华 提交于 2021-02-11 17:45:30
问题 I have the following code that uploads an image to Azure blob storage. I would like to encrypt the image data before uploading to the blob. I already have a helper class for encrypting and decrypting that I can use by calling AESEncryption.Encrypt("plainText", "key", salt"); I'm just trying to figure out how tom integrate my encryption method into the code. Also, I'm guessing that once it's encrypted instead of calling blob.UploadFromFile() I will be calling blob.UploadFromByteArray(). public

Code sync from Azure Scale Set VM To Azure Storage

|▌冷眼眸甩不掉的悲伤 提交于 2021-02-11 15:17:07
问题 I need help to rectify one trouble which i am facing, am hosting my application through Azure auto scale set feature (virtual machine scale set) , when it get huge hit it will automatically scale up and an reverse when hit down, for that i need to maintain a azure storage location as well, so while push the code i need to push the similar code to azure storage from one of the VM , if we have fixed VM name we can use azcopy to push code to azure store but since its auto scale i don't have

Code sync from Azure Scale Set VM To Azure Storage

孤街浪徒 提交于 2021-02-11 15:16:19
问题 I need help to rectify one trouble which i am facing, am hosting my application through Azure auto scale set feature (virtual machine scale set) , when it get huge hit it will automatically scale up and an reverse when hit down, for that i need to maintain a azure storage location as well, so while push the code i need to push the similar code to azure storage from one of the VM , if we have fixed VM name we can use azcopy to push code to azure store but since its auto scale i don't have

How to store email attach csv file content as variable in azure logic app

风格不统一 提交于 2021-02-11 14:54:30
问题 I get a csv file as email attachment.I need a way to read email attachment and save that attachment as variable or directly read the attach file content and get data or store in blob storage.( If csv file save in blob , how we can read it. ) note - This csv file has data about system processes.I want to get only yes process from the attach csv file and continue the integration. ex- onboarding process | yes billing process | no 回答1: For your requirement about " If csv file save in blob , how

Upload Zip Chunks and Join them on Azure Platform

两盒软妹~` 提交于 2021-02-11 14:30:00
问题 I want to know that.. If I make chunks of a big Zip file and upload all chunks on Azure Cloud Storage in Container Blobs. Can i Join these chunks on Azure Platform.? for chunking i am using this code which is also generating .bat file for rejoining the chunks.. public void SplitFile(){ int numericUpDown = 100;//in MB string PathToCopyChunks = ""; // path to store chunks and ( .bat ) file string FilePathMakeChunks = DirectoryNameToPutScannedData; //the path of file to make chunks. try{ int kbs

Upload Zip Chunks and Join them on Azure Platform

故事扮演 提交于 2021-02-11 14:29:58
问题 I want to know that.. If I make chunks of a big Zip file and upload all chunks on Azure Cloud Storage in Container Blobs. Can i Join these chunks on Azure Platform.? for chunking i am using this code which is also generating .bat file for rejoining the chunks.. public void SplitFile(){ int numericUpDown = 100;//in MB string PathToCopyChunks = ""; // path to store chunks and ( .bat ) file string FilePathMakeChunks = DirectoryNameToPutScannedData; //the path of file to make chunks. try{ int kbs