Skip to content

Fix IndicesMappingLimitSettings #2588

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2024
Merged
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
10 changes: 5 additions & 5 deletions specification/indices/_types/IndexSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export class MappingLimitSettingsTotalFields {
* degradations and memory issues, especially in clusters with a high load or few resources.
* @server_default 1000
*/
limit?: integer
limit?: long
}

export class MappingLimitSettingsDepth {
Expand All @@ -437,7 +437,7 @@ export class MappingLimitSettingsDepth {
* at the root object level, then the depth is 1. If there is one object mapping, then the depth is 2, etc.
* @server_default 20
*/
limit?: integer
limit?: long
}

export class MappingLimitSettingsNestedFields {
Expand All @@ -447,7 +447,7 @@ export class MappingLimitSettingsNestedFields {
* setting limits the number of unique nested types per index.
* @server_default 50
*/
limit?: integer
limit?: long
}

export class MappingLimitSettingsNestedObjects {
Expand All @@ -456,7 +456,7 @@ export class MappingLimitSettingsNestedObjects {
* to prevent out of memory errors when a document contains too many nested objects.
* @server_default 10000
*/
limit?: integer
limit?: long
}

export class MappingLimitSettingsFieldNameLength {
Expand All @@ -473,7 +473,7 @@ export class MappingLimitSettingsDimensionFields {
* [preview] This functionality is in technical preview and may be changed or removed in a future release.
* Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
*/
limit?: integer
limit?: long
}

export class SlowlogSettings {
Expand Down
Loading