azure-storage

Why can't configure Azure diagnostics to use Azure Table Storage via new Azure Portal?

天涯浪子 提交于 2019-12-18 13:36:05
问题 I am developing a web api which will be hosted in Azure. I would like to use Azure diagnostics to log errors to Azure table storage. In the Classic portal, I can configure the logs to go to Azure table storage. Classic Portal Diagnostic Settings However in the new Azure portal, the only storage option I have is to use Blob storage: New Azure Portal Settings It seems that if I was to make use of a web role, I could configure the data store for diagnostics but as I am developing a web api, I

Best way to upload a blob with a huge size in GBs to azure in the fastest time [closed]

非 Y 不嫁゛ 提交于 2019-12-18 11:08:27
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . Please can someone suggest the best way to upload/download a video blob of multiple GBs size in the fastest possible time to azure storage? 回答1: I'm a Microsoft Technical Evangelist and I have developed a sample and free tool (no support/no guarantee) to help in these scenarios.

How Storage API can be used to get Azure Classic VM metrics?

巧了我就是萌 提交于 2019-12-18 09:18:07
问题 Can we collect metrics for Azure Classic VM using Storage API or is there any other way to get the metrics for Azure Classic VM please suggest. 回答1: To get the Azure VM metrics from a Azure Storage Service, you need to enable Diagnostics and configure the Storage Account on Azure portal. After that, you will find that multi tables will be created to store the metrics. The tables are with the following naming conventions: WADMetrics : Standard prefix for all WADMetrics tables PT1H or PT1M :

hosting fonts on azure cdn - CORS support

拥有回忆 提交于 2019-12-18 04:48:15
问题 I cannot get azure blob storage hosted fonts exposed via azure cdn working in IE or Firefox. I believe this is because of @font-face cross-domain issues (CORS) and the normal solution is to add an Access-Control-Allow-Origin header. I know that most CDNs now support this but am assuming that Azure still doesn't. Can anyone confirm this? If this is the case, are there any workarounds? 回答1: This is no longer true, azure supports CORS http://blogs.msdn.com/b/windowsazurestorage/archive/2013/11

Upload file with Azure Storage using SAS (Shared Access Signature)

ε祈祈猫儿з 提交于 2019-12-18 02:49:49
问题 I know that there is library available for uploading the file using Azure Storage. I have refer this for same. But, they have not give information for how to use SAS with that. I have account name, and sas url for access and upload file there. But I don't know how to use that for uploading file. If I use above mention library it shows me invalid storage connection string because I am not passing the key in it (Which is not required with sas). So I am confused how I can upload file. I have

CloudConfigurationManager.GetSetting returning null

与世无争的帅哥 提交于 2019-12-17 23:39:14
问题 Following instructions here I have: var connectionString = CloudConfigurationManager.GetSetting("StorageConnectionString"); But connectionString is null , here is my app.config: <?xml version="1.0" encoding="utf-8"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <connectionStrings> <add name="StorageConnectionString" connectionString="DefaultEndpointsProtocol=https;AccountName=storage;AccountKey=key" /> </connectionStrings> <runtime>

Generic class for performing mass-parallel queries. Feedback?

时光怂恿深爱的人放手 提交于 2019-12-17 22:43:04
问题 I don't understand why, but there appears to be no mechanism in the client library for performing many queries in parallel for Windows Azure Table Storage. I've created a template class that can be used to save considerable time, and you're welcome to use it however you wish. I would appreciate however, if you could pick it apart, and provide feedback on how to improve this class. public class AsyncDataQuery<T> where T: new() { public AsyncDataQuery(bool preserve_order) { m_preserve_order =

Where can I find my Azure account name and account key?

假如想象 提交于 2019-12-17 17:53:04
问题 I am starting with Windows Azure. I have an Azure account with Microsoft and would like to use it from my Visual Studio project In the Azure management portal, I can see the primary access key and secondary access key. However Visual Studio needs the account name and account key. Are these related or am I missing something? If so, how can I get my account name and account key from the Azure management portal? 回答1: If you're referring to a Windows Azure Storage account, the storage account

Difference between new and classic storage accounts in Azure

荒凉一梦 提交于 2019-12-17 17:52:59
问题 Azure has Storage accounts and Storage accounts (classic) in the Azure Portal. What are the differences between them? Is there any reason to migrate from a classic storage account to a new storage account? 回答1: Classic storage accounts are created using existing Service Management API's (the REST API stack that's been available for the past several years). The newer storage accounts are created with the new Azure Resource Manager (ARM) API's (which are also wrapped in PowerShell and CLI now).

Play 2.x : Reactive file upload with Iteratees

隐身守侯 提交于 2019-12-17 15:15:30
问题 I will start with the question: How to use Scala API's Iteratee to upload a file to the cloud storage (Azure Blob Storage in my case, but I don't think it's most important now) Background: I need to chunk the input into blocks of about 1 MB for storing large media files (300 MB+) as an Azure's BlockBlobs . Unfortunately, my Scala knowledge is still poor (my project is Java based and the only use for Scala in it will be an Upload controller). I tried with this code: Why makes calling error or