From notifications-return-49992-archive-asf-public=cust-asf.ponee.io@superset.apache.org Wed Sep 2 15:17:17 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 6C317180686 for ; Wed, 2 Sep 2020 17:17:17 +0200 (CEST) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id A30A0121988 for ; Wed, 2 Sep 2020 15:17:16 +0000 (UTC) Received: (qmail 35257 invoked by uid 500); 2 Sep 2020 15:17:16 -0000 Mailing-List: contact notifications-help@superset.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.apache.org Delivered-To: mailing list notifications@superset.apache.org Received: (qmail 35218 invoked by uid 99); 2 Sep 2020 15:17:16 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Sep 2020 15:17:16 +0000 From: =?utf-8?q?GitBox?= To: notifications@superset.apache.org Subject: =?utf-8?q?=5BGitHub=5D_=5Bincubator-superset=5D_dpgaspar_commented_on_a_chan?= =?utf-8?q?ge_in_pull_request_=2310761=3A_feat=3A_=5BWIP=5D_implement_cache_?= =?utf-8?q?invalidation_api?= Message-ID: <159905983639.32230.8726627699931594180.asfpy@gitbox.apache.org> Date: Wed, 02 Sep 2020 15:17:16 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit In-Reply-To: References: dpgaspar commented on a change in pull request #10761: URL: https://github.com/apache/incubator-superset/pull/10761#discussion_r482154191 ########## File path: superset/cache/api.py ########## @@ -0,0 +1,91 @@ +# 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. +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 flask_babel import gettext as _ +from jsonschema import ValidationError + +from superset.cache.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 + + +class CacheRestApi(BaseSupersetModelRestApi): + datamodel = SQLAInterface(CacheKey) + resource_name = "cache" + allow_browser_login = True + class_permission_name = "CacheRestApi" + + @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. + + --- + post: + description: >- + Takes a list of datasources, finds the associated cache records and invalidates them. + requestBody: + description: >- + A list of datasources uuid or the tuples of the database and datasource names + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/CacheInvalidateRequestSchema" + responses: + 201: + $ref: '#/components/responses/201' + 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=_("Request is incorrect: %(error)s", error=error.messages) Review comment: nit: Just use: `return self.response_400(message=error.messages)` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org For additional commands, e-mail: notifications-help@superset.apache.org