This is an automated email from the ASF dual-hosted git repository.
laszlog pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from e4fa1b8c8 IMPALA-12847: Expose computeScanRangeLocations and
computeStats
new f3fb58e23 IMPALA-12830: test_webserver_hide_logs_link() could fail in
the exhaustive build
new 9b8e43e9a IMPALA-12426: QueryStateRecord Refactor
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
be/src/runtime/coordinator.cc | 16 +
be/src/runtime/coordinator.h | 6 +
be/src/service/CMakeLists.txt | 3 +
be/src/service/client-request-state.cc | 24 ++
be/src/service/client-request-state.h | 14 +
be/src/service/impala-http-handler.cc | 15 +-
be/src/service/impala-http-handler.h | 2 +-
be/src/service/impala-server.cc | 138 +------
be/src/service/impala-server.h | 143 +------
be/src/service/query-state-record-test.cc | 158 ++++++++
be/src/service/query-state-record.cc | 410 +++++++++++++++++++++
be/src/service/query-state-record.h | 321 ++++++++++++++++
be/src/util/runtime-profile-test.cc | 5 +-
be/src/util/runtime-profile.cc | 8 +-
be/src/util/runtime-profile.h | 4 +-
common/thrift/Query.thrift | 4 +
.../java/org/apache/impala/planner/Planner.java | 2 +
tests/custom_cluster/test_web_pages.py | 2 +-
18 files changed, 980 insertions(+), 295 deletions(-)
create mode 100644 be/src/service/query-state-record-test.cc
create mode 100644 be/src/service/query-state-record.cc
create mode 100644 be/src/service/query-state-record.h