gpt4 book ai didi

azure - 以编程方式对现有集合进行范围索引

转载 作者:行者123 更新时间:2023-12-03 01:10:18 25 4
gpt4 key购买 nike

我已经创建了一个包含集合的数据库。该集合有数千个预先存在的文档,如下所示。

{
"Town": "Hull",
"Easting": 364208,
"Northing": 176288,
"Longitude": -2.5168477762,
"Latitude": 51.4844052488,
}

我知道我需要使用范围类型对数据库建立索引,以便我可以对数据使用范围查询和 OrderBy 函数。

那么,如何使用 .NET SDK 以编程方式对预先存在的数据进行范围索引?

我想出了下面的代码。但是,它似乎无法查询集合。当我插入断点时,“数据库”在查询集合时包含 null。

        // Create an instance of the DocumentClient.
using (dbClient = new DocumentClient(new Uri(Properties.Settings.Default.EndpointUrl), Properties.Settings.Default.AuthorizationKey))
{
Database database = dbClient.CreateDatabaseQuery().Where
(db => db.Id == Properties.Settings.Default.databaseID).AsEnumerable().FirstOrDefault();
DocumentCollection collection = dbClient.CreateDocumentCollectionQuery(database.SelfLink).Where
(c => c.Id == Properties.Settings.Default.collectionID).ToArray().FirstOrDefault();

// If database type is not null then continue to range index the collection
if (collection != null)
{
stopsCollection.IndexingPolicy.IncludedPaths.Add(
new IncludedPath
{
Path = "/*",
Indexes = new System.Collections.ObjectModel.Collection<Index>
{
new RangeIndex(DataType.String) {Precision = 6},
new RangeIndex(DataType.Number) {Precision = 6}
}
}
);
}
else
{
Console.WriteLine(">> Unable to retrieve requested collection.");
}
}

最佳答案

如今,索引策略是一成不变的;因此您需要重新创建集合来更改索引策略(例如添加范围索引)。

如果您想以编程方式创建具有自定义索引策略的集合,则执行此操作的代码将如下所示:

var rangeDefault = new DocumentCollection { Id = "rangeCollection" };

rangeDefault.IndexingPolicy.IncludedPaths.Add(
new IncludedPath {
Path = "/*",
Indexes = new Collection<Index> {
new RangeIndex(DataType.String) { Precision = -1 },
new RangeIndex(DataType.Number) { Precision = -1 }
}
});

await client.CreateDocumentCollectionAsync(database.SelfLink, rangeDefault);

然后编写一些代码来从现有集合中读取数据并将数据写入新集合。

但这有点麻烦......

作为替代解决方案...我强烈建议使用 DocumentDB Data Migration Tool使用新索引策略创建新集合,并将数据从旧集合移动到新集合。迁移成功完成后,您可以删除旧集合。

您可以下载数据迁移工具here .

第 1 步:将 DocumentDB 定义为源:

DocumentDB Source

第 2 步:将 DocumentDB 定义为目标,并使用新的索引策略:

DocumentDB Target

提示:您可以右键单击索引策略输入框来选择索引策略

DocumentDB Indexing Policies

这将为您提供如下所示的索引策略:

{
"indexingMode": "consistent",
"automatic": true,
"includedPaths": [
{
"path": "/*",
"indexes": [
{
"kind": "Range",
"dataType": "Number",
"precision": -1
},
{
"kind": "Range",
"dataType": "String",
"precision": -1
}
]
},
{
"path": "/_ts/?",
"indexes": [
{
"kind": "Range",
"dataType": "Number",
"precision": -1
}
]
}
],
"excludedPaths": []
}

第 3 步:运行导入作业...

提醒:导入成功完成后删除旧集合。

关于azure - 以编程方式对现有集合进行范围索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31394760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com