Hi, > verify that each node in the cluster properly executed an update query > initiated from any of them
The JDBC driver connects to all cluster instances and update statement are sent to both cluster instances from the JDBC driver. The two cluster instances don't actually have a direct connection (no cluster interconnect). Currently there is no way to check if the update was sent to both or only one of them. > Solution found; Append ";CLUSTER=''" to individual database URLs to be > able to connect to it in isolation instead of connecting to the > cluster. This will disable the cluster mode. This is slightly related to your problem: I have added a feature that lets you detect if one cluster node is stopped or not: http://www.h2database.com/html/advanced.html#clustering "Detect Which Cluster Instances are Running" Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=.
