MySQL Create Table SQL
Table Structure: okayapi_pinot_autotune_config_index:/tablelist/okayapi_pinot_autotune_config_index.html
-- MySQL Table okayapi_pinot_autotune_config_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_autotune_config_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`function_id` bigint(20) NULL COMMENT '',
`start_time` bigint(20) NULL COMMENT '',
`end_time` bigint(20) NULL COMMENT '',
`performance_evaluation_method` varchar(200) NULL COMMENT '',
`autotune_method` varchar(200) NULL COMMENT '',
`base_id` bigint(20) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `function_id` (`function_id`),
KEY `start_time` (`start_time`),
KEY `end_time` (`end_time`),
KEY `performance_evaluation_method` (`performance_evaluation_method`),
KEY `autotune_method` (`autotune_method`),
KEY `base_id` (`base_id`),
KEY `version` (`version`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-autotune配置';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-7 of 7 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
function_id | bigint(20) | 是 | ||||
start_time | bigint(20) | 否 | ||||
end_time | bigint(20) | 否 | ||||
performance_evaluation_method | varchar(200) | 是 | ||||
autotune_method | varchar(200) | 是 | ||||
base_id | bigint(20) | 否 | ||||
version | int(10) | 是 |