forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(druid): Delete obsolete Druid NoSQL slice parameters (apache#24737)
- Loading branch information
1 parent
2b0ffb0
commit 4c5ada4
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
103 changes: 103 additions & 0 deletions
103
...ns/versions/2023-07-18_15-30_863adcf72773_delete_obsolete_druid_nosql_slice_parameters.py
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,103 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
"""delete obsolete Druid NoSQL slice parameters | ||
Revision ID: 863adcf72773 | ||
Revises: 6d05b0a70c89 | ||
Create Date: 2023-07-18 15:30:43.695135 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "863adcf72773" | ||
down_revision = "6d05b0a70c89" | ||
|
||
import json | ||
import logging | ||
|
||
from alembic import op | ||
from sqlalchemy import Column, Integer, Text | ||
from sqlalchemy.ext.declarative import declarative_base | ||
|
||
from superset import db | ||
|
||
Base = declarative_base() | ||
|
||
|
||
class Slice(Base): | ||
__tablename__ = "slices" | ||
|
||
id = Column(Integer, primary_key=True) | ||
params = Column(Text) | ||
query_context = Column(Text) | ||
|
||
|
||
def upgrade(): | ||
bind = op.get_bind() | ||
session = db.Session(bind=bind) | ||
|
||
for slc in session.query(Slice).all(): | ||
if slc.params: | ||
updated = False | ||
|
||
try: | ||
params = json.loads(slc.params) | ||
|
||
for key in ["druid_time_origin", "granularity"]: | ||
if key in params: | ||
del params[key] | ||
updated = True | ||
|
||
if updated: | ||
slc.params = json.dumps(params) | ||
except Exception: | ||
logging.exception(f"Unable to parse params for slice {slc.id}") | ||
|
||
if slc.query_context: | ||
updated = False | ||
|
||
try: | ||
query_context = json.loads(slc.query_context) | ||
|
||
if form_data := query_context.get("form_data"): | ||
for key in ["druid_time_origin", "granularity"]: | ||
if key in form_data: | ||
del form_data[key] | ||
updated = True | ||
|
||
for query in query_context.get("queries", []): | ||
for key in ["druid_time_origin", "granularity"]: | ||
if key in query: | ||
del query[key] | ||
updated = True | ||
|
||
if extras := query.get("extras"): | ||
if "having_druid" in extras: | ||
del extras["having_druid"] | ||
updated = True | ||
|
||
if updated: | ||
slc.query_context = json.dumps(query_context) | ||
except Exception: | ||
logging.exception(f"Unable to parse query context for slice {slc.id}") | ||
|
||
session.commit() | ||
session.close() | ||
|
||
|
||
def downgrade(): | ||
pass |