You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by mr...@apache.org on 2016/06/21 16:25:48 UTC

usergrid git commit: Bump up the hystrix thread pool sizes

Repository: usergrid
Updated Branches:
  refs/heads/hotfix-2.0.0 f89bbdbc0 -> 9626b5ba8


Bump up the hystrix thread  pool sizes


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

Branch: refs/heads/hotfix-2.0.0
Commit: 9626b5ba8f4740377e90293ede5547a1d7d88bac
Parents: f89bbdb
Author: Michael Russo <mr...@apigee.com>
Authored: Tue Jun 21 09:25:23 2016 -0700
Committer: Michael Russo <mr...@apigee.com>
Committed: Tue Jun 21 09:25:23 2016 -0700

----------------------------------------------------------------------
 .../usergrid/persistence/core/hystrix/HystrixCassandra.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/9626b5ba/stack/corepersistence/common/src/main/java/org/apache/usergrid/persistence/core/hystrix/HystrixCassandra.java
----------------------------------------------------------------------
diff --git a/stack/corepersistence/common/src/main/java/org/apache/usergrid/persistence/core/hystrix/HystrixCassandra.java b/stack/corepersistence/common/src/main/java/org/apache/usergrid/persistence/core/hystrix/HystrixCassandra.java
index 7d5316f..857f265 100644
--- a/stack/corepersistence/common/src/main/java/org/apache/usergrid/persistence/core/hystrix/HystrixCassandra.java
+++ b/stack/corepersistence/common/src/main/java/org/apache/usergrid/persistence/core/hystrix/HystrixCassandra.java
@@ -41,14 +41,14 @@ public class HystrixCassandra {
      */
     public static final HystrixCommand.Setter
             USER_GROUP = HystrixCommand.Setter.withGroupKey(   HystrixCommandGroupKey.Factory.asKey( "user" ) ).andThreadPoolPropertiesDefaults(
-            HystrixThreadPoolProperties.Setter().withCoreSize( 100 ) );
+            HystrixThreadPoolProperties.Setter().withCoreSize( 300 ) );
 
     /**
      * Command group for asynchronous operations
      */
     public static final HystrixCommand.Setter
             ASYNC_GROUP = HystrixCommand.Setter.withGroupKey( HystrixCommandGroupKey.Factory.asKey( "async" ) ).andThreadPoolPropertiesDefaults(
-            HystrixThreadPoolProperties.Setter().withCoreSize( 50 ) );
+            HystrixThreadPoolProperties.Setter().withCoreSize( 100 ) );
 
 
     /**