You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sf...@apache.org on 2014/11/21 22:35:57 UTC

[19/19] incubator-usergrid git commit: Setting to current default of 1k. We need to refactor this setting to be common between all modules and enforced in all modules.

Setting to current default of 1k.  We need to refactor this setting to be common between all modules and enforced in all modules.


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

Branch: refs/heads/two-dot-o
Commit: 0a92bee7988cb2a5207aef1c5dff5cd4c23c2f8a
Parents: b240c6f
Author: Todd Nine <tn...@apigee.com>
Authored: Fri Nov 21 14:18:21 2014 -0700
Committer: Todd Nine <tn...@apigee.com>
Committed: Fri Nov 21 14:18:21 2014 -0700

----------------------------------------------------------------------
 .../persistence/collection/serialization/SerializationFig.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/0a92bee7/stack/corepersistence/collection/src/main/java/org/apache/usergrid/persistence/collection/serialization/SerializationFig.java
----------------------------------------------------------------------
diff --git a/stack/corepersistence/collection/src/main/java/org/apache/usergrid/persistence/collection/serialization/SerializationFig.java b/stack/corepersistence/collection/src/main/java/org/apache/usergrid/persistence/collection/serialization/SerializationFig.java
index 9fb04d1..381a24e 100644
--- a/stack/corepersistence/collection/src/main/java/org/apache/usergrid/persistence/collection/serialization/SerializationFig.java
+++ b/stack/corepersistence/collection/src/main/java/org/apache/usergrid/persistence/collection/serialization/SerializationFig.java
@@ -61,9 +61,10 @@ public interface SerializationFig extends GuicyFig {
 
     /**
      * The maximum amount of entities we can load in a single request
+     * TODO, change this and move it into a common setting that both query and collection share
      */
     @Key( "collection.max.load.size" )
-    @Default( "100" )
+    @Default( "1000" )
     int getMaxLoadSize();