-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Validation for data stream creation #54083
Changes from 2 commits
43c52a7
b2e4483
920708a
b67088e
3b56ebf
4846c98
31e9fd8
7a69531
24d603c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
import org.elasticsearch.cluster.metadata.DataStream; | ||
import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver; | ||
import org.elasticsearch.cluster.metadata.MetaData; | ||
import org.elasticsearch.cluster.metadata.MetaDataCreateIndexService; | ||
import org.elasticsearch.cluster.service.ClusterService; | ||
import org.elasticsearch.common.Priority; | ||
import org.elasticsearch.common.Strings; | ||
|
@@ -165,9 +166,11 @@ static ClusterState createDataStream(ClusterState currentState, Request request) | |
throw new IllegalArgumentException("data_stream [" + request.name + "] already exists"); | ||
} | ||
|
||
MetaDataCreateIndexService.validateIndexOrAliasName(request.name, | ||
(s1, s2) -> new IllegalArgumentException("data_stream [" + s1 + "] " + s2)); | ||
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. The other usages of 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. Added a REST test to enforce that the same HTTP 400 response code is returned. |
||
|
||
MetaData.Builder builder = MetaData.builder(currentState.metaData()).put( | ||
new DataStream(request.name, request.timestampFieldName, Collections.emptyList())); | ||
|
||
logger.info("adding data stream [{}]", request.name); | ||
return ClusterState.builder(currentState).metaData(builder).build(); | ||
} | ||
|
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.
Should we rename the method to either "validateIndexSpaceName" or "validateAbstractIndexName"? Can be done in a follow-up when the naming discussion is clarified.