-
Notifications
You must be signed in to change notification settings - Fork 14k
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
[druid] Updating refresh logic #4655
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
"""empty message | ||
|
||
Revision ID: f231d82b9b26 | ||
Revises: e68c4473c581 | ||
Create Date: 2018-03-20 19:47:54.991259 | ||
|
||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'f231d82b9b26' | ||
down_revision = 'e68c4473c581' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.exc import OperationalError | ||
|
||
from superset.utils import generic_find_uq_constraint_name | ||
|
||
conv = { | ||
'uq': 'uq_%(table_name)s_%(column_0_name)s', | ||
} | ||
|
||
names = { | ||
'columns': 'column_name', | ||
'metrics': 'metric_name', | ||
} | ||
|
||
bind = op.get_bind() | ||
insp = sa.engine.reflection.Inspector.from_engine(bind) | ||
|
||
|
||
def upgrade(): | ||
|
||
# Reduce the size of the metric_name column for constraint viability. | ||
with op.batch_alter_table('metrics', naming_convention=conv) as batch_op: | ||
batch_op.alter_column( | ||
'metric_name', | ||
existing_type=sa.String(length=512), | ||
type_=sa.String(length=255), | ||
existing_nullable=True, | ||
) | ||
|
||
# Add the missing uniqueness constraints. | ||
for table, column in names.items(): | ||
with op.batch_alter_table(table, naming_convention=conv) as batch_op: | ||
batch_op.create_unique_constraint( | ||
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. Hit an issue on this line while upgrading our staging. I wrapped the statement in a try block locally so that I could move forward 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. For the record it was something to the effect of the constraint existing already |
||
'uq_{}_{}'.format(table, column), | ||
[column, 'datasource_id'], | ||
) | ||
|
||
def downgrade(): | ||
|
||
# Restore the size of the metric_name column. | ||
with op.batch_alter_table('metrics', naming_convention=conv) as batch_op: | ||
batch_op.alter_column( | ||
'metric_name', | ||
existing_type=sa.String(length=255), | ||
type_=sa.String(length=512), | ||
existing_nullable=True, | ||
) | ||
|
||
# Remove the previous missing uniqueness constraints. | ||
for table, column in names.items(): | ||
with op.batch_alter_table(table, naming_convention=conv) as batch_op: | ||
batch_op.drop_constraint( | ||
generic_find_uq_constraint_name( | ||
table, | ||
{column, 'datasource_id'}, | ||
insp, | ||
) or 'uq_{}_{}'.format(table, column), | ||
type_='unique', | ||
) |
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.
I mean the same could apply here as well, where it's possible to combine all of the columns' metrics into one query