Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -8,6 +8,7 @@
*/
package org.elasticsearch.datastreams;

import org.elasticsearch.action.ActionFuture;
import org.elasticsearch.action.DocWriteRequest;
import org.elasticsearch.action.admin.indices.diskusage.AnalyzeIndexDiskUsageRequest;
import org.elasticsearch.action.admin.indices.diskusage.TransportAnalyzeIndexDiskUsageAction;
Expand All @@ -31,6 +32,7 @@
import org.elasticsearch.action.index.IndexRequest;
import org.elasticsearch.action.search.SearchRequest;
import org.elasticsearch.action.support.WriteRequest;
import org.elasticsearch.action.support.master.AcknowledgedResponse;
import org.elasticsearch.cluster.metadata.ComponentTemplate;
import org.elasticsearch.cluster.metadata.ComposableIndexTemplate;
import org.elasticsearch.cluster.metadata.IndexMetadata;
Expand Down Expand Up @@ -709,17 +711,20 @@ public void testAddDimensionToMapping() throws Exception {
]
}
""", XContentType.JSON);
assertAcked(client().execute(TransportPutMappingAction.TYPE, putMappingRequest).actionGet());
ActionFuture<AcknowledgedResponse> putMappingFuture = client().execute(TransportPutMappingAction.TYPE, putMappingRequest);
if (INDEX_DIMENSIONS_TSID_OPTIMIZATION_FEATURE_FLAG) {
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, putMappingFuture::actionGet);
assertThat(
getSetting(dataStreamName, IndexMetadata.INDEX_ROUTING_PATH),
containsInAnyOrder("metricset", "labels.*", "k8s.pod.name")
exception.getMessage(),
containsString("Cannot add dynamic templates that define dimension fields on an existing index with index.dimensions")
);
assertThat(getSetting(dataStreamName, IndexMetadata.INDEX_DIMENSIONS), containsInAnyOrder("metricset", "k8s.pod.name"));
assertThat(getSetting(dataStreamName, IndexMetadata.INDEX_ROUTING_PATH), empty());
} else {
assertAcked(putMappingFuture);
assertThat(getSetting(dataStreamName, IndexMetadata.INDEX_ROUTING_PATH), containsInAnyOrder("metricset"));
assertThat(getSetting(dataStreamName, IndexMetadata.INDEX_DIMENSIONS), empty());
}
assertThat(getSetting(dataStreamName, IndexMetadata.INDEX_DIMENSIONS), empty());

indexWithPodNames(dataStreamName, Instant.now(), Map.of(), "dog", "cat");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,13 @@ public void onUpdateMappings(IndexMetadata indexMetadata, DocumentMapper documen
boolean hasChanges = indexDimensions.size() != newIndexDimensions.size()
&& new HashSet<>(indexDimensions).equals(new HashSet<>(newIndexDimensions)) == false;
if (matchesAllDimensions == false) {
// If the new dimensions don't match all potential dimension fields, we need to unset index.dimensions
// and set index.routing_path instead.
// This can happen if a new dynamic template with time_series_dimension: true is added to an existing index.
additionalSettings.putList(INDEX_DIMENSIONS.getKey(), List.of());
additionalSettings.putList(INDEX_ROUTING_PATH.getKey(), newIndexDimensions);
throw new IllegalArgumentException(
"Cannot add dynamic templates that define dimension fields on an existing index with "
+ INDEX_DIMENSIONS.getKey()
+ ". "
+ "Please change the index template and roll over the data stream "
+ "instead of modifying the mappings of the backing indices."
);
} else if (hasChanges) {
additionalSettings.putList(INDEX_DIMENSIONS.getKey(), newIndexDimensions);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -956,10 +956,18 @@ public void testAddDynamicTemplate() throws Exception {
}
""";
// we don't support index.dimensions with dynamic templates so we'll unset index.dimensions
Settings result = onUpdateMappings(null, "labels.*", mapping);
assertThat(result.size(), equalTo(2));
assertThat(IndexMetadata.INDEX_DIMENSIONS.get(result), empty());
assertThat(IndexMetadata.INDEX_ROUTING_PATH.get(result), containsInAnyOrder("labels.*"));
IllegalArgumentException exception = assertThrows(
IllegalArgumentException.class,
() -> onUpdateMappings(null, "labels.*", mapping)
);
assertThat(
exception.getMessage(),
equalTo(
"Cannot add dynamic templates that define dimension fields on an existing index with index.dimensions. "
+ "Please change the index template and roll over the data stream "
+ "instead of modifying the mappings of the backing indices."
)
);
}

private Settings generateTsdbSettings(String mapping, Instant now) throws IOException {
Expand Down