错误 MY-011542 Repl 插件group_replication报告:"表 repl_test 没有任何主键



我最近安装了一个InnoDB群集,并尝试创建一个没有任何主键或等效的表,以测试群集索引概念,其中InnoDB内部生成了一个隐藏的群集索引,名为gen_clust_index在合成列上的gen_clust_index如果表没有主键或合适的唯一索引,则包含行ID值"。

我创建了表如下:

create table repl_test (Name varchar(10));

检查了gen_clust_index的创建:

select * from mysql.innodb_index_stats where database_name='test' and table_name = 'repl_test';
+---------------+------------+-----------------+---------------------+--------------+------------+-------------+-----------------------------------+
| database_name | table_name | index_name      | last_update         | stat_name    | stat_value | sample_size | stat_description                  |
+---------------+------------+-----------------+---------------------+--------------+------------+-------------+-----------------------------------+
| test      | repl_test  | GEN_CLUST_INDEX | 2019-02-22 06:29:26 | n_diff_pfx01 |          0 |           1 | DB_ROW_ID                         |
| test      | repl_test  | GEN_CLUST_INDEX | 2019-02-22 06:29:26 | n_leaf_pages |          1 |        NULL | Number of leaf pages in the index |
| test      | repl_test  | GEN_CLUST_INDEX | 2019-02-22 06:29:26 | size         |          1 |        NULL | Number of pages in the index      |
+---------------+------------+-----------------+---------------------+--------------+------------+-------------+-----------------------------------+
3 rows in set (0.00 sec)

但是,当我尝试插入行时,我会收到以下错误:

insert into repl_test values ('John');
ERROR 3098 (HY000): The table does not comply with the requirements by an external plugin.
2019-02-22T14:32:53.177700Z 594022 [ERROR] [MY-011542] [Repl] Plugin group_replication reported: 'Table repl_test does not have any PRIMARY KEY. This is not compatible with Group Replication.'

下面是我的conf文件:

[client]
port            = 3306
socket          = /tmp/mysql.sock
[mysqld_safe]
socket          = /tmp/mysql.sock
[mysqld]
socket          = /tmp/mysql.sock
port            = 3306
basedir         = /mysql/product/8.0/TEST
datadir         = /mysql/data/TEST/innodb_data
log-error       = /mysql/admin/TEST/innodb_logs/mysql.log
log_bin         = /mysql/binlog/TEST/innodb_logs/mysql-bin
server-id=1
max_connections = 500
open_files_limit = 65535
expire_logs_days = 15
innodb_flush_log_at_trx_commit=1
sync_binlog=1
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
binlog_checksum = NONE
enforce_gtid_consistency = ON
gtid_mode = ON
relay-log=<<hostname>>-relay-bin

我的mysql版本:x86_64上的Linux -Glibc2.12的mySQL VER 8.0.11(MySQL社区服务器-GPL)

PK的自动生成应在非群集设置方面正常工作。但是,InnoDB群集(组复制)和Galera需要A 用户 PK(或可以促进的UNIQUE)。

如果您愿意,请使用bugs.mysql.com提交A documentation 错误,抱怨此限制尚不清楚。确保指向需要修复的页面。

最新更新