-
Notifications
You must be signed in to change notification settings - Fork 4.1k
restore: remove incremental_location from SQL read syntaxes #160416
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
Conversation
91b23a2 to
8c9146a
Compare
This patch removes support for the `incremental_location` syntax from our read paths. Resolves: cockroachdb#159172 Release note (backwards-incompatible change): The `incremental_location` option has been removed from `SHOW BACKUP` and `RESTORE`.
This commit removes all logic relating to custom incremental locations from our RESTORE and SHOW paths. Resolves: cockroachdb#159172 Release note: None
8c9146a to
5525d6e
Compare
| return nil, err | ||
| } | ||
|
|
||
| // Check we can read from this location, though we don't need the backups here. |
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.
Now that all incrementals are stored in the same location as the rest of the backups, this read-access check shouldn't be necessary.
msbutler
left a comment
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.
nice cleanup!
|
TFTR! bors r=msbutler |
160408: rttanalysis: deflake pause/cancel job benchmark r=jeffswenson a=msbutler This patch changes the benchmark to pause/cancel jobs which are guaranteed to be pausable/cancellable. While here, I added rows to the job_progress and job_status tables. Fixes #157116 Release note: none 160416: restore: remove incremental_location from SQL read syntaxes r=msbutler a=kev-cao This patch removes support for the `incremental_location` syntax from our read paths. Resolves: #159172 Release note (backwards-incompatible change): The `incremental_location` option has been removed from `SHOW BACKUP` and `RESTORE`. 160589: sql: deflake TestAbortedTxnLocks r=rafiss a=rafiss 5a1c5a7 enabled multitenant testing for this test. One of the subtests is flaky on secondary tenants, so we skip it in that mode. fixes #160585 Release note: None Co-authored-by: Michael Butler <[email protected]> Co-authored-by: Kevin Cao <[email protected]> Co-authored-by: Rafi Shamim <[email protected]>
|
This PR was included in a batch that successfully built, but then failed to merge into master (it was a non-fast-forward update). It will be automatically retried. |
|
Build succeeded: |
This patch removes support for the
incremental_locationsyntax from our read paths.Resolves: #159172
Release note (backwards-incompatible change): The
incremental_locationoption has been removed fromSHOW BACKUPandRESTORE.