Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@
},
"limits": {
"maxFieldsPerIndex": 1000,
"maxIndexerRunTime": "PT1M",
"maxFileExtractionSize": 16777216,
"maxFileContentCharactersToExtract": 32768
"maxFieldNestingDepthPerIndex": 10,
"maxComplexCollectionFieldsPerIndex": 100
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down