Azure Table 存储 TableContinuationToken NextTable名称用途

Azure Table Storage TableContinuationToken NextTableName purpose

有时有人说,当使用 Azure Tables 时,实际上存在第三个关键分区数据 - Table 名称本身。

我在执行分段查询时注意到 TableContinuationToken 有一个 NextTableName 属性。这个属性的目的是什么?如果一个查询可以跨越多个表,它可能会有用吗?

如果响应无法返回完整结果,则用于分段查询。

引用自 https://docs.microsoft.com/en-us/rest/api/storageservices/query-tables :

A query against the Table service may return a maximum of 1,000 tables at one time and may execute for a maximum of five seconds. If the result set contains more than 1,000 tables, if the query did not complete within five seconds, or if the query crosses the partition boundary, the response includes a custom header containing the x-ms-continuation-NextTableName continuation token. The continuation token may be used to construct a subsequent request for the next page of data. For more information about continuation tokens, see Query Timeout and Pagination.