apucher commented on a change in pull request #6613: URL: https://github.com/apache/incubator-pinot/pull/6613#discussion_r593485017
########## File path: pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseBrokerRequestHandler.java ########## @@ -180,6 +180,16 @@ public BrokerResponse handleRequest(JsonNode request, @Nullable RequesterIdentit requestStatistics.setRequestId(requestId); requestStatistics.setRequestArrivalTimeMillis(System.currentTimeMillis()); + // first-stage access control to prevent unauthenticated requests from using up resources + // secondary table-level check comes later + boolean hasAccess = _accessControlFactory.create().hasAccess(requesterIdentity, null); Review comment: added ########## File path: pinot-common/src/main/java/org/apache/pinot/common/utils/CommonConstants.java ########## @@ -235,6 +235,9 @@ "pinot.server.instance.realtime.alloc.offheap.direct"; public static final String PREFIX_OF_CONFIG_OF_PINOT_FS_FACTORY = "pinot.server.storage.factory"; public static final String PREFIX_OF_CONFIG_OF_PINOT_CRYPTER = "pinot.server.crypter"; + + public static final String CONFIG_OF_AUTH_TOKEN = "auth.token"; Review comment: added ########## File path: pinot-common/src/main/java/org/apache/pinot/common/utils/CommonConstants.java ########## @@ -304,6 +307,7 @@ public static final String CONFIG_OF_CONTROLLER_HTTPS_ENABLED = "enabled"; public static final String CONFIG_OF_CONTROLLER_HTTPS_PORT = "controller.port"; public static final String CONFIG_OF_SEGMENT_UPLOAD_REQUEST_TIMEOUT_MS = "upload.request.timeout.ms"; + public static final String CONFIG_OF_SEGMENT_UPLOAD_AUTH_TOKEN = "upload.auth.token"; Review comment: added ########## File path: pinot-common/src/main/java/org/apache/pinot/common/utils/CommonConstants.java ########## @@ -353,6 +357,8 @@ public static final String PREFIX_OF_CONFIG_OF_SEGMENT_FETCHER_FACTORY = "segment.fetcher"; public static final String PREFIX_OF_CONFIG_OF_SEGMENT_UPLOADER = "segment.uploader"; public static final String PREFIX_OF_CONFIG_OF_PINOT_CRYPTER = "crypter"; + + public static final String CONFIG_OF_TASK_AUTH_TOKEN = "task.auth.token"; Review comment: added ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org