This is an automated email from the ASF dual-hosted git repository.
larsh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/master by this push:
new 862db9f PHOENIX-5340 Set OMID's wait strategy to LOW_CPU for tests.
862db9f is described below
commit 862db9f831535c55beab460ba00f247ae5273c9e
Author: Lars Hofhansl <[email protected]>
AuthorDate: Wed Jun 12 13:39:33 2019 -0700
PHOENIX-5340 Set OMID's wait strategy to LOW_CPU for tests.
---
.../java/org/apache/phoenix/transaction/OmidTransactionProvider.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
b/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
index be6145d..f81bc14 100644
---
a/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
+++
b/phoenix-core/src/main/java/org/apache/phoenix/transaction/OmidTransactionProvider.java
@@ -32,6 +32,7 @@ import org.apache.omid.transaction.TTable;
import org.apache.omid.tso.TSOMockModule;
import org.apache.omid.tso.TSOServer;
import org.apache.omid.tso.TSOServerConfig;
+import org.apache.omid.tso.TSOServerConfig.WAIT_STRATEGY;
import org.apache.omid.tso.client.OmidClientConfiguration;
import org.apache.omid.tso.client.TSOClient;
import org.apache.phoenix.coprocessor.OmidGCProcessor;
@@ -127,6 +128,7 @@ public class OmidTransactionProvider implements
PhoenixTransactionProvider {
tsoConfig.setPort(port);
tsoConfig.setConflictMapSize(config.getInt(OMID_TSO_CONFLICT_MAP_SIZE,
DEFAULT_OMID_TSO_CONFLICT_MAP_SIZE));
tsoConfig.setTimestampType(config.get(OMID_TSO_TIMESTAMP_TYPE,
DEFAULT_OMID_TSO_TIMESTAMP_TYPE));
+ tsoConfig.setWaitStrategy(WAIT_STRATEGY.LOW_CPU.toString());
Injector injector = Guice.createInjector(new TSOMockModule(tsoConfig));
tso = injector.getInstance(TSOServer.class);