Skip to content
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

feat(key-value): add superset metastore cache #19232

Merged
merged 13 commits into from
Mar 21, 2022

Conversation

villebro
Copy link
Member

@villebro villebro commented Mar 17, 2022

SUMMARY

Add custom Flask-Caching backend that leverages the new key_value table that was introduced in #19078. This makes it possible to use the metadata database as a cache. Superset defaults to the new cache for required caches that have not been defined in the configs. This is to reintroduce support for multi-pod deployments that don't have a dedicated cache.

The cache implements all cache methods that are used in the application (add, set, get, has, delete), and can be used as a caching backend for any purpose. For instance, to use it to store chart data, the following can be added to superset_config.py:

DATA_CACHE_CONFIG = {
    "CACHE_TYPE": "SupersetMetastoreCache",
    "CACHE_KEY_PREFIX": "superset_results", 
    "CACHE_DEFAULT_TIMEOUT": 86400,
}

In addition, Explore form data/Dashboard filter state caches in the ephemeral environments are currently failing on master - after this gets merged they should now work as intended, as they'll use this cache.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

TESTING INSTRUCTIONS

ADDITIONAL INFORMATION

  • Has associated issue:
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

@villebro villebro changed the title [WIP] feat(key-value): add superset cache feat(key-value): add superset cache Mar 18, 2022
docs/docs/installation/cache.mdx Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/utils/cache_manager.py Outdated Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
tests/integration_tests/key_value/cache_test.py Outdated Show resolved Hide resolved
Comment on lines 68 to 76
with freeze_time(dttm):
cache.set(FIRST_KEY, FIRST_KEY_INITIAL_VALUE, int(delta.total_seconds()))
assert cache.get(FIRST_KEY) == FIRST_KEY_INITIAL_VALUE
with freeze_time(dttm + delta - timedelta(seconds=1)):
assert cache.has(FIRST_KEY)
assert cache.get(FIRST_KEY) == FIRST_KEY_INITIAL_VALUE
with freeze_time(dttm + delta + timedelta(seconds=1)):
assert cache.has(FIRST_KEY) is False
assert cache.get(FIRST_KEY) is None
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Btw I truly LOVE freeze_time! ❤️

@codecov
Copy link

codecov bot commented Mar 18, 2022

Codecov Report

Merging #19232 (22f52f6) into master (d645579) will increase coverage by 0.05%.
The diff coverage is 90.19%.

@@            Coverage Diff             @@
##           master   #19232      +/-   ##
==========================================
+ Coverage   66.53%   66.59%   +0.05%     
==========================================
  Files        1667     1670       +3     
  Lines       64360    64501     +141     
  Branches     6493     6493              
==========================================
+ Hits        42824    42952     +128     
- Misses      19854    19867      +13     
  Partials     1682     1682              
Flag Coverage Δ
hive 52.54% <9.45%> (-0.11%) ⬇️
mysql 81.53% <90.19%> (+0.05%) ⬆️
postgres 81.57% <90.19%> (+0.04%) ⬆️
presto 52.39% <9.45%> (-0.11%) ⬇️
python 81.99% <90.19%> (+0.03%) ⬆️
sqlite 81.35% <90.19%> (+0.05%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
superset/dashboards/permalink/commands/create.py 92.59% <ø> (ø)
superset/dashboards/permalink/commands/get.py 82.35% <ø> (ø)
superset/explore/permalink/commands/create.py 93.33% <ø> (ø)
superset/explore/permalink/commands/get.py 88.57% <ø> (ø)
superset/key_value/commands/delete.py 86.11% <50.00%> (-2.78%) ⬇️
superset/key_value/commands/update.py 89.58% <66.66%> (-1.91%) ⬇️
superset/key_value/commands/delete_expired.py 80.00% <80.00%> (ø)
superset/key_value/commands/create.py 93.87% <83.33%> (+4.40%) ⬆️
superset/key_value/commands/upsert.py 89.79% <89.79%> (ø)
superset/extensions/metastore_cache.py 98.18% <98.18%> (ø)
... and 8 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d645579...22f52f6. Read the comment docs.

@villebro
Copy link
Member Author

/testenv up

@github-actions
Copy link
Contributor

@villebro Ephemeral environment spinning up at http://35.87.132.23:8080. Credentials are admin/admin. Please allow several minutes for bootstrapping and startup.

@villebro
Copy link
Member Author

I can confirm that the dashboard and explore ephemeral env now work as intended by defaulting to the new cache

Copy link
Member

@ktmud ktmud left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work! I'm still a little hesitant on conflating caching and persistent storage (the semantics are just so different), but this does seem to be an improvement to status quo, so I'll vote yes on this change.

from superset.key_value.types import KeyType

RESOURCE = "superset_cache"
KEY_TYPE: KeyType = "uuid"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linking my previous comment about KeyType in case you missed it: #19078 (comment)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks - many good comments there - I'll be opening a follow-up PR to address those!

superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
superset/utils/cache_manager.py Show resolved Hide resolved
superset/key_value/cache.py Outdated Show resolved Hide resolved
@villebro villebro changed the title feat(key-value): add superset cache feat(key-value): add superset metastore cache Mar 19, 2022
@villebro
Copy link
Member Author

@ktmud I believe I've addressed all your comments

@villebro villebro requested a review from ktmud March 19, 2022 10:47
Copy link
Member

@michael-s-molina michael-s-molina left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks for the improvement!

Copy link
Member

@ktmud ktmud left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks for the updates!

@villebro villebro merged commit 72b9a7f into apache:master Mar 21, 2022
@github-actions
Copy link
Contributor

Ephemeral environment shutdown and build artifacts deleted.

@villebro villebro deleted the villebro/superset-cache branch March 22, 2022 09:15
michael-hoffman-26 pushed a commit to nielsen-oss/superset that referenced this pull request Mar 23, 2022
villebro added a commit that referenced this pull request Apr 3, 2022
@mistercrunch mistercrunch added 🍒 1.5.0 🍒 1.5.1 🍒 1.5.2 🍒 1.5.3 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 2.0.0 labels Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels lts-v1 preset-io size/XL 🍒 1.5.0 🍒 1.5.1 🍒 1.5.2 🍒 1.5.3 🚢 2.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants