mirror of
https://github.com/apache/superset.git
synced 2026-04-21 00:54:44 +00:00
feat: implement cache invalidation api (#10761)
* Add cache endpoints * Implement cache endpoint * Tests and address feedback * Set cache config * Address feedback * Expose only invalidate endpoint Co-authored-by: bogdan kyryliuk <bogdankyryliuk@dropbox.com>
This commit is contained in:
123
superset/cachekeys/api.py
Normal file
123
superset/cachekeys/api.py
Normal file
@@ -0,0 +1,123 @@
|
||||
# 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.
|
||||
import logging
|
||||
|
||||
from flask import request, Response
|
||||
from flask_appbuilder import expose
|
||||
from flask_appbuilder.api import safe
|
||||
from flask_appbuilder.models.sqla.interface import SQLAInterface
|
||||
from flask_appbuilder.security.decorators import protect
|
||||
from marshmallow.exceptions import ValidationError
|
||||
from sqlalchemy.exc import SQLAlchemyError
|
||||
|
||||
from superset.cachekeys.schemas import CacheInvalidationRequestSchema
|
||||
from superset.connectors.connector_registry import ConnectorRegistry
|
||||
from superset.extensions import cache_manager, db, event_logger
|
||||
from superset.models.cache import CacheKey
|
||||
from superset.views.base_api import BaseSupersetModelRestApi, statsd_metrics
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class CacheRestApi(BaseSupersetModelRestApi):
|
||||
datamodel = SQLAInterface(CacheKey)
|
||||
resource_name = "cachekey"
|
||||
allow_browser_login = True
|
||||
class_permission_name = "CacheRestApi"
|
||||
include_route_methods = {
|
||||
"invalidate",
|
||||
}
|
||||
|
||||
openapi_spec_component_schemas = (CacheInvalidationRequestSchema,)
|
||||
|
||||
@expose("/invalidate", methods=["POST"])
|
||||
@event_logger.log_this
|
||||
@protect()
|
||||
@safe
|
||||
@statsd_metrics
|
||||
def invalidate(self) -> Response:
|
||||
"""
|
||||
Takes a list of datasources, finds the associated cache records and
|
||||
invalidates them and removes the database records
|
||||
|
||||
---
|
||||
post:
|
||||
description: >-
|
||||
Takes a list of datasources, finds the associated cache records and
|
||||
invalidates them and removes the database records
|
||||
requestBody:
|
||||
description: >-
|
||||
A list of datasources uuid or the tuples of database and datasource names
|
||||
required: true
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/CacheInvalidationRequestSchema"
|
||||
responses:
|
||||
201:
|
||||
description: cache was successfully invalidated
|
||||
400:
|
||||
$ref: '#/components/responses/400'
|
||||
500:
|
||||
$ref: '#/components/responses/500'
|
||||
"""
|
||||
try:
|
||||
datasources = CacheInvalidationRequestSchema().load(request.json)
|
||||
except KeyError:
|
||||
return self.response_400(message="Request is incorrect")
|
||||
except ValidationError as error:
|
||||
return self.response_400(message=str(error))
|
||||
datasource_uids = set(datasources.get("datasource_uids", []))
|
||||
for ds in datasources.get("datasources", []):
|
||||
ds_obj = ConnectorRegistry.get_datasource_by_name(
|
||||
session=db.session,
|
||||
datasource_type=ds.get("datasource_type"),
|
||||
datasource_name=ds.get("datasource_name"),
|
||||
schema=ds.get("schema"),
|
||||
database_name=ds.get("database_name"),
|
||||
)
|
||||
if ds_obj:
|
||||
datasource_uids.add(ds_obj.uid)
|
||||
|
||||
cache_key_objs = (
|
||||
db.session.query(CacheKey)
|
||||
.filter(CacheKey.datasource_uid.in_(datasource_uids))
|
||||
.all()
|
||||
)
|
||||
cache_keys = [c.cache_key for c in cache_key_objs]
|
||||
if cache_key_objs:
|
||||
all_keys_deleted = cache_manager.cache.delete_many(*cache_keys)
|
||||
|
||||
if not all_keys_deleted:
|
||||
# expected behavior as keys may expire and cache is not a
|
||||
# persistent storage
|
||||
logger.info(
|
||||
"Some of the cache keys were not deleted in the list %s", cache_keys
|
||||
)
|
||||
|
||||
try:
|
||||
delete_stmt = CacheKey.__table__.delete().where( # pylint: disable=no-member
|
||||
CacheKey.cache_key.in_(cache_keys)
|
||||
)
|
||||
db.session.execute(delete_stmt)
|
||||
db.session.commit()
|
||||
except SQLAlchemyError as ex: # pragma: no cover
|
||||
logger.error(ex)
|
||||
db.session.rollback()
|
||||
return self.response_500(str(ex))
|
||||
db.session.commit()
|
||||
return self.response(201)
|
||||
Reference in New Issue
Block a user