Repository: incubator-usergrid Updated Branches: refs/heads/USERGRID-250-buffer-size-fix b240c6f70 -> 0a92bee79
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/USERGRID-250-buffer-size-fix Commit: 0a92bee7988cb2a5207aef1c5dff5cd4c23c2f8a Parents: b240c6f Author: Todd Nine <[email protected]> Authored: Fri Nov 21 14:18:21 2014 -0700 Committer: Todd Nine <[email protected]> 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();
