-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
Include size of snapshot in snapshot metadata #29602
Merged
vladimirdolzhenko
merged 25 commits into
elastic:master
from
vladimirdolzhenko:fix/18543
May 25, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
6bcfcb8
Include size of snapshot in snapshot metadata
vladimirdolzhenko a08c807
Include size of snapshot in snapshot metadata - changes on Yannick's PR
vladimirdolzhenko 50d7c78
Include size of snapshot in snapshot metadata - changes on 2nd Yannic…
vladimirdolzhenko 6ea7e01
Include size of snapshot in snapshot metadata - changes on 3nd Yannic…
vladimirdolzhenko 4ca0ba9
Include size of snapshot in snapshot metadata #29602
7ab7262
Include size of snapshot in snapshot metadata #29602
9a839f3
Revert "Include size of snapshot in snapshot metadata #29602"
4a0bbc7
Include size of snapshot in snapshot metadata #29602
3ebc769
#29602 added snapshot stats section to docs
828bb12
#18543 use "file_count" to eliminate "incremental", "processed" and "…
5582562
origin/master merged
f3c2306
fix doc generation
39e0190
adjusted docs, some comments
34243af
added section for 7.0 migration
816c7d9
Merge remote-tracking branch 'remotes/origin/master' into fix/18543
d13d991
Merge remote-tracking branch 'remotes/origin/master' into fix/18543
76fe2ac
typos fixed
c86c6e5
Merge remote-tracking branch 'remotes/origin/master' into fix/18543
4176564
Merge remote-tracking branch 'remotes/origin/master' into fix/18543
c05b191
added REST API test for snapshot/status (suspended before backporting…
563bea7
Merge remote-tracking branch 'remotes/origin/master' into fix/18543
e1400a8
added REST API test for snapshot/status with BWC fields
ccf7b22
fixed matching of time_in_millis/start_time_in_millis
f2a33d6
fix snapshot name for bwc test
7df83ef
fix snapshot name for bwc test
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
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
13 changes: 13 additions & 0 deletions
13
docs/reference/migration/migrate_7_0/snapshotstats.asciidoc
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,13 @@ | ||
[[breaking_70_snapshotstats_changes]] | ||
=== Snapshot stats changes | ||
|
||
Snapshot stats details are provided in a new structured way: | ||
|
||
* `total` section for all the files that are referenced by the snapshot | ||
* `incremental` section for those files that actually needed to be copied over as part of the incremental snapshotting. | ||
* In case of a snapshot that's still in progress, there's also a`processed` section for files that are in the process of being copied. | ||
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. space between |
||
|
||
==== Deprecated `number_of_files`, `processed_files`, `total_size_in_bytes` and `processed_size_in_bytes` snapshot stats properties have been removed | ||
|
||
* Properties `number_of_files` and `total_size_in_bytes` are removed and should be replaced by values of nested object `total`. | ||
* Properties `processed_files` and `processed_size_in_bytes` are removed and should be replaced by values of nested object `processed`. |
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.
dot at the end of sentence