Skip to content
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

Generate remaining snapshot requests #1357

Merged
merged 4 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
33 changes: 32 additions & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,35 @@ After:

### DataStreamIndexInfo renamed to DataStreamIndex
- The `DataStreamIndexInfo` class has been renamed to `DataStreamIndex`, this affects:
- `DataStream`'s (previously `DataStreamInfo`) `indices` field.
- `DataStream`'s (previously `DataStreamInfo`) `indices` field.

### RepositorySettings
- The `concurrentStreams` property is now of type `Integer` instead of `String`.

### snapshot.RestoreRequest renamed to snapshot.RestoreSnapshotRequest
- The `snapshot.RestoreRequest` class has been renamed to `snapshot.RestoreSnapshotRequest`.
- The `indexSettings` property has been corrected to be of type `IndexSettings` instead of `PutIndicesSettingsRequest`.

### snapshot.RestoreResponse renamed to snapshot.RestoreSnapshotResponse
- The `snapshot.RestoreResponse` class has been renamed to `snapshot.RestoreSnapshotResponse`.

### snapshot.Status renamed to snapshot.SnapshotStatus
- The `snapshot.Status` class has been renamed to `snapshot.SnapshotStatus`, this affects:
- `snapshot.SnapshotStatusResponse`'s `snapshots` field.

### snapshot.ShardStats renamed to snapshot.SnapshotShardStats
- The `snapshot.ShardStats` class has been renamed to `snapshot.SnapshotShardStats`, this affects:
- `snapshot.SnapshotStatus`'s (previous `snapshot.Status`) `shardsStats` field.
- `snapshot.SnapshotIndexStats`'s `shardsStats` field.

### snapshot.ShardsStatsStage renamed to snapshot.SnapshotShardsStatsStage
- The `snapshot.ShardsStatsStage` class has been renamed to `snapshot.SnapshotShardsStatsStage`, this affects:
- `snapshot.SnapshotShardsStatus`'s `stage` field.

### snapshot.ShardsStatsSummary renamed to snapshot.SnapshotShardsStatsSummary
- The `snapshot.ShardsStatsSummary` class has been renamed to `snapshot.SnapshotShardsStatsSummary`, this affects:
- `snapshot.SnapshotShardsStatus`'s `summary` field.

### snapshot.ShardsStatsSummaryItem renamed to snapshot.SnapshotShardsStatsSummaryItem
- The `snapshot.ShardsStatsSummaryItem` class has been renamed to `snapshot.SnapshotShardsStatsSummaryItem`, this affects:
- `snapshot.SnapshotShardsStatsSummary`'s (previously `snapshot.ShardsStatsSummary`) `incremental` and `total` fields.
Loading
Loading