influxdb-zabbix icon indicating copy to clipboard operation
influxdb-zabbix copied to clipboard

mysql problems generating indexes

Open RandomReaper opened this issue 3 years ago • 0 comments

Those commands fails because some indexes are not unique:

 CREATE UNIQUE INDEX idx_history_clock_ns_itemid
 	ON history (clock) USING btree;
 CREATE UNIQUE INDEX idx_history_uint_clock_ns_itemid
 	ON history_uint (clock) USING btree;

Should I run them without "UNIQUE"?

RandomReaper avatar Sep 21 '20 12:09 RandomReaper