我在 StackOverflow 上看到了一堆答案,指出微软的 Cosmosdb 根本不支持获取分区键列表。这一直困扰着我,因为它似乎是任何数据存储的第一个要求,获取逻辑分区名称和大小的列表 - 任何其他数据存储都会给你诸如表大小之类的东西,我不敢相信微软将把它关掉。
我不认为他们会这样做,所以它一定不能被记录(或至少记录良好)。在以下代码中:
var client = new DocumentClient(
endpoint,
authKey
Database db = client.CreateDatabaseQuery().Where(d => d.Id == databaseName).AsEnumerable().FirstOrDefault();
//Sure is a lot of verbose faff. Have to keep specifying things you've already basically specified when you initialized the client...
var collection = client.CreateDocumentCollectionQuery(databaseSelfLink).Where(c => c.Id == myCollectionName).ToArray().FirstOrDefault();
//This yields "/$pk" in the value - so I guess there's just one path,
//but I still have a lot of distinct values in that path.
//I try a DocumentQuery next to drill down.
var partitionKeys = collection.PartitionKey.Paths;
var querySpec = new SqlQuerySpec("SELECT DISTINCT c.PartitionKey FROM c");
var test = client.CreateDocumentQuery(collection.SelfLink, querySpec);
当我在最后一行之后断点并查看测试对象时,我看到它有 ak 子对象,每个子对象都有一个整数值。我不确定这些是什么,但它们可以是分区和大小吗?有没有更好的方法将它们拉出来?