-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Increase max number of dimensions from 16 to 21 #95340
Merged
salvatore-campagna
merged 12 commits into
elastic:main
from
salvatore-campagna:feature/increase-dimensions-limit
Apr 20, 2023
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
197377e
fix: increase max number of dimensions from 16 to 21
salvatore-campagna 97a131f
fix: checkstyle format violation
salvatore-campagna ee7abd3
fix: tests using previous dimension fields limits
salvatore-campagna 221adaf
fix: always use 21 as dimension limit
salvatore-campagna 9b3e023
chore: remove unnecessary braces
salvatore-campagna 7549da3
fix: restore value limit to 1024
salvatore-campagna 81e8705
fix: restore value limit to 1024
salvatore-campagna 258a06f
fix: test default number of dimensions
salvatore-campagna 0aa622e
Merge branch 'elastic:main' into feature/increase-dimensions-limit
salvatore-campagna 7947a71
fix: use Integer instead of int
salvatore-campagna 164bfa3
fix: use null instead of 0
salvatore-campagna 965ecc3
Merge branch 'main' into feature/increase-dimensions-limit
salvatore-campagna File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
181 changes: 181 additions & 0 deletions
181
...nalClusterTest/java/org/elasticsearch/timeseries/support/TimeSeriesDimensionsLimitIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
package org.elasticsearch.timeseries.support; | ||
|
||
import org.elasticsearch.action.index.IndexResponse; | ||
import org.elasticsearch.cluster.metadata.IndexMetadata; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.core.CheckedConsumer; | ||
import org.elasticsearch.index.IndexMode; | ||
import org.elasticsearch.index.IndexSettings; | ||
import org.elasticsearch.index.mapper.DocumentParsingException; | ||
import org.elasticsearch.index.mapper.MapperService; | ||
import org.elasticsearch.rest.RestStatus; | ||
import org.elasticsearch.test.ESIntegTestCase; | ||
import org.elasticsearch.xcontent.XContentBuilder; | ||
import org.elasticsearch.xcontent.json.JsonXContent; | ||
|
||
import java.io.IOException; | ||
import java.time.Instant; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.function.Supplier; | ||
|
||
import static org.hamcrest.Matchers.equalTo; | ||
|
||
public class TimeSeriesDimensionsLimitIT extends ESIntegTestCase { | ||
|
||
public void testDimensionFieldNameLimit() throws IOException { | ||
int dimensionFieldLimit = 21; | ||
final String dimensionFieldName = randomAlphaOfLength(randomIntBetween(513, 1024)); | ||
createTimeSeriesIndex(mapping -> { | ||
mapping.startObject("routing_field").field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
mapping.startObject(dimensionFieldName).field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
}, | ||
mapping -> mapping.startObject("gauge").field("type", "integer").field("time_series_metric", "gauge").endObject(), | ||
() -> List.of("routing_field"), | ||
dimensionFieldLimit | ||
); | ||
final Exception ex = expectThrows( | ||
DocumentParsingException.class, | ||
() -> client().prepareIndex("test") | ||
.setSource( | ||
"routing_field", | ||
randomAlphaOfLength(10), | ||
dimensionFieldName, | ||
randomAlphaOfLength(1024), | ||
"gauge", | ||
randomIntBetween(10, 20), | ||
"@timestamp", | ||
Instant.now().toEpochMilli() | ||
) | ||
.get() | ||
); | ||
assertThat( | ||
ex.getCause().getMessage(), | ||
equalTo( | ||
"Dimension name must be less than [512] bytes but [" + dimensionFieldName + "] was [" + dimensionFieldName.length() + "]." | ||
) | ||
); | ||
} | ||
|
||
public void testDimensionFieldValueLimit() throws IOException { | ||
int dimensionFieldLimit = 21; | ||
createTimeSeriesIndex( | ||
mapping -> mapping.startObject("field").field("type", "keyword").field("time_series_dimension", true).endObject(), | ||
mapping -> mapping.startObject("gauge").field("type", "integer").field("time_series_metric", "gauge").endObject(), | ||
() -> List.of("field"), | ||
dimensionFieldLimit | ||
); | ||
long startTime = Instant.now().toEpochMilli(); | ||
client().prepareIndex("test") | ||
.setSource("field", randomAlphaOfLength(1024), "gauge", randomIntBetween(10, 20), "@timestamp", startTime) | ||
.get(); | ||
final Exception ex = expectThrows( | ||
DocumentParsingException.class, | ||
() -> client().prepareIndex("test") | ||
.setSource("field", randomAlphaOfLength(1025), "gauge", randomIntBetween(10, 20), "@timestamp", startTime + 1) | ||
.get() | ||
); | ||
assertThat(ex.getCause().getMessage(), equalTo("Dimension fields must be less than [1024] bytes but was [1025].")); | ||
} | ||
|
||
public void testTotalNumberOfDimensionFieldsLimit() { | ||
int dimensionFieldLimit = 21; | ||
final Exception ex = expectThrows(IllegalArgumentException.class, () -> createTimeSeriesIndex(mapping -> { | ||
mapping.startObject("routing_field").field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
for (int i = 0; i < dimensionFieldLimit; i++) { | ||
mapping.startObject(randomAlphaOfLength(10)).field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
} | ||
}, | ||
mapping -> mapping.startObject("gauge").field("type", "integer").field("time_series_metric", "gauge").endObject(), | ||
() -> List.of("routing_field"), | ||
dimensionFieldLimit | ||
)); | ||
|
||
assertThat(ex.getMessage(), equalTo("Limit of total dimension fields [" + dimensionFieldLimit + "] has been exceeded")); | ||
} | ||
|
||
public void testTotalDimensionFieldsSizeLuceneLimit() throws IOException { | ||
int dimensionFieldLimit = 21; | ||
final List<String> dimensionFieldNames = new ArrayList<>(); | ||
createTimeSeriesIndex(mapping -> { | ||
for (int i = 0; i < dimensionFieldLimit; i++) { | ||
String dimensionFieldName = randomAlphaOfLength(512); | ||
dimensionFieldNames.add(dimensionFieldName); | ||
mapping.startObject(dimensionFieldName).field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
} | ||
}, | ||
mapping -> mapping.startObject("gauge").field("type", "integer").field("time_series_metric", "gauge").endObject(), | ||
() -> List.of(dimensionFieldNames.get(0)), | ||
dimensionFieldLimit | ||
); | ||
|
||
final Map<String, Object> source = new HashMap<>(); | ||
source.put("gauge", randomIntBetween(10, 20)); | ||
source.put("@timestamp", Instant.now().toEpochMilli()); | ||
for (int i = 0; i < dimensionFieldLimit; i++) { | ||
source.put(dimensionFieldNames.get(i), randomAlphaOfLength(1024)); | ||
} | ||
final IndexResponse indexResponse = client().prepareIndex("test").setSource(source).get(); | ||
assertEquals(RestStatus.CREATED.getStatus(), indexResponse.status().getStatus()); | ||
} | ||
|
||
public void testTotalDimensionFieldsSizeLuceneLimitPlusOne() throws IOException { | ||
int dimensionFieldLimit = 22; | ||
final List<String> dimensionFieldNames = new ArrayList<>(); | ||
createTimeSeriesIndex(mapping -> { | ||
for (int i = 0; i < dimensionFieldLimit; i++) { | ||
String dimensionFieldName = randomAlphaOfLength(512); | ||
dimensionFieldNames.add(dimensionFieldName); | ||
mapping.startObject(dimensionFieldName).field("type", "keyword").field("time_series_dimension", true).endObject(); | ||
} | ||
}, | ||
mapping -> mapping.startObject("gauge").field("type", "integer").field("time_series_metric", "gauge").endObject(), | ||
() -> List.of(dimensionFieldNames.get(0)), | ||
dimensionFieldLimit | ||
); | ||
|
||
final Map<String, Object> source = new HashMap<>(); | ||
source.put("routing_field", randomAlphaOfLength(1024)); | ||
source.put("gauge", randomIntBetween(10, 20)); | ||
source.put("@timestamp", Instant.now().toEpochMilli()); | ||
for (int i = 0; i < dimensionFieldLimit; i++) { | ||
source.put(dimensionFieldNames.get(i), randomAlphaOfLength(1024)); | ||
} | ||
final Exception ex = expectThrows(DocumentParsingException.class, () -> client().prepareIndex("test").setSource(source).get()); | ||
assertEquals("_tsid longer than [32766] bytes [33903].", ex.getCause().getMessage()); | ||
} | ||
|
||
private void createTimeSeriesIndex( | ||
final CheckedConsumer<XContentBuilder, IOException> dimensions, | ||
final CheckedConsumer<XContentBuilder, IOException> metrics, | ||
final Supplier<List<String>> routingPaths, | ||
int dimensionsFieldLimit | ||
) throws IOException { | ||
XContentBuilder mapping = JsonXContent.contentBuilder(); | ||
mapping.startObject().startObject("properties"); | ||
mapping.startObject("@timestamp").field("type", "date").endObject(); | ||
metrics.accept(mapping); | ||
dimensions.accept(mapping); | ||
mapping.endObject().endObject(); | ||
|
||
Settings settings = Settings.builder() | ||
.put(IndexSettings.MODE.getKey(), IndexMode.TIME_SERIES) | ||
.putList(IndexMetadata.INDEX_ROUTING_PATH.getKey(), routingPaths.get()) | ||
.put(IndexSettings.TIME_SERIES_START_TIME.getKey(), "2000-01-08T23:40:53.384Z") | ||
.put(IndexSettings.TIME_SERIES_END_TIME.getKey(), "2106-01-08T23:40:53.384Z") | ||
.put(MapperService.INDEX_MAPPING_DIMENSION_FIELDS_LIMIT_SETTING.getKey(), dimensionsFieldLimit) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now we always concrete set the limit. Maybe also test with the default? |
||
.build(); | ||
client().admin().indices().prepareCreate("test").setSettings(settings).setMapping(mapping).get(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I'm reading this incorrectly. This creates a mapping with 21 dimension fields. But this should succeed? Only if there are 22 dimensions this should fail?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is the routing_field that is a dimension so it is actually 22. I need to include something in the routing path otherwise the test fails because there is no routing path.