zoukankan      html  css  js  c++  java
  • kudu+impala 27亿条数据的高并发海量分析压测

    SQL:select a.tid,count(*),sum(std_mileage) from kudu_via_city_pdi3 as a where entry_time between "+entry_time_start+" and "+entry_time_end+" group by a.tid order by sum(std_mileage) asc limit 1 offset 0

    JAVA客户端程序:

    package org.kudu;
    
    import java.sql.*;
    import java.util.Random;
    
    public class Yace {
    
        public static void main(String[] args) throws Exception {
    
            for(int i=0;i<50;i++) {
    
                Thread t1 = new Thread(new Com());
    
                t1.start();
            }
    
        }
    
    
        public static class Com implements Runnable {
    
            Connection con = null;
            ResultSet rs = null;
            PreparedStatement ps = null;
            String JDBC_DRIVER = "com.cloudera.impala.jdbc41.Driver";
            String CONNECTION_URL = "jdbc:impala://hdp3:21050";
    
            public Com(){
                try {
    //            com.cloudera.impala.jdbc41.Driver v = null;
                    Class.forName(JDBC_DRIVER);
                    con = (Connection) DriverManager.getConnection(CONNECTION_URL);
    
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
    
            @Override
            public void run() {
    
    
    
                while(true)
                {
                    Random rand = new Random();
    
                    int entry_time_start = rand.nextInt(700) + 1;
    
                    int entry_time_end = entry_time_start + 30;
    
    //                String sql = "select a.tid,count(*),sum(std_mileage),avg(diff_mileage),avg(gps_mileage),avg(meter_mileage),avg(ecu_mileage),avg(total_fuel_cons),avg(diff_fuel_cons) ,avg(std_fuel_cons) from kudu_via_city_pdi3 as a where entry_time between "+entry_time_start+" and "+entry_time_end+" and exists (select null from car2 as b where a.tid=b.tid) group by a.tid order by sum(std_mileage) asc limit 1 offset 0";
                    String sql = "select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between "+entry_time_start+" and "+entry_time_end+"   group by a.tid order by sum(std_mileage) asc limit 1 offset 0";
    
                    try {
                        java.util.Date d1 = new java.util.Date();
                        ps = con.prepareStatement(sql);
                        rs = ps.executeQuery();
                        while (rs.next()) {
                            System.out.println(Thread.currentThread()+"===>"+d1+"-----"+new java.util.Date()+"----"+rs.getString(1));
    
                        }
                    } catch ( Exception e) {
                        e.printStackTrace();
                    }finally {
                        try {
                            rs.close();
                            ps.close();
    
                        } catch (SQLException e) {
                            e.printStackTrace();
                        }
                    }
    
                }
    
            }
        }
    
    }

    1个并发:

    Thread[Thread-0,5,main]===>Tue Nov 09 15:44:07 CST 2021-----Tue Nov 09 15:44:15 CST 2021----160006
    Thread[Thread-0,5,main]===>Tue Nov 09 15:44:15 CST 2021-----Tue Nov 09 15:44:22 CST 2021----188675
    Thread[Thread-0,5,main]===>Tue Nov 09 15:44:22 CST 2021-----Tue Nov 09 15:44:29 CST 2021----5737187
    Thread[Thread-0,5,main]===>Tue Nov 09 15:44:29 CST 2021-----Tue Nov 09 15:44:37 CST 2021----160006
    Thread[Thread-0,5,main]===>Tue Nov 09 15:44:37 CST 2021-----Tue Nov 09 15:44:44 CST 2021----160006

    10个并发:

    Thread[Thread-0,5,main]===>Tue Nov 09 15:45:09 CST 2021-----Tue Nov 09 15:45:25 CST 2021----160006
    Thread[Thread-1,5,main]===>Tue Nov 09 15:45:10 CST 2021-----Tue Nov 09 15:45:25 CST 2021----5737187
    Thread[Thread-2,5,main]===>Tue Nov 09 15:45:10 CST 2021-----Tue Nov 09 15:45:42 CST 2021----188675
    Thread[Thread-4,5,main]===>Tue Nov 09 15:45:10 CST 2021-----Tue Nov 09 15:45:46 CST 2021----5737187
    Thread[Thread-6,5,main]===>Tue Nov 09 15:45:11 CST 2021-----Tue Nov 09 15:45:49 CST 2021----5737187
    Thread[Thread-3,5,main]===>Tue Nov 09 15:45:10 CST 2021-----Tue Nov 09 15:45:50 CST 2021----160006
    Thread[Thread-7,5,main]===>Tue Nov 09 15:45:11 CST 2021-----Tue Nov 09 15:45:50 CST 2021----5737187
    Thread[Thread-5,5,main]===>Tue Nov 09 15:45:11 CST 2021-----Tue Nov 09 15:45:51 CST 2021----5737187
    Thread[Thread-9,5,main]===>Tue Nov 09 15:45:12 CST 2021-----Tue Nov 09 15:45:52 CST 2021----188675
    Thread[Thread-8,5,main]===>Tue Nov 09 15:45:12 CST 2021-----Tue Nov 09 15:45:52 CST 2021----188675
    Thread[Thread-1,5,main]===>Tue Nov 09 15:45:25 CST 2021-----Tue Nov 09 15:45:56 CST 2021----5737187
    Thread[Thread-0,5,main]===>Tue Nov 09 15:45:25 CST 2021-----Tue Nov 09 15:45:58 CST 2021----188675
    Thread[Thread-2,5,main]===>Tue Nov 09 15:45:42 CST 2021-----Tue Nov 09 15:46:12 CST 2021----160006

    20个并发:

    Thread[Thread-4,5,main]===>Tue Nov 09 15:40:14 CST 2021-----Tue Nov 09 15:41:12 CST 2021----5737187
    Thread[Thread-9,5,main]===>Tue Nov 09 15:40:22 CST 2021-----Tue Nov 09 15:41:23 CST 2021----5737187
    Thread[Thread-12,5,main]===>Tue Nov 09 15:40:21 CST 2021-----Tue Nov 09 15:41:34 CST 2021----5737187
    Thread[Thread-6,5,main]===>Tue Nov 09 15:40:22 CST 2021-----Tue Nov 09 15:41:36 CST 2021----5737187
    Thread[Thread-8,5,main]===>Tue Nov 09 15:40:23 CST 2021-----Tue Nov 09 15:41:37 CST 2021----188675
    Thread[Thread-5,5,main]===>Tue Nov 09 15:40:23 CST 2021-----Tue Nov 09 15:41:39 CST 2021----160006
    Thread[Thread-7,5,main]===>Tue Nov 09 15:40:25 CST 2021-----Tue Nov 09 15:41:41 CST 2021----188675
    Thread[Thread-11,5,main]===>Tue Nov 09 15:40:27 CST 2021-----Tue Nov 09 15:41:42 CST 2021----5737187
    Thread[Thread-15,5,main]===>Tue Nov 09 15:40:28 CST 2021-----Tue Nov 09 15:41:42 CST 2021----5737187
    Thread[Thread-10,5,main]===>Tue Nov 09 15:40:26 CST 2021-----Tue Nov 09 15:41:43 CST 2021----160006
    Thread[Thread-18,5,main]===>Tue Nov 09 15:40:26 CST 2021-----Tue Nov 09 15:41:43 CST 2021----5737187
    Thread[Thread-17,5,main]===>Tue Nov 09 15:40:28 CST 2021-----Tue Nov 09 15:41:43 CST 2021----160006
    Thread[Thread-19,5,main]===>Tue Nov 09 15:40:29 CST 2021-----Tue Nov 09 15:41:43 CST 2021----5737187
    Thread[Thread-16,5,main]===>Tue Nov 09 15:40:28 CST 2021-----Tue Nov 09 15:41:44 CST 2021----160006
    Thread[Thread-14,5,main]===>Tue Nov 09 15:40:28 CST 2021-----Tue Nov 09 15:41:44 CST 2021----5737187
    Thread[Thread-13,5,main]===>Tue Nov 09 15:40:28 CST 2021-----Tue Nov 09 15:41:44 CST 2021----5737187
    Thread[Thread-1,5,main]===>Tue Nov 09 15:40:34 CST 2021-----Tue Nov 09 15:41:44 CST 2021----188675
    Thread[Thread-2,5,main]===>Tue Nov 09 15:40:38 CST 2021-----Tue Nov 09 15:41:45 CST 2021----5737187
    Thread[Thread-0,5,main]===>Tue Nov 09 15:40:33 CST 2021-----Tue Nov 09 15:41:46 CST 2021----5737187
    Thread[Thread-3,5,main]===>Tue Nov 09 15:41:12 CST 2021-----Tue Nov 09 15:41:57 CST 2021----5737187
    Thread[Thread-4,5,main]===>Tue Nov 09 15:41:12 CST 2021-----Tue Nov 09 15:41:59 CST 2021----160006
    Thread[Thread-9,5,main]===>Tue Nov 09 15:41:24 CST 2021-----Tue Nov 09 15:42:15 CST 2021----5737187
    Thread[Thread-12,5,main]===>Tue Nov 09 15:41:34 CST 2021-----Tue Nov 09 15:42:37 CST 2021----160006
    Thread[Thread-8,5,main]===>Tue Nov 09 15:41:37 CST 2021-----Tue Nov 09 15:42:42 CST 2021----5737187

    30个并发:

    Thread[Thread-16,5,main]===>Tue Nov 09 15:46:41 CST 2021-----Tue Nov 09 15:48:34 CST 2021----188675
    Thread[Thread-15,5,main]===>Tue Nov 09 15:46:41 CST 2021-----Tue Nov 09 15:48:35 CST 2021----160006
    Thread[Thread-17,5,main]===>Tue Nov 09 15:46:42 CST 2021-----Tue Nov 09 15:48:36 CST 2021----5737187
    Thread[Thread-19,5,main]===>Tue Nov 09 15:46:42 CST 2021-----Tue Nov 09 15:48:36 CST 2021----160006
    Thread[Thread-24,5,main]===>Tue Nov 09 15:46:44 CST 2021-----Tue Nov 09 15:48:37 CST 2021----188675
    Thread[Thread-21,5,main]===>Tue Nov 09 15:46:43 CST 2021-----Tue Nov 09 15:48:37 CST 2021----5737187
    Thread[Thread-28,5,main]===>Tue Nov 09 15:46:45 CST 2021-----Tue Nov 09 15:48:37 CST 2021----5737187
    Thread[Thread-23,5,main]===>Tue Nov 09 15:46:44 CST 2021-----Tue Nov 09 15:48:37 CST 2021----5737187
    Thread[Thread-20,5,main]===>Tue Nov 09 15:46:43 CST 2021-----Tue Nov 09 15:48:38 CST 2021----5737187
    Thread[Thread-1,5,main]===>Tue Nov 09 15:47:04 CST 2021-----Tue Nov 09 15:48:38 CST 2021----5737187
    Thread[Thread-27,5,main]===>Tue Nov 09 15:46:45 CST 2021-----Tue Nov 09 15:48:38 CST 2021----188675
    Thread[Thread-22,5,main]===>Tue Nov 09 15:46:43 CST 2021-----Tue Nov 09 15:48:38 CST 2021----5737187
    Thread[Thread-18,5,main]===>Tue Nov 09 15:46:42 CST 2021-----Tue Nov 09 15:48:38 CST 2021----5737187
    Thread[Thread-25,5,main]===>Tue Nov 09 15:46:44 CST 2021-----Tue Nov 09 15:48:39 CST 2021----5737187

    50个并发:

    "C:\Program Files\Java\jdk1.8.0_201\jre\bin\java.exe" -javaagent:D:\softwares\idea2019\lib\idea_rt.jar=56436:D:\softwares\idea2019\bin -Dfile.encoding=UTF-8 -classpath D:\softwares\idea2019\lib\idea_rt.jar com.intellij.rt.execution.CommandLineWrapper C:\Users\lilei\AppData\Local\Temp\idea_classpath2065000854 org.kudu.Yace
    Thread[Thread-0,5,main]===>Tue Nov 09 15:49:20 CST 2021-----Tue Nov 09 15:49:53 CST 2021----160006
    Thread[Thread-1,5,main]===>Tue Nov 09 15:49:20 CST 2021-----Tue Nov 09 15:49:55 CST 2021----160006
    Thread[Thread-2,5,main]===>Tue Nov 09 15:49:20 CST 2021-----Tue Nov 09 15:50:41 CST 2021----160006
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: Could not create files in any configured scratch directories (--scratch_dirs=) on backend 'hdp3:22000'. See logs for previous errors that may have prevented creating or writing scratch files.
    , Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 590 and 620   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.pollForOperationCompletion(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: Could not create files in any configured scratch directories (--scratch_dirs=) on backend 'hdp3:22000'. See logs for previous errors that may have prevented creating or writing scratch files.
    , Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 590 and 620   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 13 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=7f422219fcb6c39d:e81c2f3c00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 7f422219fcb6c39d:e81c2f3c00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.81 MB Total=458.81 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 248 and 278   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=7f422219fcb6c39d:e81c2f3c00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 7f422219fcb6c39d:e81c2f3c00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.81 MB Total=458.81 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 248 and 278   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=824bf62a84e38c11:3e0d71da00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 824bf62a84e38c11:3e0d71da00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.37 MB Total=458.37 MB Peak=458.83 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 627 and 657   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=824bf62a84e38c11:3e0d71da00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 824bf62a84e38c11:3e0d71da00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.37 MB Total=458.37 MB Peak=458.83 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 627 and 657   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bd499c71c2e687a0:a097759400000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bd499c71c2e687a0:a097759400000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.65 MB Total=458.65 MB Peak=458.90 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 7 and 37   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bd499c71c2e687a0:a097759400000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bd499c71c2e687a0:a097759400000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.65 MB Total=458.65 MB Peak=458.90 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 7 and 37   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=9f47e6c2aedba556:5093b5100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 9f47e6c2aedba556:5093b5100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.21 MB Total=461.21 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 385 and 415   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=9f47e6c2aedba556:5093b5100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 9f47e6c2aedba556:5093b5100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.21 MB Total=461.21 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 385 and 415   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=d74842e1ce2ad34f:1a8f0a3100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query d74842e1ce2ad34f:1a8f0a3100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.04 MB Total=460.04 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.13 MB Total=458.13 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 450 and 480   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=d74842e1ce2ad34f:1a8f0a3100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query d74842e1ce2ad34f:1a8f0a3100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.04 MB Total=460.04 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.13 MB Total=458.13 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 450 and 480   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=6e4ce7a5d2bd9cba:df7e122600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 6e4ce7a5d2bd9cba:df7e122600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.01 MB Total=459.01 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 657 and 687   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=6e4ce7a5d2bd9cba:df7e122600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 6e4ce7a5d2bd9cba:df7e122600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.01 MB Total=459.01 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 657 and 687   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=3a48a56a2de87502:9c42b75100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 3a48a56a2de87502:9c42b75100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.04 MB Total=459.04 MB Peak=459.64 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 159 and 189   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=3a48a56a2de87502:9c42b75100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 3a48a56a2de87502:9c42b75100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.04 MB Total=459.04 MB Peak=459.64 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 159 and 189   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=ae4ffe18919a50c8:2dcf71bd00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query ae4ffe18919a50c8:2dcf71bd00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.49 MB Total=460.49 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.48 MB Total=458.48 MB Peak=458.83 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 52 and 82   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=ae4ffe18919a50c8:2dcf71bd00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query ae4ffe18919a50c8:2dcf71bd00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.49 MB Total=460.49 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.48 MB Total=458.48 MB Peak=458.83 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 52 and 82   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=16481b3679501e66:a13f061e00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 16481b3679501e66:a13f061e00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.08 MB Total=459.08 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.28 MB Total=458.28 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 655 and 685   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=16481b3679501e66:a13f061e00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 16481b3679501e66:a13f061e00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.08 MB Total=459.08 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.28 MB Total=458.28 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 655 and 685   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=f546d88ce456b3f5:3506747500000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query f546d88ce456b3f5:3506747500000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 286 and 316   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=f546d88ce456b3f5:3506747500000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query f546d88ce456b3f5:3506747500000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 286 and 316   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a848cbb43db8d9c0:7168366900000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a848cbb43db8d9c0:7168366900000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.31 MB Total=460.31 MB Peak=461.85 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.47 MB Total=459.47 MB Peak=459.79 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.72 MB Total=458.72 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 61 and 91   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a848cbb43db8d9c0:7168366900000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a848cbb43db8d9c0:7168366900000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.31 MB Total=460.31 MB Peak=461.85 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.47 MB Total=459.47 MB Peak=459.79 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.72 MB Total=458.72 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 61 and 91   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=904cdcd978dcee91:883b851d00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 904cdcd978dcee91:883b851d00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.33 MB Total=461.33 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.52 MB Total=459.52 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.18 MB Total=459.18 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 675 and 705   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=904cdcd978dcee91:883b851d00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 904cdcd978dcee91:883b851d00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.33 MB Total=461.33 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.52 MB Total=459.52 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.18 MB Total=459.18 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 675 and 705   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=6846c6c61073cb8a:aaaa748600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 6846c6c61073cb8a:aaaa748600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.29 MB Total=460.29 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.89 MB Total=458.89 MB Peak=458.90 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 352 and 382   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=6846c6c61073cb8a:aaaa748600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 6846c6c61073cb8a:aaaa748600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.29 MB Total=460.29 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.89 MB Total=458.89 MB Peak=458.90 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 352 and 382   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=334738954ee44c33:bb284edd00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 334738954ee44c33:bb284edd00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.30 MB Total=461.30 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 301 and 331   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=334738954ee44c33:bb284edd00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 334738954ee44c33:bb284edd00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.30 MB Total=461.30 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 301 and 331   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bf43ea7e0c140bc1:ac50e8ac00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bf43ea7e0c140bc1:ac50e8ac00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 248 and 278   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bf43ea7e0c140bc1:ac50e8ac00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bf43ea7e0c140bc1:ac50e8ac00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 248 and 278   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e44f1698769d93d1:42773d2b00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e44f1698769d93d1:42773d2b00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.30 MB Total=461.30 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.84 MB Total=458.84 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 305 and 335   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e44f1698769d93d1:42773d2b00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e44f1698769d93d1:42773d2b00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.30 MB Total=461.30 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.84 MB Total=458.84 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 305 and 335   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=764c8e322a76a12d:d1ff73b600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 764c8e322a76a12d:d1ff73b600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 183 and 213   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=764c8e322a76a12d:d1ff73b600000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 764c8e322a76a12d:d1ff73b600000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 183 and 213   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=1f4a0b94ab00d87d:611268ce00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 1f4a0b94ab00d87d:611268ce00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.49 MB Total=460.49 MB Peak=460.79 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.64 MB Total=458.64 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.20 MB Total=458.20 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 220 and 250   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=1f4a0b94ab00d87d:611268ce00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 1f4a0b94ab00d87d:611268ce00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.49 MB Total=460.49 MB Peak=460.79 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.64 MB Total=458.64 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.20 MB Total=458.20 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 220 and 250   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e9405fdf40ecf429:efe2485500000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e9405fdf40ecf429:efe2485500000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.56 MB Total=458.56 MB Peak=458.83 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 157 and 187   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e9405fdf40ecf429:efe2485500000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e9405fdf40ecf429:efe2485500000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.56 MB Total=458.56 MB Peak=458.83 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 157 and 187   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=fa45fafcbc530789:dd2964c100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query fa45fafcbc530789:dd2964c100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.11 MB Total=461.11 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 470 and 500   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=fa45fafcbc530789:dd2964c100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query fa45fafcbc530789:dd2964c100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.11 MB Total=461.11 MB Peak=461.85 MB
    Query(21455092e83195ed:d6fb3c5f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.51 MB Total=460.51 MB Peak=462.24 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 470 and 500   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=da414464f848af3b:6ee1a8e700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query da414464f848af3b:6ee1a8e700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.04 MB Total=460.04 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.57 MB Total=459.57 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.28 MB Total=458.28 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 137 and 167   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=da414464f848af3b:6ee1a8e700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query da414464f848af3b:6ee1a8e700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.04 MB Total=460.04 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.57 MB Total=459.57 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.28 MB Total=458.28 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 137 and 167   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=81468db0bdeed7ab:d82ffa7c00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 81468db0bdeed7ab:d82ffa7c00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(fb44612245d39eaa:62af8c3f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.38 MB Total=458.38 MB Peak=458.61 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.13 MB Total=458.13 MB Peak=458.90 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 99 and 129   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=81468db0bdeed7ab:d82ffa7c00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 81468db0bdeed7ab:d82ffa7c00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(fb44612245d39eaa:62af8c3f00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.38 MB Total=458.38 MB Peak=458.61 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.13 MB Total=458.13 MB Peak=458.90 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 99 and 129   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a844ee1c33b3d324:12b5467200000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a844ee1c33b3d324:12b5467200000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.77 MB Total=460.77 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.83 MB Total=458.83 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 458 and 488   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a844ee1c33b3d324:12b5467200000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a844ee1c33b3d324:12b5467200000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.77 MB Total=460.77 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.83 MB Total=458.83 MB Peak=459.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 458 and 488   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=b485bf1b235e6e4:2614983100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query b485bf1b235e6e4:2614983100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.19 MB Total=458.19 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 195 and 225   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=b485bf1b235e6e4:2614983100000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query b485bf1b235e6e4:2614983100000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.19 MB Total=458.19 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 195 and 225   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=5f429bc25c7be5de:7f44f89300000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 5f429bc25c7be5de:7f44f89300000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.56 MB Total=458.56 MB Peak=458.83 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.25 MB Total=458.25 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 364 and 394   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=5f429bc25c7be5de:7f44f89300000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 5f429bc25c7be5de:7f44f89300000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(c7467481150c20e5:5642a91100000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.56 MB Total=458.56 MB Peak=458.83 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.25 MB Total=458.25 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 364 and 394   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=2f4d78cb0081c4f3:c9606af800000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 2f4d78cb0081c4f3:c9606af800000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.09 MB Total=460.09 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.09 MB Total=458.09 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 347 and 377   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=2f4d78cb0081c4f3:c9606af800000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 2f4d78cb0081c4f3:c9606af800000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.09 MB Total=460.09 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.02 MB Total=460.02 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.09 MB Total=458.09 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 347 and 377   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=946489b36fd7336:1fe223b700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 946489b36fd7336:1fe223b700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.50 MB Total=458.50 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.22 MB Total=458.22 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 254 and 284   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=946489b36fd7336:1fe223b700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 946489b36fd7336:1fe223b700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.50 MB Total=458.50 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.22 MB Total=458.22 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 254 and 284   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e43fc912ef13b3b:5c31654700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e43fc912ef13b3b:5c31654700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.21 MB Total=460.21 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.69 MB Total=459.69 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.49 MB Total=459.49 MB Peak=459.79 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 156 and 186   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=e43fc912ef13b3b:5c31654700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query e43fc912ef13b3b:5c31654700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.21 MB Total=460.21 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.69 MB Total=459.69 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.49 MB Total=459.49 MB Peak=459.79 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 156 and 186   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=9e4d6dfc97f37c2e:3d770bea00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 9e4d6dfc97f37c2e:3d770bea00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.01 MB Total=459.01 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 323 and 353   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=9e4d6dfc97f37c2e:3d770bea00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 9e4d6dfc97f37c2e:3d770bea00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.58 MB Total=461.58 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.01 MB Total=459.01 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 323 and 353   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=b1401fd830d08190:ff79b00700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query b1401fd830d08190:ff79b00700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.79 MB Total=458.79 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 281 and 311   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=b1401fd830d08190:ff79b00700000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query b1401fd830d08190:ff79b00700000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.43 MB Total=459.43 MB Peak=459.69 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.79 MB Total=458.79 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 281 and 311   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=4743626191cf2626:ca520d7900000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 4743626191cf2626:ca520d7900000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.34 MB Total=459.34 MB Peak=459.64 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.63 MB Total=458.63 MB Peak=458.90 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 237 and 267   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=4743626191cf2626:ca520d7900000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 4743626191cf2626:ca520d7900000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.34 MB Total=459.34 MB Peak=459.64 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.63 MB Total=458.63 MB Peak=458.90 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 237 and 267   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=50422b0283e3150f:ded4d35f00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 50422b0283e3150f:ded4d35f00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.35 MB Total=459.35 MB Peak=460.79 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.17 MB Total=459.17 MB Peak=459.64 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 239 and 269   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=50422b0283e3150f:ded4d35f00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 50422b0283e3150f:ded4d35f00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.35 MB Total=459.35 MB Peak=460.79 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.17 MB Total=459.17 MB Peak=459.64 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 239 and 269   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=d946c8fd5d0d8ffb:7969e81300000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query d946c8fd5d0d8ffb:7969e81300000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.55 MB Total=459.55 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 295 and 325   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=d946c8fd5d0d8ffb:7969e81300000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query d946c8fd5d0d8ffb:7969e81300000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.55 MB Total=459.55 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 295 and 325   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a740bf73146e3bcb:fa8d67e00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a740bf73146e3bcb:fa8d67e00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.38 MB Total=460.38 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 72 and 102   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=a740bf73146e3bcb:fa8d67e00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query a740bf73146e3bcb:fa8d67e00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.38 MB Total=460.38 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=460.29 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=1.97 MB Total=457.97 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 72 and 102   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=454ad5e680e4e05e:3b59e2be00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 454ad5e680e4e05e:3b59e2be00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.53 MB Total=460.53 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.26 MB Total=460.26 MB Peak=460.29 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 189 and 219   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=454ad5e680e4e05e:3b59e2be00000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 454ad5e680e4e05e:3b59e2be00000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.53 MB Total=460.53 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.26 MB Total=460.26 MB Peak=460.29 MB
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(674cae939ecfee2b:db26e6900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.55 MB Total=458.55 MB Peak=458.90 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 189 and 219   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bc4b166820c095da:7dc7e3d400000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bc4b166820c095da:7dc7e3d400000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.81 MB Total=459.81 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.03 MB Total=459.03 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.33 MB Total=458.33 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 198 and 228   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=bc4b166820c095da:7dc7e3d400000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query bc4b166820c095da:7dc7e3d400000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=4.12 MB Total=460.12 MB Peak=461.85 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.81 MB Total=459.81 MB Peak=460.79 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.03 MB Total=459.03 MB Peak=460.29 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.33 MB Total=458.33 MB Peak=459.69 MB
    Query(284863203829458d:9375878300000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.06 MB Total=458.06 MB Peak=459.79 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 198 and 228   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
    java.sql.SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=4f470c1a32ffa241:a47b6bc200000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 4f470c1a32ffa241:a47b6bc200000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.04 MB Total=461.04 MB Peak=461.85 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.28 MB Total=459.28 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.19 MB Total=458.19 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 378 and 408   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        at com.cloudera.hivecommon.api.HS2Client.executeStatementInternal(Unknown Source)
        at com.cloudera.hivecommon.api.HS2Client.executeStatement(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.executeQuery(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCNativeQueryExecutor.<init>(Unknown Source)
        at com.cloudera.hivecommon.dataengine.HiveJDBCDataEngine.prepare(Unknown Source)
        at com.cloudera.jdbc.common.SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.common4.C4SPreparedStatement.<init>(Unknown Source)
        at com.cloudera.jdbc.jdbc41.S41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.hivecommon.jdbc41.Hive41PreparedStatement.<init>(Unknown Source)
        at com.cloudera.impala.jdbc41.ImpalaJDBC41ObjectFactory.createPreparedStatement(Unknown Source)
        at com.cloudera.jdbc.common.SConnection.prepareStatement(Unknown Source)
        at org.kudu.Yace$Com.run(Yace.java:57)
    Caused by: com.cloudera.support.exceptions.GeneralException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:ExecQueryFInstances rpc query_id=4f470c1a32ffa241:a47b6bc200000000 failed: Failed to get minimum memory reservation of 68.00 MB on daemon hdp3:22000 for query 4f470c1a32ffa241:a47b6bc200000000 due to following error: Failed to increase reservation by 68.00 MB because it would exceed the applicable reservation limit for the "Process" ReservationTracker: reservation_limit=17.00 GB reservation=17.00 GB used_reservation=0 child_reservations=17.00 GB
    The top 5 queries that allocated memory under this tracker are:
    Query(6d49466386a9f5bd:357eccc400000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=5.04 MB Total=461.04 MB Peak=461.85 MB
    Query(7b4becd6ec914b52:d0afa8a200000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.37 MB Total=459.37 MB Peak=459.64 MB
    Query(a1419014e71dc8df:9e7e8b3b00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.28 MB Total=459.28 MB Peak=460.29 MB
    Query(f24ad2d8cf21e026:fa4d5ea900000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=3.06 MB Total=459.06 MB Peak=460.79 MB
    Query(904ba102733e5ad8:7224e9ed00000000): Reservation=456.00 MB ReservationLimit=16.00 GB OtherMemory=2.19 MB Total=458.19 MB Peak=459.69 MB
    
    
    
    
    
    Memory is likely oversubscribed. Reducing query concurrency or configuring admission control may help avoid this error.
    
    ), Query: select a.tid,count(*),sum(std_mileage)  from kudu_via_city_pdi3 as a where entry_time between 378 and 408   group by a.tid order by sum(std_mileage) asc limit 1 offset 0.
        ... 12 more
  • 相关阅读:
    tinyxml2使用
    使用libcurl作为Http client
    编译Thrift支持golang
    使用vue初体验之app实现后 小总结
    手机端屏幕自适应(三) 淘宝网适配方案
    手机端屏幕自适应(二)
    手机端的屏幕自适应(一)
    vue directive具体的使用方法
    vue生命周期之我见
    vue-router api学习
  • 原文地址:https://www.cnblogs.com/lilei2blog/p/15529389.html
Copyright © 2011-2022 走看看