Skip to content

Commit a28a3fc

Browse files
enjaimessarangan12
authored andcommitted
Add maxComplexObjectsInCollectionsPerDocument to ServiceStats limits (#6721)
1 parent 6916d18 commit a28a3fc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/examples/SearchServiceGetServiceStatistics.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"limits": {
3737
"maxFieldsPerIndex": 1000,
3838
"maxFieldNestingDepthPerIndex": 10,
39-
"maxComplexCollectionFieldsPerIndex": 100
39+
"maxComplexCollectionFieldsPerIndex": 100,
40+
"maxComplexObjectsInCollectionsPerDocument": 3000
4041
}
4142
}
4243
}

specification/search/data-plane/Microsoft.Azure.Search.Service/stable/2019-05-06/searchservice.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5290,6 +5290,12 @@
52905290
"format": "int32",
52915291
"x-nullable": true,
52925292
"description": "The maximum number of fields of type Collection(Edm.ComplexType) allowed in an index."
5293+
},
5294+
"maxComplexObjectsInCollectionsPerDocument": {
5295+
"type": "integer",
5296+
"format": "int32",
5297+
"x-nullable": true,
5298+
"description": "The maximum number of objects in complex collections allowed per document."
52935299
}
52945300
},
52955301
"description": "Represents various service level limits."

0 commit comments

Comments
 (0)