Class BootstrapTableCommand

  • All Implemented Interfaces:
    Callable<Integer>, Command

    public class BootstrapTableCommand
    extends AbstractBaseAdminCommand
    implements Command
    The command to bootstrap a Pinot table from a directory with table schema/config/ingestionJobSpec/raw data files. Sample usage: pinot-admin.sh BootstrapTable -dir <path-to-table-configs-directory> The directory structure is based on current example conventions: For offline table: ``` / /_schema.json /_offline_table_config.json /ingestionJobSpec.yaml /rawdata/... ``` For realtime table: ``` / /_schema.json /_realtime_table_config.json ``` For hybrid table: ``` / /_schema.json /_offline_table_config.json /_realtime_table_config.json /ingestionJobSpec.yaml /rawdata/... ```