Azure 搜索 Azure SQL 数据库集成
Azure Search Azure SQL Database Integration
我目前正在尝试将 Azure 搜索集成到我的 Azure SQL 数据库中以启用空间搜索。在我的索引中有一个类型为 Edm.GeographyPoint 的字段。 Sql 数据库的列类型应该是什么?因为地理类型不起作用。
此外,我的数据源的datachange字段是这样的:
"dataChangeDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
"highWaterMarkColumnName" : "RowLastVersion"
},
"dataDeletionDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
"softDeleteColumnName" : "Deleted",
"softDeleteMarkerValue" : "0"
}
我还需要为自动索引做些什么吗?因为这些也不起作用。
Azure 搜索是一个完美的 api。但是,缺少我们可以使用的文档。
原来索引器计划的开始时间设置在未来。使用按预期索引的 /运行 调用索引器。
我目前正在尝试将 Azure 搜索集成到我的 Azure SQL 数据库中以启用空间搜索。在我的索引中有一个类型为 Edm.GeographyPoint 的字段。 Sql 数据库的列类型应该是什么?因为地理类型不起作用。
此外,我的数据源的datachange字段是这样的:
"dataChangeDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
"highWaterMarkColumnName" : "RowLastVersion"
},
"dataDeletionDetectionPolicy" : {
"@odata.type" : "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
"softDeleteColumnName" : "Deleted",
"softDeleteMarkerValue" : "0"
}
我还需要为自动索引做些什么吗?因为这些也不起作用。
Azure 搜索是一个完美的 api。但是,缺少我们可以使用的文档。
原来索引器计划的开始时间设置在未来。使用按预期索引的 /运行 调用索引器。