azure-table-storage

Azure Storage Library Client on Windows 10 Iot/UWP?

梦想的初衷 提交于 2019-12-13 15:40:21
问题 It appears that the Azure Storage Client is not supported on Windows 10 Iot-Core/UWP (RPi). However, I am using it for Blobs, and it also used to work fine for Tables. Now, after an update to the latest stable (and -pre, tried both) the access to Tables hangs at await table.ExecuteQuerySegmentedAsync(query, new TableContinuationToken()); I searched in vain for a way to make this synchronous, which would, at the least, help me debug it. I also am wondering about the current success of others

Email alert Azure table storage

人盡茶涼 提交于 2019-12-13 09:52:06
问题 I am sending sensor data to azure table storage. I want to send an email if a value in a column is less than a particular value. please find the attached images -If a value in GPIOPin column is less than 7 then an email alert has to be sent. Could someone please guide how to proceed? I have tried with Logic apps but I am not understanding how to provide a condition there. 回答1: AFAIK, Logic Apps do not support Triggers for Azure Table Storage for now. You could add your feedback here. Based on

Can I use Shared Hosting with Azure with Amazon

杀马特。学长 韩版系。学妹 提交于 2019-12-13 04:36:32
问题 Is it possible to use shared hosting with a web hosting provider along with Images on Amazon S3 Cloud provider? Is it also possible to have a shared hosting with a web hosting provider along with Azure Blob/Azure Table storage? The benefit is the low cost that I need to pay Will Cross site origin policy be an issue? 来源: https://stackoverflow.com/questions/51462377/can-i-use-shared-hosting-with-azure-with-amazon

Azure Data Factory Expression Query for Copy activity

此生再无相见时 提交于 2019-12-13 03:24:52
问题 I am trying to copy data from Table storage to another Table storage of a different storage account, for that, I am using Copy activity in Azure data factory. I want to filter rows that are going to be copied to the sink table storage, for that Azure data factory gives an option to define a query. I want to apply a filter on the Partition key whose datatype is String but holds numeric values. I am looking at this documentation: https://docs.microsoft.com/en-us/azure/devops/pipelines/process

About Azure Table Secondary Index

你说的曾经没有我的故事 提交于 2019-12-13 00:04:19
问题 I know the Secondary Index(s) is not here yet: It's in wish list and "planed" I like to get some ideas (or information from the reliable source) about the incoming secondary index(s) 1st question : I noticed MS planed "secondary indexes ": is that mean we can create as many indexes as we want on one table 2nd question : Current index is " PartitionKey+RowKey ", if above question is not true, will the secondary index be " RowKey+PartitionKey " or we have a good chance that we can customize it?

Azure Table Storage - How much data am I using?

我们两清 提交于 2019-12-12 19:35:57
问题 Anyone know how i can identify how much data I'm storing in each table within each of my storage accounts? I know i can get the overall data used for all my storage accounts but I'm trying to figure how much each table is using. I don;t think Azure offers anything out of the box but how would I go about creating something to figure this out? 回答1: There are two ways by which you can fetch the size of all tables in your storage account. Option 1: Time Consuming Way Please refer to this

Azure table storage continuation tokens in Node js

浪子不回头ぞ 提交于 2019-12-12 18:47:07
问题 I am trying to implement the continuation tokens in Azure table storage with the help of following link, https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-nodejs Below is my code, var nextContinuationToken = null; var query = new azure.TableQuery() .select([req.query.DataToShow, 'Timestamp']) .where('Timestamp ge datetime? and Timestamp lt datetime? and deviceId eq ?', from, to, deviceSelected); tableSvc.queryEntities('outTable', query, nextContinuationToken, {

log exceptions from log4net to azure table storage in azure function

余生长醉 提交于 2019-12-12 18:29:58
问题 I am referring this link to log exceptions from log4net to azure table storage. Now i need to do the same in azure functions in .net core, but since there is no config files in azure functions am not able to use the same there. Any help appreciated to get any reference on this. 回答1: Now i need to do the same in azure functions in .net core, but since there is no config files in azure functions am not able to use the same there? Seems you are trying to read some property what we usually read

How to use SAS on StorageCredentials for Azure Table Storage?

廉价感情. 提交于 2019-12-12 18:27:22
问题 I create a SAS on a given table, using the .NET API: var tablePolicy = new SharedAccessTablePolicy() { SharedAccessExpiryTime = DateTime.Now.Add(TimeSpan.FromHours(2)), Permissions = SharedAccessTablePermissions.Query }; var permissions = new TablePermissions(); permissions.SharedAccessPolicies.Add("myPolicy", tablePolicy); var credentials = new StorageCredentials( "#my account here#", "#my account secondary key here#"); var tableClient = new CloudTableClient( new Uri("https://#my account

Windows Azure Storage Table connection timed out

点点圈 提交于 2019-12-12 17:36:20
问题 When running a service for a long time (a couple of days) I receive a connection timeout exception from Windows Azure Table Storage. Even the get table api returns this exception. Why does it occur and how can I solve this? 回答1: In addition to Gaurav's answer, the other common cause of this issue is port exhaustion. See http://blogs.msdn.com/b/windowsazurestorage/archive/2013/08/08/net-clients-encountering-port-exhaustion-after-installing-kb2750149-or-kb2805227.aspx for more information. 回答2: