npawar commented on a change in pull request #6840: URL: https://github.com/apache/incubator-pinot/pull/6840#discussion_r621587691
########## File path: pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/TableConfigsRestletResource.java ########## @@ -0,0 +1,358 @@ +/** + * 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. + */ +package org.apache.pinot.controller.api.resources; + +import com.fasterxml.jackson.databind.node.ArrayNode; +import com.google.common.base.Preconditions; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import java.io.IOException; +import java.util.Collections; +import java.util.List; +import javax.inject.Inject; +import javax.ws.rs.DELETE; +import javax.ws.rs.DefaultValue; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import org.apache.pinot.common.metrics.ControllerMeter; +import org.apache.pinot.common.metrics.ControllerMetrics; +import org.apache.pinot.controller.ControllerConf; +import org.apache.pinot.controller.api.access.AccessControlFactory; +import org.apache.pinot.controller.api.access.AccessControlUtils; +import org.apache.pinot.controller.api.access.AccessType; +import org.apache.pinot.controller.api.access.Authenticate; +import org.apache.pinot.controller.helix.core.PinotHelixResourceManager; +import org.apache.pinot.segment.local.utils.SchemaUtils; +import org.apache.pinot.segment.local.utils.TableConfigUtils; +import org.apache.pinot.spi.config.TableConfigs; +import org.apache.pinot.spi.config.table.TableConfig; +import org.apache.pinot.spi.data.Schema; +import org.apache.pinot.spi.utils.JsonUtils; +import org.apache.pinot.spi.utils.builder.TableNameBuilder; +import org.glassfish.grizzly.http.server.Request; +import org.slf4j.LoggerFactory; + + +/** + * Endpoints for CRUD of {@link TableConfigs}. + * {@link TableConfigs} is a group of the offline table config, realtime table config and schema for the same tableName. + */ +@Api(tags = Constants.TABLE_TAG) +@Path("/") +public class TableConfigsRestletResource { + + public static org.slf4j.Logger LOGGER = LoggerFactory.getLogger(TableConfigsRestletResource.class); + + @Inject + PinotHelixResourceManager _pinotHelixResourceManager; + + @Inject + ControllerConf _controllerConf; + + @Inject + ControllerMetrics _controllerMetrics; + + @Inject + AccessControlFactory _accessControlFactory; + AccessControlUtils _accessControlUtils = new AccessControlUtils(); + + /** + * List all {@link TableConfigs}, where each is a group of the offline table config, realtime table config and schema for the same tableName. + * This is equivalent to a list of all raw table names + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + @Path("/tableConfigs") + @Authenticate(AccessType.READ) + @ApiOperation(value = "Lists all TableConfigs in cluster", notes = "Lists all TableConfigs in cluster") + public String listConfigs() { + try { + List<String> rawTableNames = _pinotHelixResourceManager.getAllRawTables(); + Collections.sort(rawTableNames); + + ArrayNode configsList = JsonUtils.newArrayNode(); + for (String rawTableName : rawTableNames) { + configsList.add(rawTableName); + } + return configsList.toString(); + } catch (Exception e) { + throw new ControllerApplicationException(LOGGER, e.getMessage(), Response.Status.INTERNAL_SERVER_ERROR, e); + } + } + + /** + * Gets the {@link TableConfigs} for the provided raw tableName, by fetching the offline table config for tableName_OFFLINE, + * realtime table config for tableName_REALTIME and schema for tableName + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + @Path("/tableConfigs/{tableName}") + @Authenticate(AccessType.READ) + @ApiOperation(value = "Get the TableConfigs for a given raw tableName", notes = "Get the TableConfigs for a given raw tableName") + public String getConfig( + @ApiParam(value = "Raw table name", required = true) @PathParam("tableName") String tableName) { + + try { + Schema schema = _pinotHelixResourceManager.getSchema(tableName); + TableConfig offlineTableConfig = _pinotHelixResourceManager.getOfflineTableConfig(tableName); + TableConfig realtimeTableConfig = _pinotHelixResourceManager.getRealtimeTableConfig(tableName); + TableConfigs config = new TableConfigs(tableName, schema, offlineTableConfig, realtimeTableConfig); + return config.toPrettyJsonString(); + } catch (Exception e) { + throw new ControllerApplicationException(LOGGER, e.getMessage(), Response.Status.INTERNAL_SERVER_ERROR, e); + } + } + + /** + * Creates a {@link TableConfigs} using the <code>tableConfigsStr</code>, by creating the schema, + * followed by the realtime tableConfig and offline tableConfig as applicable, from the {@link TableConfigs}. + * Validates the configs before applying. + */ + @POST + @Produces(MediaType.APPLICATION_JSON) + @Path("/tableConfigs") + @ApiOperation(value = "Add the TableConfigs using the tableConfigsStr json", notes = "Add the TableConfigs using the tableConfigsStr json") + public SuccessResponse addConfig(String tableConfigsStr, @Context HttpHeaders httpHeaders, @Context Request request) { + TableConfigs tableConfigs; + try { + tableConfigs = JsonUtils.stringToObject(tableConfigsStr, TableConfigs.class); + validateConfig(tableConfigs); + } catch (Exception e) { + throw new ControllerApplicationException(LOGGER, String.format("Invalid TableConfigs. %s", e.getMessage()), + Response.Status.BAD_REQUEST, e); + } + + TableConfig offlineTableConfig = tableConfigs.getOffline(); + TableConfig realtimeTableConfig = tableConfigs.getRealtime(); + Schema schema = tableConfigs.getSchema(); + + try { + String endpointUrl = request.getRequestURL().toString(); + validatePermissions(schema.getSchemaName(), AccessType.CREATE, httpHeaders, endpointUrl); + + if (offlineTableConfig != null) { + tuneConfig(offlineTableConfig, schema); + validatePermissions(offlineTableConfig.getTableName(), AccessType.CREATE, httpHeaders, endpointUrl); + } + if (realtimeTableConfig != null) { + tuneConfig(realtimeTableConfig, schema); + validatePermissions(realtimeTableConfig.getTableName(), AccessType.CREATE, httpHeaders, endpointUrl); + } + + _pinotHelixResourceManager.addSchema(schema, true); Review comment: Done. -- 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