You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
4.4 KiB

  1. package My::Suite::GALERA_3NODES;
  2. use lib 'suite';
  3. use wsrep::common;
  4. @ISA = qw(My::Suite);
  5. return wsrep_not_ok() if wsrep_not_ok();
  6. push @::global_suppressions,
  7. (
  8. qr(WSREP: wsrep_sst_receive_address is set to '127\.0\.0\.1),
  9. qr(WSREP: Could not open saved state file for reading: ),
  10. qr(WSREP: Could not open state file for reading: ),
  11. qr(WSREP: Gap in state sequence\. Need state transfer\.),
  12. qr(WSREP: Failed to prepare for incremental state transfer:),
  13. qr(WSREP: .*down context.*),
  14. qr(WSREP: Failed to send state UUID:),
  15. qr(WSREP: last inactive check more than .+ skipping check),
  16. qr(WSREP: Releasing seqno [0-9]+ before [0-9]+ was assigned\.),
  17. qr|WSREP: access file\(.*gvwstate.dat\) failed ?\(No such file or directory\)|,
  18. qr(WSREP: Quorum: No node with complete state),
  19. qr(WSREP: Initial position was provided by configuration or SST, avoiding override),
  20. qr|WSREP: discarding established \(time wait\) |,
  21. qr(WSREP: There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside\. Will use that one\.),
  22. qr(WSREP: evs::proto.*),
  23. qr|WSREP: Ignoring possible split-brain \(allowed by configuration\) from view:|,
  24. qr(WSREP: no nodes coming from prim view, prim not possible),
  25. qr(WSREP: Member .+ ?requested state transfer from .+ but it is impossible to select State Transfer donor: Resource temporarily unavailable),
  26. qr(WSREP: user message in state LEAVING),
  27. qr(WSREP: .* sending install message failed: (Transport endpoint|Socket) is not connected),
  28. qr(WSREP: .* sending install message failed: Resource temporarily unavailable),
  29. qr(WSREP: Maximum writeset size exceeded by ),
  30. qr(WSREP: transaction size exceeded),
  31. qr(WSREP: RBR event ),
  32. qr(WSREP: Ignoring error for TO isolated action: ),
  33. qr(WSREP: transaction size limit ),
  34. qr(WSREP: rbr write fail, ),
  35. qr(WSREP: .*Backend not supported: foo),
  36. qr(WSREP: .*Failed to initialize backend using ),
  37. qr(WSREP: .*Failed to open channel 'my_wsrep_cluster' at ),
  38. qr(WSREP: gcs connect failed: Socket type not supported),
  39. qr(WSREP: failed to open gcomm backend connection: 110: failed to reach primary view: 110 .*),
  40. qr(WSREP: .*Failed to open backend connection: -110 ),
  41. qr(WSREP: .*Failed to open channel 'my_wsrep_cluster' at ),
  42. qr(WSREP: gcs connect failed: Connection timed out),
  43. qr|WSREP: wsrep::connect\(.*\) failed: 7|,
  44. qr(WSREP: SYNC message from member .+ ?in non-primary configuration\. Ignored\.),
  45. qr(WSREP: Could not find peer:),
  46. qr(WSREP: TO isolation failed for: ),
  47. qr|WSREP: gcs_caused\(\) returned |,
  48. qr|WSREP: Protocol violation\. JOIN message sender .+ ?is not in state transfer \(SYNCED\)\. Message ignored\.|,
  49. qr|WSREP: Protocol violation\. JOIN message sender .+ ?is not in state transfer \(JOINED\)\. Message ignored\.|,
  50. qr|WSREP: Unsupported protocol downgrade: incremental data collection disabled\. Expect abort\.|,
  51. qr(WSREP: Action message in non-primary configuration from member [0-9]*),
  52. qr(WSREP: Last Applied Action message in non-primary configuration from member [0-9]*),
  53. qr(WSREP: discarding established ),
  54. qr|WSREP: .*core_handle_uuid_msg|,
  55. qr(WSREP: --wsrep-causal-reads=ON takes precedence over --wsrep-sync-wait=0\. WSREP_SYNC_WAIT_BEFORE_READ is on),
  56. qr|WSREP: JOIN message from member .+ ?in non-primary configuration\. Ignored\.|,
  57. qr|WSREP: .*Query apply failed:|,
  58. qr(WSREP: Ignoring error),
  59. qr(WSREP: Failed to remove page file ),
  60. qr(WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to ),
  61. qr+WSREP: Sending JOIN failed: -107 \((Transport endpoint|Socket) is not connected\)\. Will retry in new primary component\.+,
  62. qr+WSREP: Send action \{.* STATE_REQUEST\} returned -107 \((Transport endpoint|Socket) is not connected\)+,
  63. qr|WSREP: Trying to continue unpaused monitor|,
  64. qr|WSREP: Wait for gtid returned error 3 while waiting for prior transactions to commit before setting position|,
  65. qr|WSREP: Failed to report last committed|,
  66. );
  67. sub which($) { return `sh -c "command -v $_[0]"` }
  68. sub skip_combinations {
  69. my %skip = ();
  70. $skip{'include/have_mariabackup.inc'} = 'Need socket statistics utility'
  71. unless which("lsof") || which("sockstat") || which("ss");
  72. %skip;
  73. }
  74. bless { };