if (recType == RecordTypes.SessionStart) {
sessionId = values.get(Keys.SESSION_ID.name());
} else if (recType == RecordTypes.QueryStart
|| recType == RecordTypes.QueryEnd) {
String key = values.get(Keys.QUERY_ID.name());
QueryInfo ji;
if (jobInfoMap.containsKey(key)) {
ji = jobInfoMap.get(key);
ji.hm.putAll(values);
} else {
ji = new QueryInfo();
ji.hm = new HashMap<String, String>();
ji.hm.putAll(values);
jobInfoMap.put(key, ji);