Add query analyzer condition for full collection sorts when the collection size exceeds the limit.  Add QueryAnalyzer tests.
diff --git a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/IndexFig.java b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/IndexFig.java
index e23961c..4091e5e 100644
--- a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/IndexFig.java
+++ b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/IndexFig.java
@@ -225,7 +225,7 @@
     int getQueryBreakerErrorSortPredicateCount();
 
 
-    @Default("500000000L") // 500 MB
+    @Default("500000000") // 500 MB
     @Key(USERGRID_QUERYANALYZER_COLLECTIONSIZE)
     long getQueryBreakerErrorCollectionSizeBytes();
 
diff --git a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/QueryAnalyzer.java b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/QueryAnalyzer.java
index 86f1e5d..6d3cd92 100644
--- a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/QueryAnalyzer.java
+++ b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/QueryAnalyzer.java
@@ -31,6 +31,7 @@
     public static final String v_operand_count = "operand_count_exceeded";
     public static final String v_large_collection = "large_collection_size_bytes";
     public static final String v_large_index = "large_index_size_bytes";
+    public static final String v_full_collection_sort = "full_collection_sort";
 
     public static final String k_violation = "violation";
     public static final String k_limit = "limit";
@@ -69,6 +70,19 @@
                 put(k_limit, errorCollectionSizeBytes);
                 put(k_actual, collectionSizeInBytes);
             }});
+
+            // query like "select * order by created asc"
+            if(parsedQuery.getSelectFieldMappings().size() < 1 &&
+                !parsedQuery.getOriginalQuery().toLowerCase().contains("where") &&
+                parsedQuery.getSortPredicates().size() > 0 ){
+
+                violations.add(new HashMap<String, Object>(3){{
+                    put(k_violation, v_full_collection_sort);
+                    put(k_limit, null);
+                    put(k_actual, null);
+                }});
+            }
+
         }
 
         // complex queries can be determined from the # of operands and sort predicates
diff --git a/stack/corepersistence/queryindex/src/test/java/org/apache/usergrid/persistence/index/impl/QueryAnalyzerTest.java b/stack/corepersistence/queryindex/src/test/java/org/apache/usergrid/persistence/index/impl/QueryAnalyzerTest.java
new file mode 100644
index 0000000..8c319c0
--- /dev/null
+++ b/stack/corepersistence/queryindex/src/test/java/org/apache/usergrid/persistence/index/impl/QueryAnalyzerTest.java
@@ -0,0 +1,169 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  The ASF licenses this file to You
+ * under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.  For additional information regarding
+ * copyright in this work, please see the NOTICE file in the top level
+ * directory of this distribution.
+ */
+package org.apache.usergrid.persistence.index.impl;
+
+
+import java.util.List;
+import java.util.Map;
+
+import org.apache.usergrid.persistence.index.IndexFig;
+import org.apache.usergrid.persistence.index.QueryAnalyzer;
+import org.apache.usergrid.persistence.index.query.ParsedQuery;
+import org.apache.usergrid.persistence.index.query.ParsedQueryBuilder;
+import org.junit.Before;
+import org.junit.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+import static org.mockito.Mockito.*;
+
+public class QueryAnalyzerTest extends BaseIT {
+
+    private static final Logger logger = LoggerFactory.getLogger(QueryAnalyzerTest.class);
+
+    private IndexFig fig;
+
+    @Before
+    public void setup() {
+
+        // the mock will return 0/empty values for all fig items
+        fig = mock ( IndexFig.class );
+
+    }
+
+    @Test
+    public void testNoViolations() throws Throwable {
+
+        when ( fig.getQueryBreakerErrorSortPredicateCount() ).thenReturn( 5 );
+        when ( fig.getQueryBreakerErrorOperandCount() ).thenReturn( 5 );
+        when ( fig.getQueryBreakerErrorIndexSizeBytes() ).thenReturn( 5L );
+        when ( fig.getQueryBreakerErrorCollectionSizeBytes() ).thenReturn( 5L );
+
+        ParsedQuery parsedQuery;
+        List<Map<String,Object>> violations;
+
+
+        parsedQuery = ParsedQueryBuilder.build("select * order by created asc");
+        violations = QueryAnalyzer.analyze(parsedQuery, 1, 1, fig );
+        assertEquals(0, violations.size());
+
+        parsedQuery = ParsedQueryBuilder.build("select name='value' order by created asc");
+        violations = QueryAnalyzer.analyze(parsedQuery, 1, 1, fig );
+        assertEquals(0, violations.size());
+
+        parsedQuery = ParsedQueryBuilder.build("where name='value'");
+        violations = QueryAnalyzer.analyze(parsedQuery, 1, 1, fig );
+        assertEquals(0, violations.size());
+
+
+    }
+
+
+    @Test
+    public void IndexSizeViolation() throws Throwable {
+
+
+        ParsedQuery parsedQuery = ParsedQueryBuilder.build("select created order by created asc");
+        List<Map<String,Object>> violations;
+        violations = QueryAnalyzer.analyze(parsedQuery, 0, 1, fig );
+        boolean violationExists = violationExists(violations, QueryAnalyzer.v_large_index);
+
+        if(!violationExists){
+            fail("Index Size Violation should be present");
+        }
+
+    }
+
+    @Test
+    public void collectionSizeViolation() throws Throwable {
+
+        // the sort violation is only tripped when the collection size warning is tripped
+        when ( fig.getQueryBreakerErrorCollectionSizeBytes() ).thenReturn( 0L );
+
+        ParsedQuery parsedQuery = ParsedQueryBuilder.build("select created order by created asc");
+        List<Map<String,Object>> violations;
+        violations = QueryAnalyzer.analyze(parsedQuery, 1, 1, fig );
+        boolean violationExists = violationExists(violations, QueryAnalyzer.v_large_collection);
+
+        if(!violationExists){
+            fail("Collection Size Violation should be present");
+        }
+
+    }
+
+
+    @Test
+    public void fullSortViolation() throws Throwable {
+
+        ParsedQuery parsedQuery = ParsedQueryBuilder.build("select * order by created asc");
+        List<Map<String,Object>> violations;
+        violations = QueryAnalyzer.analyze(parsedQuery, 1, 1, fig );
+        boolean violationExists = violationExists(violations, QueryAnalyzer.v_full_collection_sort);
+
+        if(!violationExists){
+            fail("Full Collection Sort Violation should be present");
+        }
+
+    }
+
+    @Test
+    public void operandCountViolation() throws Throwable {
+
+        ParsedQuery parsedQuery = ParsedQueryBuilder.build("where name='value'");
+        List<Map<String,Object>> violations;
+        violations = QueryAnalyzer.analyze(parsedQuery, 0, 0, fig );
+        boolean violationExists = violationExists(violations, QueryAnalyzer.v_operand_count);
+
+        if(!violationExists){
+            fail("Operand Count Violation should be present");
+        }
+
+    }
+
+    @Test
+    public void predicateCountViolation() throws Throwable {
+
+        ParsedQuery parsedQuery = ParsedQueryBuilder.build("where name='value'");
+        List<Map<String,Object>> violations;
+        violations = QueryAnalyzer.analyze(parsedQuery, 0, 0, fig );
+        boolean violationExists = violationExists(violations, QueryAnalyzer.v_operand_count);
+
+        if(!violationExists){
+            fail("Operand Count Violation should be present");
+        }
+
+    }
+
+
+
+    private boolean violationExists(final List<Map<String,Object>> violations, final String expectedViolation){
+        for ( Map<String, Object> violation : violations ){
+            if (violation.get(QueryAnalyzer.k_violation) == expectedViolation){
+                return true;
+            }
+
+        }
+        return false;
+    }
+
+}
+
+
+