TSDB: Do not allow index splits for time series indices#81125
Merged
csoulios merged 4 commits intoelastic:masterfrom Nov 30, 2021
Merged
TSDB: Do not allow index splits for time series indices#81125csoulios merged 4 commits intoelastic:masterfrom
csoulios merged 4 commits intoelastic:masterfrom
Conversation
Collaborator
|
Pinging @elastic/es-analytics-geo (Team:Analytics) |
nik9000
approved these changes
Nov 29, 2021
rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/tsdb/80_index_resize.yml
Outdated
Show resolved
Hide resolved
| listener.onFailure(e); | ||
| return; | ||
| } | ||
| } |
Member
There was a problem hiding this comment.
It doesn't look like the cleanest way to do it but it makes sense given what we have. And I don't think its permanent.
instead of delegating it to the ActionListener
Contributor
Author
|
@elasticmachine merge upstream |
Contributor
Author
|
@elasticmachine run elasticsearch-ci/part-2 |
weizijun
added a commit
to weizijun/elasticsearch
that referenced
this pull request
Nov 30, 2021
* upstream/master: [ML] Parent datafeed actions to the datafeed's persistent task (elastic#81143) Simplify ConcreteIndices and its usage in TransportBulkAction (elastic#81098) Unmute DataStreamsSnapshotsIT#testRestoreDataStreamAliasWithConflictingIndicesAlias() test (elastic#81142) TSDB: Do not allow index splits for time series indices (elastic#81125) Reduce verbosity-increase timeout to 3m (elastic#81118) Mute DataStreamsSnapshotsIT#testRestoreDataStreamAliasWithConflictingIndicesAlias() test Fix stopping of old elasticsearch cluster (elastic#81059) Fix data stream alias validation. (elastic#81040) Add replicated field to get data stream api response. (elastic#80988)
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Index
_splitoperation may have some issues with time series indices, asthe splits must respect and adjust the time boundaries.
This PR forbids users to execute the split operation on time series indices,
until we revisit this approach in the future.