vitess.io/vitess@v0.16.2/go/vt/sidecardb/schema/vreplication/vreplication.sql (about)

     1  /*
     2  Copyright 2023 The Vitess Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  CREATE TABLE IF NOT EXISTS _vt.vreplication
    18  (
    19      `id`                    int              NOT NULL AUTO_INCREMENT,
    20      `workflow`              varbinary(1000)           DEFAULT NULL,
    21      `source`                mediumblob       NOT NULL,
    22      `pos`                   varbinary(10000) NOT NULL,
    23      `stop_pos`              varbinary(10000)          DEFAULT NULL,
    24      `max_tps`               bigint           NOT NULL,
    25      `max_replication_lag`   bigint           NOT NULL,
    26      `cell`                  varbinary(1000)           DEFAULT NULL,
    27      `tablet_types`          varbinary(100)            DEFAULT NULL,
    28      `time_updated`          bigint           NOT NULL,
    29      `transaction_timestamp` bigint           NOT NULL,
    30      `state`                 varbinary(100)   NOT NULL,
    31      `message`               varbinary(1000)           DEFAULT NULL,
    32      `db_name`               varbinary(255)   NOT NULL,
    33      `rows_copied`           bigint           NOT NULL DEFAULT '0',
    34      `tags`                  varbinary(1024)  NOT NULL DEFAULT '',
    35      `time_heartbeat`        bigint           NOT NULL DEFAULT '0',
    36      `workflow_type`         int              NOT NULL DEFAULT '0',
    37      `time_throttled`        bigint           NOT NULL DEFAULT '0',
    38      `component_throttled`   varchar(255)     NOT NULL DEFAULT '',
    39      `workflow_sub_type`     int              NOT NULL DEFAULT '0',
    40      `defer_secondary_keys`  tinyint(1)       NOT NULL DEFAULT '0',
    41      PRIMARY KEY (`id`),
    42      KEY `workflow_idx` (`workflow`(64))
    43  ) ENGINE = InnoDB