com.linkedin.pinot.perf.PerfBenchmarkRunner.java Source code

Java tutorial

Introduction

Here is the source code for com.linkedin.pinot.perf.PerfBenchmarkRunner.java

Source

/**
 * Copyright (C) 2014-2016 LinkedIn Corp. (pinot-core@linkedin.com)
 *
 * Licensed 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 com.linkedin.pinot.perf;

import java.io.File;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.collect.Lists;
import com.linkedin.pinot.common.config.AbstractTableConfig;
import com.linkedin.pinot.common.config.Tenant;
import com.linkedin.pinot.common.config.Tenant.TenantBuilder;
import com.linkedin.pinot.common.utils.TenantRole;
import com.linkedin.pinot.controller.helix.ControllerRequestBuilderUtil;
import com.linkedin.pinot.core.segment.index.SegmentMetadataImpl;

/**
 * Launcher class to set up Pinot for perf testing
 *
 */
public class PerfBenchmarkRunner {
    private static final Logger LOGGER = LoggerFactory.getLogger(PerfBenchmarkRunner.class);

    public static void startComponents(boolean zk, boolean controller, boolean broker, boolean server)
            throws Exception {
        LOGGER.info("Starting components");
        //create conf with default values
        PerfBenchmarkDriverConf conf = new PerfBenchmarkDriverConf();
        conf.setStartBroker(broker);
        conf.setStartController(controller);
        conf.setStartServer(server);
        conf.setStartZookeeper(zk);
        conf.setUploadIndexes(false);
        conf.setRunQueries(false);
        conf.setServerInstanceSegmentTarDir(null);
        conf.setServerInstanceDataDir(null);
        conf.setConfigureResources(false);
        PerfBenchmarkDriver driver = new PerfBenchmarkDriver(conf);
        driver.run();
    }

    /**
     * The segments are already extracted into a directory
     * @throws Exception
     */
    public static void startServerWithPreLoadedSegments(String directory, List<String> offlineTableNames,
            List<String> invertedIndexColumns) throws Exception {
        LOGGER.info("Starting Server and uploading segments.");
        //create conf with default values
        PerfBenchmarkDriverConf conf = new PerfBenchmarkDriverConf();
        conf.setStartBroker(false);
        conf.setStartController(false);
        conf.setStartServer(true);
        conf.setStartZookeeper(false);
        conf.setUploadIndexes(false);
        conf.setRunQueries(false);
        conf.setServerInstanceSegmentTarDir(null);
        conf.setServerInstanceDataDir(directory);
        conf.setConfigureResources(false);
        PerfBenchmarkDriver driver = new PerfBenchmarkDriver(conf);
        driver.run();

        Set<String> tables = new HashSet<String>();
        for (String offlineTableName : offlineTableNames) {
            File[] segments = new File(directory, offlineTableName).listFiles();
            for (File segmentDir : segments) {
                SegmentMetadataImpl segmentMetadata = new SegmentMetadataImpl(segmentDir);
                if (!tables.contains(segmentMetadata.getTableName())) {
                    driver.configureTable(segmentMetadata.getTableName(), invertedIndexColumns);
                    tables.add(segmentMetadata.getTableName());
                }
                driver.addSegment(segmentMetadata);
            }
        }
    }

    public static void main(String[] args) throws Exception {
        if (args.length > 0) {
            if (args[0].equalsIgnoreCase("startAllButServer") || args[0].equalsIgnoreCase("startAll")) {
                startComponents(true, true, true, false);
            }

            if (args[0].equalsIgnoreCase("startServerWithPreLoadedSegments")
                    || args[0].equalsIgnoreCase("startAll")) {
                String offlineTableNames = args[1];
                String indexRootDirectory = args[2];
                List<String> invertedIndexColumns = new ArrayList<>();
                if (args.length == 4) {
                    String[] columns = args[3].split(",");
                    for (int i = 0; i < columns.length; i++) {
                        invertedIndexColumns.add(columns[i].trim());
                    }
                }
                startServerWithPreLoadedSegments(indexRootDirectory,
                        Lists.newArrayList(offlineTableNames.split(",")), invertedIndexColumns);
            }

        } else {
            System.err.println("Expected one of [startAll|startAllButServer|StartServerWithPreLoadedSegments]");
        }
    }
}