Java clients may use log4j infrastructure or Apace commons logging API. Apache commons is a lightweight API that uses whatever underlying logging mechanism is in place e.g., Log4J. When using JdbcT2 driver, after calling DriverManager.getConnection() any subsequent client log4j events are incorrectly written to trafodion.hdfs.log file. No further client events are written to the original client log file. Essentially Trafodion is eating the client log events after entering T2 driver. This may be SQL logging infrastructure issue or the fact that SQL creates new JVM in JavaObjectInterface C++ class. Following is how to test: Enable DEBUG logging for Trafodion HBaseClient Java class in conf/log4j.hdfs.config e.g., log4j.logger.org.trafodion.sql=DEBUG And, I’d like to see the C JavaObjectInterface class tracing too in conf/log4cpp.trafodion.config e.g., log4j.category.SQL.HDFS.JniTop=DEBUG I have a test program in DCS that uses T2 driver to execute simple query. You can run e.g., >bin/dcs --config myconf org.trafodion.dcs.util.JdbcT2Util "select * from trafodion.\"_REPOS_\".metric_session_table" After running the test program with command above some of the log messages output, as expected, to the console 15/02/04 00:36:24 DEBUG util.JdbcT2Util: Begin exec() 15/02/04 00:36:24 DEBUG util.JdbcT2Util: threadId [main] 15/02/04 00:36:24 DEBUG util.JdbcT2Util: new ConnectionContext(main) 15/02/04 00:36:24 DEBUG util.JdbcT2Util: m.put(main,org.trafodion.dcs.util.JdbcT2Util$ConnectionContext@47f3ed7f) 15/02/04 00:36:24 DEBUG util.JdbcT2Util: connectionContext [org.trafodion.dcs.util.JdbcT2Util$ConnectionContext@47f3ed7f] 15/02/04 00:36:24 DEBUG util.JdbcT2Util: Begin ConnectionContext.execute() 15/02/04 00:36:24 DEBUG util.JdbcT2Util: Begin ConnectionContext.open() 15/02/04 00:36:24 DEBUG util.JdbcT2Util: DriverManager.getConnection(jdbc:t2jdbc:) But, as soon as it enters T2 Driver/Traf SQL, no further log events output to the console but rather they show up in logs/trafodion.hdfs.log ! 2015-02-04 21:59:29,775 DEBUG HBaseAccess.HBaseClient: HBaseClient.init(, ) called. 2015-02-04 21:59:31,057 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:31,135 INFO Configuration.deprecation: hadoop.native.lib is deprecated. Instead, use io.native.lib.available 2015-02-04 21:59:31,479 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:31,644 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VERSIONS, use TRX) called. 2015-02-04 21:59:31,650 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.VERSIONS 2015-02-04 21:59:31,683 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.VERSIONS;hconnection-0x74056869 2015-02-04 21:59:31,683 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:31,712 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VERSIONS). 2015-02-04 21:59:31,712 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.DEFAULTS) called. 2015-02-04 21:59:31,732 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.DEFAULTS, use TRX) called. 2015-02-04 21:59:31,733 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.DEFAULTS 2015-02-04 21:59:31,733 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.DEFAULTS;hconnection-0x74056869 2015-02-04 21:59:31,733 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:31,741 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.DEFAULTS). 2015-02-04 21:59:31,741 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.OBJECT_PRIVILEGES) called. 2015-02-04 21:59:31,762 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENTS) called. 2015-02-04 21:59:31,783 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_OPERATIONS) called. 2015-02-04 21:59:31,804 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_PRIVILEGES) called. 2015-02-04 21:59:31,825 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.ROLE_USAGE) called. 2015-02-04 21:59:31,877 DEBUG util.JdbcT2Util: stmt.execute(CONTROL QUERY DEFAULT estimate_hbase_row_count 'OFF') 2015-02-04 21:59:31,881 DEBUG util.JdbcT2Util: End ConnectionContext.open() 2015-02-04 21:59:31,881 DEBUG util.JdbcT2Util: stmt.executeQuery(select * from trafodion."_REPOS_".metric_session_table) 2015-02-04 21:59:31,887 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:31,909 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:31,930 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VERSIONS, use TRX) called. 2015-02-04 21:59:31,930 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:31,935 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VERSIONS). 2015-02-04 21:59:31,935 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.DEFAULTS) called. 2015-02-04 21:59:31,954 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.DEFAULTS, use TRX) called. 2015-02-04 21:59:31,954 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:31,957 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.DEFAULTS). 2015-02-04 21:59:31,957 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.OBJECT_PRIVILEGES) called. 2015-02-04 21:59:31,978 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENTS) called. 2015-02-04 21:59:31,999 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_OPERATIONS) called. 2015-02-04 21:59:32,017 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_PRIVILEGES) called. 2015-02-04 21:59:32,038 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.ROLE_USAGE) called. 2015-02-04 21:59:32,129 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:32,152 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.VERSIONS) called. 2015-02-04 21:59:32,169 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VERSIONS, use TRX) called. 2015-02-04 21:59:32,170 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,175 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VERSIONS). 2015-02-04 21:59:32,175 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._MD_.DEFAULTS) called. 2015-02-04 21:59:32,194 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.DEFAULTS, use TRX) called. 2015-02-04 21:59:32,194 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,199 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.DEFAULTS). 2015-02-04 21:59:32,199 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.OBJECT_PRIVILEGES) called. 2015-02-04 21:59:32,217 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENTS) called. 2015-02-04 21:59:32,235 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_OPERATIONS) called. 2015-02-04 21:59:32,271 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.COMPONENT_PRIVILEGES) called. 2015-02-04 21:59:32,289 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION.PRIVMGR_MD.ROLE_USAGE) called. 2015-02-04 21:59:32,426 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:32,427 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.OBJECTS 2015-02-04 21:59:32,428 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.OBJECTS;hconnection-0x74056869 2015-02-04 21:59:32,428 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:32,438 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:32,508 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:32,508 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,510 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:32,604 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:32,604 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,606 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:32,662 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLES, use TRX) called. 2015-02-04 21:59:32,662 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.TABLES 2015-02-04 21:59:32,663 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.TABLES;hconnection-0x74056869 2015-02-04 21:59:32,663 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:32,670 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLES). 2015-02-04 21:59:32,764 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:32,764 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,766 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:32,831 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:32,831 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.TEXT 2015-02-04 21:59:32,832 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.TEXT;hconnection-0x74056869 2015-02-04 21:59:32,832 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:32,841 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:32,936 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:32,937 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:32,939 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:33,028 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.COLUMNS, use TRX) called. 2015-02-04 21:59:33,028 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.COLUMNS 2015-02-04 21:59:33,028 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.COLUMNS;hconnection-0x74056869 2015-02-04 21:59:33,028 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:33,046 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.COLUMNS). 2015-02-04 21:59:33,071 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:33,072 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,075 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:33,169 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:33,169 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,171 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:33,238 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:33,238 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.KEYS 2015-02-04 21:59:33,239 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.KEYS;hconnection-0x74056869 2015-02-04 21:59:33,239 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:33,248 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:33,374 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:33,374 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,376 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:33,550 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.INDEXES, use TRX) called. 2015-02-04 21:59:33,550 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.INDEXES 2015-02-04 21:59:33,551 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.INDEXES;hconnection-0x74056869 2015-02-04 21:59:33,551 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:33,560 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.INDEXES). 2015-02-04 21:59:33,688 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:33,688 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,690 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:33,799 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:33,800 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.TABLE_CONSTRAINTS 2015-02-04 21:59:33,800 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.TABLE_CONSTRAINTS;hconnection-0x74056869 2015-02-04 21:59:33,800 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:33,809 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:33,810 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:33,810 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.OBJECTS_UNIQ_IDX 2015-02-04 21:59:33,810 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.OBJECTS_UNIQ_IDX;hconnection-0x74056869 2015-02-04 21:59:33,810 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:33,817 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:33,838 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:33,838 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,841 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:33,948 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:33,948 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:33,950 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:34,141 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:34,141 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,145 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:34,146 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,146 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,147 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,147 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,147 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,149 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,149 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,149 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,150 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,150 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,150 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,151 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,151 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,151 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,152 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,152 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,152 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,153 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,153 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:34,153 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE 2015-02-04 21:59:34,154 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE;hconnection-0x74056869 2015-02-04 21:59:34,154 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:34,160 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:34,160 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:34,160 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,161 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:34,161 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:34,161 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,162 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:34,267 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:34,267 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,269 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:34,325 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VIEWS, use TRX) called. 2015-02-04 21:59:34,325 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._MD_.VIEWS 2015-02-04 21:59:34,325 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._MD_.VIEWS;hconnection-0x74056869 2015-02-04 21:59:34,325 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:34,331 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VIEWS). 2015-02-04 21:59:34,332 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION."_REPOS_".METRIC_SESSION_TABLE, use TRX) called. 2015-02-04 21:59:34,332 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION."_REPOS_".METRIC_SESSION_TABLE 2015-02-04 21:59:34,449 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:34,449 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,451 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:34,463 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLES, use TRX) called. 2015-02-04 21:59:34,463 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,465 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLES). 2015-02-04 21:59:34,486 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:34,486 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,489 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:34,537 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.COLUMNS, use TRX) called. 2015-02-04 21:59:34,537 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,548 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.COLUMNS). 2015-02-04 21:59:34,573 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:34,573 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,577 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:34,602 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:34,602 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,606 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:34,756 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.INDEXES, use TRX) called. 2015-02-04 21:59:34,756 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,760 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.INDEXES). 2015-02-04 21:59:34,847 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:34,847 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,851 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:34,851 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:34,851 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,853 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:34,875 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:34,875 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:34,879 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:35,031 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:35,031 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,034 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:35,035 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,035 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,036 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,037 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,037 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,038 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,038 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,038 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,039 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,039 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,039 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,040 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,040 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,041 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,042 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,042 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,042 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,043 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,043 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,043 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,044 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,044 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,044 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,045 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,045 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,045 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,046 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,061 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VIEWS, use TRX) called. 2015-02-04 21:59:35,061 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,062 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VIEWS). 2015-02-04 21:59:35,063 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION."_REPOS_".METRIC_SESSION_TABLE, use TRX) called. 2015-02-04 21:59:35,063 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION."_REPOS_".METRIC_SESSION_TABLE 2015-02-04 21:59:35,172 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS, use TRX) called. 2015-02-04 21:59:35,172 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,174 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS). 2015-02-04 21:59:35,187 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLES, use TRX) called. 2015-02-04 21:59:35,187 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,188 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLES). 2015-02-04 21:59:35,209 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:35,209 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,213 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:35,259 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.COLUMNS, use TRX) called. 2015-02-04 21:59:35,260 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,269 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.COLUMNS). 2015-02-04 21:59:35,294 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TEXT, use TRX) called. 2015-02-04 21:59:35,294 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,297 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TEXT). 2015-02-04 21:59:35,323 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:35,323 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,327 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:35,475 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.INDEXES, use TRX) called. 2015-02-04 21:59:35,476 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,479 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.INDEXES). 2015-02-04 21:59:35,570 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:35,571 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,574 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:35,575 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,575 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,576 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,598 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.KEYS, use TRX) called. 2015-02-04 21:59:35,598 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,601 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.KEYS). 2015-02-04 21:59:35,761 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS, use TRX) called. 2015-02-04 21:59:35,761 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,765 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.TABLE_CONSTRAINTS). 2015-02-04 21:59:35,765 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,765 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,767 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,767 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,767 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,768 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,768 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,768 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,770 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,770 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,770 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,771 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,771 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,771 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,772 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,772 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX, use TRX) called. 2015-02-04 21:59:35,772 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,773 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.OBJECTS_UNIQ_IDX). 2015-02-04 21:59:35,774 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,774 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,775 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,775 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,775 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,776 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,776 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE, use TRX) called. 2015-02-04 21:59:35,776 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,777 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.UNIQUE_REF_CONSTR_USAGE). 2015-02-04 21:59:35,793 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._MD_.VIEWS, use TRX) called. 2015-02-04 21:59:35,793 DEBUG HBaseAccess.HBaseClient: ==> Returning existing object, removing from container. 2015-02-04 21:59:35,794 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._MD_.VIEWS). 2015-02-04 21:59:35,794 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION."_REPOS_".METRIC_SESSION_TABLE, use TRX) called. 2015-02-04 21:59:35,794 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION."_REPOS_".METRIC_SESSION_TABLE 2015-02-04 21:59:35,843 DEBUG HBaseAccess.HBaseClient: HBaseClient.exists(TRAFODION._REPOS_.SB_HISTOGRAMS) called. 2015-02-04 21:59:35,915 DEBUG HBaseAccess.HBaseClient: HBaseClient.getHTableClient(TRAFODION._REPOS_.METRIC_SESSION_TABLE, use TRX) called. 2015-02-04 21:59:35,916 DEBUG HBaseAccess.HTableClient: Enter HTableClient::init, tableName: TRAFODION._REPOS_.METRIC_SESSION_TABLE 2015-02-04 21:59:35,916 DEBUG HBaseAccess.HTableClient: Exit HTableClient::init, table object: TRAFODION._REPOS_.METRIC_SESSION_TABLE;hconnection-0x74056869 2015-02-04 21:59:35,916 DEBUG HBaseAccess.HBaseClient: ==> Created new object. 2015-02-04 21:59:35,943 DEBUG HBaseAccess.HBaseClient: HBaseClient.releaseHTableClient(TRAFODION._REPOS_.METRIC_SESSION_TABLE). 2015-02-04 21:59:35,944 DEBUG util.JdbcT2Util: End ConnectionContext.execute() 2015-02-04 21:59:35,944 DEBUG util.JdbcT2Util: Begin convertResultSetToJSON 2015-02-04 21:59:35,950 DEBUG util.JdbcT2Util: End convertResultSetToJSON 2015-02-04 21:59:35,950 DEBUG util.JdbcT2Util: End exec() Looking at the master_exec file I can see the JavaObjectInterface trace. We can see a new Java JVM is created. This creates a new Trafodion HBaseClient instance which invokes a new log4j configuration. 2015-02-04 22:24:10,815, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,JavaObjectInterface::init() called for class org/trafodion/sql/HBaseAccess/HBaseClient for the first time. 2015-02-04 22:24:10,815, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Entering initJVM(). 2015-02-04 22:24:10,815, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Using classpath: -Djava.class.path=/opt/home/tools/hbase-0.94.5/lib/hadoop-core-1.0.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/activation-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/apacheds-i18n-2.0.0-M15.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/api-asn1-api-1.0.0-M20.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/api-util-1.0.0-M20.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/asm-3.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/avro-1.7.5-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-beanutils-1.7.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-beanutils-core-1.8.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-cli-1.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-codec-1.7.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-collections-3.2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-compress-1.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-configuration-1.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-daemon-1.0.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-digester-1.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-el-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-httpclient-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-io-2.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-lang-2.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-logging-1.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-math-2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-math3-3.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/commons-net-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/core-3.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/findbugs-annotations-1.3.9-1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/guava-12.0.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hadoop-annotations-2.3.0-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hadoop-auth-2.3.0-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hadoop-common-2.3.0-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hadoop-hdfs-2.3.0-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hamcrest-core-1.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-client-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-common-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-examples-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-hadoop2-compat-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-hadoop-compat-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-it-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-prefix-tree-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-protocol-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-server-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-shell-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-testing-util-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hbase-thrift-0.98.1-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/high-scale-lib-1.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/hsqldb-1.8.0.10.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/htrace-core-2.04.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/httpclient-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/httpcore-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jackson-core-asl-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jackson-jaxrs-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jackson-mapper-asl-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jackson-xc-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jamon-runtime-2.3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jasper-compiler-5.5.23.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jasper-runtime-5.5.23.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/java-xmlbuilder-0.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jaxb-api-2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jaxb-impl-2.2.3-1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jersey-core-1.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jersey-json-1.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jersey-server-1.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jets3t-0.9.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jettison-1.3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jetty-6.1.26.cloudera.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jetty-sslengine-6.1.26.cloudera.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jetty-util-6.1.26.cloudera.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jruby-complete-1.6.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jsch-0.1.42.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jsp-2.1-6.1.14.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jsp-api-2.1-6.1.14.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jsp-api-2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/jsr305-1.3.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/junit-4.11.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/libthrift-0.9.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/log4j-1.2.17.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/metrics-core-2.1.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/netty-3.6.6.Final.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/paranamer-2.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/protobuf-java-2.5.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/servlet-api-2.5-6.1.14.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/servlet-api-2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/slf4j-api-1.7.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/slf4j-log4j12-1.7.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/snappy-java-1.0.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/xmlenc-0.52.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/xz-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/lib/zookeeper-3.4.5-cdh5.1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/hadoop-common-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/hadoop-nfs-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/activation-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/asm-3.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/avro-1.7.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-beanutils-1.7.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-beanutils-core-1.8.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-cli-1.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-codec-1.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-collections-3.2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-compress-1.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-configuration-1.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-digester-1.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-el-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-httpclient-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-io-2.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-lang-2.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-logging-1.1.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-math3-3.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/commons-net-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/guava-11.0.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/hadoop-annotations-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/hadoop-auth-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/httpclient-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/httpcore-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jackson-core-asl-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jackson-jaxrs-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jackson-mapper-asl-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jackson-xc-1.8.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jasper-compiler-5.5.23.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jasper-runtime-5.5.23.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/java-xmlbuilder-0.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jaxb-api-2.2.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jaxb-impl-2.2.3-1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jersey-core-1.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jersey-json-1.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jersey-server-1.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jets3t-0.9.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jettison-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jetty-6.1.26.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jetty-util-6.1.26.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jsch-0.1.42.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jsp-api-2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/jsr305-1.3.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/junit-4.8.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/log4j-1.2.17.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/mockito-all-1.8.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/netty-3.6.2.Final.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/paranamer-2.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/protobuf-java-2.5.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/servlet-api-2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/slf4j-api-1.7.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/snappy-java-1.0.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/stax-api-1.0-2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/xmlenc-0.52.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/xz-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/common/lib/zookeeper-3.4.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-app-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-common-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-core-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-hs-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-hs-plugins-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-shuffle-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/hdfs/hadoop-hdfs-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/share/hadoop/hdfs/hadoop-hdfs-nfs-2.4.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/activation-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/antlr-2.7.7.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/antlr-runtime-3.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/asm-commons-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/asm-tree-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/avro-1.7.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/bonecp-0.8.0.RELEASE.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-cli-1.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-codec-1.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-collections-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-compress-1.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-httpclient-3.0.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-io-2.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-lang-2.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-lang3-3.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/commons-logging-1.1.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/datanucleus-api-jdo-3.2.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/datanucleus-core-3.2.10.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/datanucleus-rdbms-3.2.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/derby-10.10.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/geronimo-annotation_1.0_spec-1.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/geronimo-jaspic_1.0_spec-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/geronimo-jta_1.1_spec-1.1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/groovy-all-2.1.6.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/guava-11.0.2.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hamcrest-core-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-ant-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-beeline-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-cli-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-common-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-contrib-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-exec-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-hbase-handler-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-hwi-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-jdbc-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-metastore-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-serde-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-service-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-0.20-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-0.20S-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-0.23-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-common-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-shims-common-secure-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/hive-testutils-0.13.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/httpclient-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/httpcore-4.2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jdo-api-3.0.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jetty-6.1.26.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jetty-all-7.6.0.v20120127.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jetty-util-6.1.26.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jline-0.9.94.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jpam-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jsr305-1.3.9.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/jta-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/junit-4.10.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/libfb303-0.9.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/libthrift-0.9.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/log4j-1.2.16.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/mail-1.4.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/mysql-connector-java-5.1.23-bin.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/oro-2.0.8.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/paranamer-2.3.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/servlet-api-2.5-20081211.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/servlet-api-2.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/snappy-java-1.0.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/ST4-4.0.4.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/stax-api-1.0.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/stringtemplate-3.2.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/tempus-fugit-1.1.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/velocity-1.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/xz-1.0.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/lib/zookeeper-3.4.5.jar:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hadoop/etc/hadoop:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hbase/conf:/opt/home/matbrown/git/core/sqf/sql/local_hadoop/hive/conf:/opt/home/matbrown/git/core/sqf/export/lib:/opt/home/matbrown/git/core/sqf/export/lib/hbase-trx-1.0.0.jar:/opt/home/matbrown/git/core/sqf/export/lib/trafodion-UDR-1.0.0.jar:/opt/home/matbrown/git/core/sqf/export/lib/trafodion-HBaseAccess-1.0.0.jar:/opt/home/matbrown/git/core/sqf/export/lib/jdbcT2.jar:: 2015-02-04 22:24:10,815, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Max heap option: -Xmx1024m 2015-02-04 22:24:10,885, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Created a new JVM. 2015-02-04 22:24:12,980, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,JavaObjectInterface::init() called for class org/trafodion/sql/HBaseAccess/HTableClient for the first time. 2015-02-04 22:24:12,980, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Entering initJVM(). 2015-02-04 22:24:13,048, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,JavaObjectInterface::init() called for class org/trafodion/sql/HBaseAccess/HTableClient again. 2015-02-04 22:24:13,048, DEBUG, SQL.HDFS.JniTop, Node Number: 0, CPU: 0, PIN: 11609, Process Name: $Z0009GP,,,Entering initJVM().