-
Notifications
You must be signed in to change notification settings - Fork 3.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
sql: Seeing schema change rollback more often #27958
Labels
A-schema-changes
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
Comments
vivekmenezes
added
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
A-schema-changes
labels
Jul 26, 2018
vivekmenezes
changed the title
schema: Seeing schema change rollback more often
sql: Seeing schema change rollback more often
Jul 26, 2018
vivekmenezes
added a commit
to vivekmenezes/cockroach
that referenced
this issue
Aug 17, 2018
An expired schema change lease is no reason to rollback a schema change. The schema change mechanism uses transactions and doesn't need a guarantee that it only run by a single lease holder. An expired lease should simply mean: stop and allow the lease holder to proceed. related to cockroachdb#27273 related to cockroachdb#27958 related to cockroachdb#27760 Release note: None
craig bot
pushed a commit
that referenced
this issue
Aug 17, 2018
28762: sql: mark expired schema change lease as a temporary error r=vivekmenezes a=vivekmenezes An expired schema change lease is no reason to rollback a schema change. The schema change mechanism uses transactions and doesn't need a guarantee that it only run by a single lease holder. An expired lease should simply mean: stop and allow the lease holder to proceed. related to #27273 related to #27958 related to #27760 Release note: None Co-authored-by: Vivek Menezes <vivek@cockroachlabs.com>
vivekmenezes
added a commit
to vivekmenezes/cockroach
that referenced
this issue
Aug 21, 2018
An expired schema change lease is no reason to rollback a schema change. The schema change mechanism uses transactions and doesn't need a guarantee that it only run by a single lease holder. An expired lease should simply mean: stop and allow the lease holder to proceed. related to cockroachdb#27273 related to cockroachdb#27958 related to cockroachdb#27760 Release note: None
craig bot
pushed a commit
that referenced
this issue
Aug 21, 2018
28881: backport-2.0: sql: mark expired schema change lease as a temporary error r=vivekmenezes a=vivekmenezes Backport 1/1 commits from #28762. /cc @cockroachdb/release --- An expired schema change lease is no reason to rollback a schema change. The schema change mechanism uses transactions and doesn't need a guarantee that it only run by a single lease holder. An expired lease should simply mean: stop and allow the lease holder to proceed. related to #27273 related to #27958 related to #27760 Release note: None Co-authored-by: Vivek Menezes <vivek@cockroachlabs.com>
vivekmenezes
added a commit
to vivekmenezes/cockroach
that referenced
this issue
Aug 21, 2018
return pgerror.CodeConnectionFailureError from distsql when it sees a communication error. related to cockroachdb#27958 Release note: None
marking this as fixed! |
vivekmenezes
added a commit
to vivekmenezes/cockroach
that referenced
this issue
Aug 22, 2018
return pgerror.CodeConnectionFailureError from distsql when it sees a communication error. related to cockroachdb#27958 Release note: None
craig bot
pushed a commit
that referenced
this issue
Aug 22, 2018
28953: backport-2.1: sql: retry schema change on a communication error r=vivekmenezes a=vivekmenezes Backport 1/1 commits from #28769. /cc @cockroachdb/release --- return pgerror.CodeConnectionFailureError from distsql when it sees a communication error. related to #27958 Release note: None Co-authored-by: Vivek Menezes <vivek@cockroachlabs.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-schema-changes
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
after the change to isPermanentSchemaChangeError() in
87c4b07
we have been seeing more customers seeing rollbacks in schema changes. We should look at fine tuning this policy.
The text was updated successfully, but these errors were encountered: