3

With normal Mysql replication we can ignore tables with: replicate_ignore_table

I can't find any information on whether or not it's possible to do this with Galera cluster replication.

I'd like to ignore a table that is not important so that no cluster wide locks have to be acquired when performing an action on the database.

gijs007
  • 233
  • 1
  • 7
  • 19

2 Answers2

1

One workaround is to make the table MyISAM or MEMORY.

Rick James
  • 135,179
  • 13
  • 127
  • 222
0

For ignore a table that is not important, convert this like MyISAM and the galera cluster ignore this automaticaly.

el fuser
  • 606
  • 1
  • 6
  • 10