-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
fix: Fix unintended cache misses with async queries #14291
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 |
---|---|---|
|
@@ -98,7 +98,7 @@ | |
) | ||
from superset.typing import FlaskResponse, FormData, Metric | ||
from superset.utils.dates import datetime_to_epoch, EPOCH | ||
from superset.utils.hashing import md5_sha_from_str | ||
from superset.utils.hashing import md5_sha_from_dict, md5_sha_from_str | ||
|
||
try: | ||
from pydruid.utils.having import Having | ||
|
@@ -1046,7 +1046,6 @@ def to_adhoc( | |
result = { | ||
"clause": clause.upper(), | ||
"expressionType": expression_type, | ||
"filterOptionName": str(uuid.uuid4()), | ||
"isExtra": bool(filt.get("isExtra")), | ||
} | ||
|
||
|
@@ -1061,6 +1060,9 @@ def to_adhoc( | |
elif expression_type == "SQL": | ||
result.update({"sqlExpression": filt.get(clause)}) | ||
|
||
deterministic_name = md5_sha_from_dict(result) | ||
result["filterOptionName"] = deterministic_name | ||
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. 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. Yeah, I agree we should get some 👀 on this from folks more familiar. AFAICT, this preserves the existing behavior of generating a unique key (which I assume is needed on clients) but also keeps it deterministic so that hashing 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. With a deterministic 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. Hmm... can you point to a specific example of where that might be an issue? Wouldn't each filter have different attributes? If not, is it a bug on the client that the same filters for the same chart would be added more than once? The idea is this should be deterministic for the same filter dict, but the set of filter dicts should have different properties, causing a different sha. |
||
|
||
return result | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# 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. | ||
# pylint: disable=no-self-use | ||
import pytest | ||
|
||
from superset.utils.core import to_adhoc | ||
|
||
|
||
def test_to_adhoc_generates_deterministic_values(): | ||
input_1 = { | ||
"op": "IS NOT NULL", | ||
"col": "LATITUDE", | ||
"val": "", | ||
} | ||
|
||
input_2 = {**input_1, "col": "LONGITUDE"} | ||
|
||
# The result is the same when given the same input | ||
assert to_adhoc(input_1) == to_adhoc(input_1) | ||
assert to_adhoc(input_1) == { | ||
"clause": "WHERE", | ||
"expressionType": "SIMPLE", | ||
"isExtra": False, | ||
"comparator": "", | ||
"operator": "IS NOT NULL", | ||
"subject": "LATITUDE", | ||
"filterOptionName": "d0908f77d950131db7a69fdc820cb739", | ||
} | ||
|
||
# The result is different when given different input | ||
assert to_adhoc(input_1) != to_adhoc(input_2) | ||
assert to_adhoc(input_2) == { | ||
"clause": "WHERE", | ||
"expressionType": "SIMPLE", | ||
"isExtra": False, | ||
"comparator": "", | ||
"operator": "IS NOT NULL", | ||
"subject": "LONGITUDE", | ||
"filterOptionName": "c5f283f727d4dfc6258b351d4a8663bc", | ||
} |
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.
💯