在 jdbc voltdb 客户端上设置 TopologyChangeAware
setting TopologyChangeAware on jdbc voltdb client
我正在与 voltdb 建立 jdbc 连接,如何建立此连接 TopologyChangeAware。我这里用的是 Hikari
终于得到答案
For now, the jdbc client does not have a TopologyChangeAware property, but there is a similar one called autoreconnect that we can put into your connection URL.
这里的文档中有描述:usingvoltdb jdbc
看起来像这样:
Connection c = DriverManager.getConnection(
"jdbc:voltdb://svr1:21212,svr2:21212?autoreconnect=true");
设置为 true 时,jdbc 客户端将自动尝试重新连接到任何断开连接的节点,直到它们重新加入集群。
我正在与 voltdb 建立 jdbc 连接,如何建立此连接 TopologyChangeAware。我这里用的是 Hikari
终于得到答案
For now, the jdbc client does not have a TopologyChangeAware property, but there is a similar one called autoreconnect that we can put into your connection URL.
这里的文档中有描述:usingvoltdb jdbc
看起来像这样:
Connection c = DriverManager.getConnection(
"jdbc:voltdb://svr1:21212,svr2:21212?autoreconnect=true");
设置为 true 时,jdbc 客户端将自动尝试重新连接到任何断开连接的节点,直到它们重新加入集群。