From 8e76a01cd4162afa9be7067c72b8d1fd1f67cb29 Mon Sep 17 00:00:00 2001 From: Nati Nimni Date: Thu, 5 Apr 2018 16:49:05 -0700 Subject: [PATCH 1/2] Azure Search: Removing indexer related limits from service statistics API --- .../2016-09-01-preview/searchservice.json | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json index 9e211e817d7e..a7eec987031f 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/searchservice.json @@ -4066,24 +4066,6 @@ "x-nullable": true, "description": "The maximum allowed fields per index." }, - "maxIndexerRunTime": { - "type": "string", - "format": "duration", - "x-nullable": true, - "description": "The maximum time an indexer will run in a single execution. In the next run, indexing will resume at the point where it stopped." - }, - "maxFileExtractionSize": { - "type": "integer", - "format": "int64", - "x-nullable": true, - "description": "When using a blob indexer, if the size in bytes of a blob's content is larger than this size, it results in an error." - }, - "maxFileContentCharactersToExtract": { - "type": "integer", - "format": "int32", - "x-nullable": true, - "description": "The maximum number of characters extracted from a blob when using a blob indexer. If a blob has more content, it is not indexed and a warning is added to the indexer execution result." - }, "maxFieldNestingDepthPerIndex": { "type": "integer", "format": "int32", From 5de65f20d2360b237e186db04941acbb4eb152cf Mon Sep 17 00:00:00 2001 From: Nati Nimni Date: Fri, 6 Apr 2018 08:59:12 -0700 Subject: [PATCH 2/2] Azure Search: Updating service statistics API example --- .../examples/SearchServiceGetServiceStatistics.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json index 663ed4c8f849..107a24402cdf 100644 --- a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json +++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetServiceStatistics.json @@ -34,9 +34,8 @@ }, "limits": { "maxFieldsPerIndex": 1000, - "maxIndexerRunTime": "PT1M", - "maxFileExtractionSize": 16777216, - "maxFileContentCharactersToExtract": 32768 + "maxFieldNestingDepthPerIndex": 10, + "maxComplexCollectionFieldsPerIndex": 100 } } }