问题标签 [azure-table-storage]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
2559 浏览

azure - 如何将数组的内容存储在表存储中

我需要将数组的内容存储到 Azure 表存储中。该数组将有 0 到 100 个条目。我不想创建 100 个不同的元素,所以有没有办法可以打包数组、存储它并在以后解包。任何例子将不胜感激。我只是不知道从哪里开始:-(

0 投票
1 回答
2713 浏览

azure - Are there any limits on the number of Azure Storage Tables allowed in one account?

I'm currently trying to store a fairly large and dynamic data set.

My current design is tending towards a solution where I will create a new table every few minutes - this means every table will be quite compact, it will be easy for me to search my data (I don't need everything in one table) and it should make it easy for me to delete stale data.

I've looked and I can't see any documented limits - but I wanted to check:

  • Is there any limit on the number of tables allowed within one Azure storage account?
  • Or can I keep adding potentially thousands of tables without any concern?
0 投票
5 回答
6507 浏览

azure - 将对象更新到 Azure 表存储 - 有没有办法获得新的时间戳?

我正在使用 StorageClient 库更新 AzureTableStorage 中的对象

当我这样做时,有没有办法在obj不向服务器发出另一个请求的情况下获取新的时间戳?

谢谢

斯图尔特

0 投票
2 回答
1532 浏览

c# - Azure 表存储

天蓝色表存储到底是什么,我如何才能很好地使用它,我的意思是我需要指定什么或在实现中使用的体系结构来定义 Azure 表存储的使用?

0 投票
2 回答
1336 浏览

azure-table-storage - 查询 Azure 表存储的分区键

我知道天蓝色表存储中的记录由 PartitionKey 组织并由 RowKey 索引。我的应用程序要求我根据时间戳的日期范围查询表存储中的记录。我在表存储中有几千条记录,自然性能非常慢。原因是,TimeStamp 没有被索引。据我了解,PartitionKey 本质上是时间戳记的转换。如果我错了,请纠正我。

如果这是真的,我如何在 PartitionKey 而不是 TimeStamp 字段上查询表存储并提高性能。

0 投票
2 回答
423 浏览

silverlight - Silverlight 访问 Azure 表 REST - clientaccesspolicy.xml?

是否可以让 Silverlight 客户端应用程序直接访问 Azure 表服务 REST 端点?撇开关于如何在不泄露共享访问密钥的情况下签署请求的担忧,Silverlight 不会访问 Table 端点,因为 clientaccesspolicy.xml 和 crossdomain.xml 都不存在于 Table URI 的根目录中。

除了通过我的 Web 服务器代理所有数据或以提升的权限运行 OOB 之外,还有什么办法可以解决这个问题?

0 投票
2 回答
1230 浏览

azure-table-storage - 不使用 LINQ 查询 Azure 表存储

有没有办法在没有 linq 的情况下查询 Azure 表存储?

我想在字符串上使用 >=、<=、<、> 运算符,当然 linq 不允许我这样做。

为了。例如:我无法在 linq 中执行以下表达式,因为我的 PartitionKey 是一个字符串。

0 投票
4 回答
7679 浏览

azure - Azure 表存储 - 实体设计最佳实践问题

我正在编写一个“概念证明”应用程序,以调查在对整个应用程序进行必要的重写期间将定制的 ASP.NET 电子商务系统移至 Windows Azure 的可能性。

我很想将 Azure 表存储用作 SQL Azure 的替代方案,因为随着应用程序的进一步成熟,所存储的实体可能会随着时间的推移更改其架构(属性),而且我不需要进行无休止的数据库架构更改。此外,我们可以将引用完整性构建到应用程序代码中——因此考虑 Azure 表存储的情况非常强大。

目前我能看到的唯一潜在问题是我们做了少量的简单报告——即两个日期之间的销售额、特定产品的销售数量等。我知道表存储不支持聚合类型的函数,我相信我们可以通过巧妙地使用分区、多种实体类型来存储相同数据的子集以及可能的预聚合来实现我们想要的,但我不能 100% 确定如何去做。

有谁知道有关 Azure 表存储设计原则的任何深入文档,以便我们正确有效地使用表、PartitionKeys 和实体设计等。

周围有一些简单的文档,当前可用的书籍往往不会深入探讨这个主题。

仅供参考 - 该电子商务网站拥有约 25,000 名客户,每年接受约 100,000 份订单。

0 投票
3 回答
19903 浏览

wcf - 如何为 Dummies 筛选 Azure 日志或 WCF 数据服务筛选器

我正在 WADLogsTable 中查看我的 Azure 日志,并想过滤结果,但我不知道该怎么做。有一个文本框说:

“输入 WCF 数据服务筛选器以限制返回的实体”

“WCF 数据服务过滤器”的语法是什么?以下给我一个 InvalidValueType 错误,说“指定的值无效。”:

我什至接近吗?某处有方便的语法参考吗?

0 投票
1 回答
395 浏览

wcf - Azure 表存储的 WCF 数据服务

我想将 WCF 数据服务 (OData) 用于 Azure 表存储。如果是,是否可以先用于表存储。所以请告诉我需要执行的步骤。