azure-storage-blobs

Image files sync in Azure Mobile Apps for Android

狂风中的少年 提交于 2019-12-23 05:46:09
问题 Sorry if this question does not contain any code. I am building an Android app using Azure Mobile Apps. I am successfully following the sample with the TodoList . The sample describes the case for data sync, but what if I want to add support for images sync? Do I have to save the image files as blob inside the database? Do I treat files as any other record in the db, or is there a better way? Do I have to use a service other than "Mobile Apps"? I've also read the following instructions about

How to download a blob file from Azure Storage and save it to an FTP server using Powershell?

偶尔善良 提交于 2019-12-23 05:16:22
问题 I am trying to access a blob file in PowerShell and want to save it directly to an FTP server. How can this be done? Can this be done via the blob file URL? Or can I somehow have the file created in Powershell memory and then use $webclient.UploadFile to save it to FTP folder? Another question related to this same download is that is there a way to just copy the file instead of getting the subdirectories copied as well? For example, I have a blob file like: dataload/files/my_blob_file. When I

Is there a way to continuously pipe data from Azure Blob into BigQuery?

Deadly 提交于 2019-12-23 04:59:42
问题 I have a bunch of files in Azure Blob storage and it's constantly getting new ones. I was wondering if there is a way for me to first take all the data I have in Blob and move it over to BigQuery and then keep a script or some job running so that all new data in there gets sent over to BigQuery? 回答1: BigQuery offers support for querying data directly from these external data sources: Google Cloud Bigtable , Google Cloud Storage , Google Drive . Not include Azure Blob storage. As Adam Lydick

Can you create a SQL Azure BACPAC from a Remote C# Application

送分小仙女□ 提交于 2019-12-23 03:57:05
问题 I'm working on a tool to allow backup and restore of SQL Azure databases between various local & azure environments. I have a working version where the BACPAC is created and directly streamed to my Local Developer machine. But I haven't been able to find a way to create the bacpac and store it directly in Blob Storage using a remote client. Any of the examples I've seen either Stream the backup to the local PC, and then re-upload it to Blob Storage OR Rely on having a worker role deployed on

Can you create a SQL Azure BACPAC from a Remote C# Application

回眸只為那壹抹淺笑 提交于 2019-12-23 03:57:05
问题 I'm working on a tool to allow backup and restore of SQL Azure databases between various local & azure environments. I have a working version where the BACPAC is created and directly streamed to my Local Developer machine. But I haven't been able to find a way to create the bacpac and store it directly in Blob Storage using a remote client. Any of the examples I've seen either Stream the backup to the local PC, and then re-upload it to Blob Storage OR Rely on having a worker role deployed on

publish video on azure media services

半世苍凉 提交于 2019-12-23 01:54:46
问题 I've managed to upload an MP4 file to the BLOB container associated with my Azure media services account. I want to know if my next course of action should be to try and publish the video? if so how would I do that by referencing the BLOB where the video is stored. Could someone show me an example of how this is done? 回答1: Azure Media Services will create an asset entity and link that to the blob container you are using to upload asset files. By publishing the asset, our streaming service

Azure PHP SDK: download container's all blob in a single zip file

非 Y 不嫁゛ 提交于 2019-12-22 16:13:06
问题 I want to download all blob from specified container as a zip file. Is there any way to download its as zip directly from Azure, no need to process it on my server? Currently I think like below: file_put_contents("file_name", get_file_contents($blob_url)); I will store all files on my server and then create zip file of those and then will force to download. . 回答1: Azure has no such facility to generate a zip file for a bundle of blobs for you. Azure Storage is just... storage. You'll need to

Iterating all blobs in a container using Azure Function

和自甴很熟 提交于 2019-12-22 12:28:25
问题 I've got an existing Azure Function that unzips a file and adds each file as a blob. I now want to iterate these files and execute them (they are SQL files). I don't want to trigger a Function based on blob creation but rather run through them all in a single Function. In a Function, how do I iterate a list of blobs in a container and get their contents? Thanks 回答1: how do I iterate a list of blobs in a container and get their contents? According to your description, I suggest you could use

Using asp.net WebService & Android to upload Image to Azure Blob Storage?

我是研究僧i 提交于 2019-12-22 12:15:46
问题 I'm trying to upload a selected image to Azure Blob from my Android device through a asp.net WebService I've made. But I get an orange error in android: "W/System.err(454): SoapFault - faultcode: 'soap:Server' faultstring: 'Server was unable to process request. ---> Object reference not set to an instance of an object.' faultactor: 'null' detail: org.kxml2.kdom.Node@4205f358 " I'm not sure if it's my Java code or WebService witch is wrong... Here is both codes: WebService: [WebMethod] public

Cut videos from Azure Blob Storage

佐手、 提交于 2019-12-22 11:28:28
问题 I have a web app that is hosted in Azure; one of it's functionalities is to be able to make a few cuts from the video(generate 2 or 3 small videos of 5-10 seconds from a larger video). The videos are persisted in Azure Blob Storage. How do you suggest to accomplish this in the Azure environment? The actual cutting of the videos will be initiated by a web job. I'm also concerned about the pricing(within the Azure environment), I'm taking into account the possibility of high traffic. Any