PHOENIX-4701 Write client-side metrics asynchronously to SYSTEM.LOG(addendum 2)


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/b2829828
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/b2829828
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/b2829828

Branch: refs/heads/4.x-cdh5.12
Commit: b2829828eeef92d546f88277413f045365d1771b
Parents: 7bf23ea
Author: James Taylor <jtay...@salesforce.com>
Authored: Wed May 16 21:37:02 2018 -0700
Committer: James Taylor <jtay...@salesforce.com>
Committed: Wed May 16 21:49:16 2018 -0700

----------------------------------------------------------------------
 .../src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/b2829828/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java
----------------------------------------------------------------------
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java
index 1160f4e..460b22f 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryWithLimitIT.java
@@ -59,9 +59,9 @@ public class QueryWithLimitIT extends 
BaseUniqueNamesOwnClusterIT {
         // Must update config before starting server
         props.put(QueryServices.STATS_GUIDEPOST_WIDTH_BYTES_ATTRIB, 
Long.toString(50));
         props.put(QueryServices.QUEUE_SIZE_ATTRIB, Integer.toString(1));
-        props.put(QueryServices.DROP_METADATA_ATTRIB, Boolean.TRUE.toString());
-        props.put(QueryServices.SEQUENCE_SALT_BUCKETS_ATTRIB, 
Integer.toString(0)); // Prevents RejectedExecutionException when deleting 
sequences
+        props.put(QueryServices.SEQUENCE_SALT_BUCKETS_ATTRIB, 
Integer.toString(0)); // Prevents RejectedExecutionException when creatomg 
sequence table
         props.put(QueryServices.THREAD_POOL_SIZE_ATTRIB, Integer.toString(4));
+        props.put(QueryServices.LOG_SALT_BUCKETS_ATTRIB, Integer.toString(0)); 
// Prevents RejectedExecutionException when creating log table
         setUpTestDriver(new ReadOnlyProps(props.entrySet().iterator()));
     }
     

Reply via email to