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 2015/10/26 18:54:40 UTC

usergrid git commit: Set the default shard size to 50k, not 500k.

Repository: usergrid
Updated Branches:
  refs/heads/2.1-release b025dda98 -> 5eed9787a


Set the default shard size to 50k, not 500k.


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

Branch: refs/heads/2.1-release
Commit: 5eed9787a820f2856ec9bdccac2caa710460d9ad
Parents: b025dda
Author: Michael Russo <mi...@gmail.com>
Authored: Mon Oct 26 10:54:34 2015 -0700
Committer: Michael Russo <mi...@gmail.com>
Committed: Mon Oct 26 10:54:34 2015 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/usergrid/persistence/graph/GraphFig.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/5eed9787/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/GraphFig.java
----------------------------------------------------------------------
diff --git a/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/GraphFig.java b/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/GraphFig.java
index f0df7ff..ecb5b19 100644
--- a/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/GraphFig.java
+++ b/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/GraphFig.java
@@ -109,7 +109,7 @@ public interface GraphFig extends GuicyFig {
     double getShardRepairChance();
 
 
-    @Default( "500000" )
+    @Default( "50000" )
     @Key( SHARD_SIZE )
     long getShardSize();