File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515* Dependabot updates for ` github-actions ` and ` terraform ` ecosystems. (#29 )
1616* CI workflow to build and push service images to GitHub Container Registry on master merge. (#97 )
1717* Pull-first with local build fallback for container images during deployment. (#97 )
18+ * Superset metastore and explore form data caching via Redis. (#79 )
1819
1920### Changed
2021
Original file line number Diff line number Diff line change @@ -49,3 +49,15 @@ class CeleryConfig: # pylint: disable=too-few-public-methods
4949 "CACHE_KEY_PREFIX" : "superset_filter_cache" ,
5050 "CACHE_REDIS_URL" : "redis://redis:6379/0"
5151}
52+ DATA_CACHE_CONFIG = {
53+ "CACHE_TYPE" : "RedisCache" ,
54+ "CACHE_DEFAULT_TIMEOUT" : 3600 ,
55+ "CACHE_KEY_PREFIX" : "superset_data_cache" ,
56+ "CACHE_REDIS_URL" : "redis://redis:6379/0"
57+ }
58+ EXPLORE_FORM_DATA_CACHE_CONFIG = {
59+ "CACHE_TYPE" : "RedisCache" ,
60+ "CACHE_DEFAULT_TIMEOUT" : 86400 ,
61+ "CACHE_KEY_PREFIX" : "superset_explore_cache" ,
62+ "CACHE_REDIS_URL" : "redis://redis:6379/0"
63+ }
You can’t perform that action at this time.
0 commit comments