workerContext.getWorkerSystemMetrics().counter("querymaster", "numQuery").inc();
QueryId queryId = new QueryId(request.getQueryId());
LOG.info("Receive executeQuery request:" + queryId);
queryMaster.handle(new QueryStartEvent(queryId,
new Session(request.getSession()),
new QueryContext(request.getQueryContext()), request.getSql().getValue(),
request.getLogicalPlanJson().getValue()));
done.run(TajoWorker.TRUE_PROTO);
} catch (Exception e) {
workerContext.getWorkerSystemMetrics().counter("querymaster", "errorQuery").inc();