mirror of
https://github.com/apache/impala.git
synced 2025-12-30 12:02:10 -05:00
This patch adds a way to allow for dynamic progress reporting in the shell. There are two new command line flags for the shell --live_progress - will print the completed vs total # of scan ranges --live_summary - prints an updated exec summary In addition to the command line flags, these options can be set from within the shell using: set LIVE_SUMMARY=True set LIVE_PROGRESS=True The new options will be listed under shell options. Both reports will be updated at most every second, for longer running queries it will be adjusted to the time between two RPC calls to get the query status. To provide this information in the ExecSummary, the Thrift structure for the ExecSummary was extended to contain a progress indicator. The output is printed to stderr and only available in interactive mode. An example video is available here: https://asciinema.org/a/5wi7ypckx4ol4ha1hlg3e3q1k Change-Id: I70b2ab5fa74dc2ba5bc3b338ef13ddc6ccf367d2 Reviewed-on: http://gerrit.cloudera.org:8080/508 Tested-by: Internal Jenkins Reviewed-by: Martin Grund <mgrund@cloudera.com>
127 lines
4.4 KiB
Python
127 lines
4.4 KiB
Python
#!/usr/bin/env python
|
|
# Copyright 2012 Cloudera Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import csv
|
|
import re
|
|
import sys
|
|
from cStringIO import StringIO
|
|
|
|
|
|
class PrettyOutputFormatter(object):
|
|
def __init__(self, prettytable):
|
|
self.prettytable = prettytable
|
|
|
|
def format(self, rows):
|
|
# Clear rows that already exist in the table.
|
|
self.prettytable.clear_rows()
|
|
try:
|
|
map(self.prettytable.add_row, rows)
|
|
return self.prettytable.get_string()
|
|
except Exception, e:
|
|
# beeswax returns each row as a tab separated string. If a string column
|
|
# value in a row has tabs, it will break the row split. Default to displaying
|
|
# raw results. This will change with a move to hiveserver2.
|
|
# Reference: https://issues.cloudera.org/browse/IMPALA-116
|
|
error_msg = ("Prettytable cannot resolve string columns values that have "
|
|
" embedded tabs. Reverting to tab delimited text output")
|
|
print >>sys.stderr, error_msg
|
|
return '\n'.join(['\t'.join(row) for row in rows])
|
|
|
|
|
|
class DelimitedOutputFormatter(object):
|
|
def __init__(self, field_delim="\t"):
|
|
if field_delim:
|
|
self.field_delim = field_delim.decode('string-escape')
|
|
if len(self.field_delim) != 1:
|
|
error_msg = ("Illegal delimiter %s, the delimiter "
|
|
"must be a 1-character string." % self.field_delim)
|
|
raise ValueError, error_msg
|
|
|
|
def format(self, rows):
|
|
# csv.writer expects a file handle to the input.
|
|
# cStringIO is used as the temporary buffer.
|
|
temp_buffer = StringIO()
|
|
writer = csv.writer(temp_buffer, delimiter=self.field_delim,
|
|
lineterminator='\n', quoting=csv.QUOTE_MINIMAL)
|
|
writer.writerows(rows)
|
|
rows = temp_buffer.getvalue().rstrip('\n')
|
|
temp_buffer.close()
|
|
return rows
|
|
|
|
|
|
class OutputStream(object):
|
|
def __init__(self, formatter, filename=None):
|
|
"""Helper class for writing query output.
|
|
|
|
User should invoke the `write(data)` method of this object.
|
|
`data` is a list of lists.
|
|
"""
|
|
self.formatter = formatter
|
|
self.handle = sys.stdout
|
|
self.filename = filename
|
|
if self.filename:
|
|
try:
|
|
self.handle = open(self.filename, 'ab')
|
|
except IOError, err:
|
|
print >>sys.stderr, "Error opening file %s: %s" % (self.filename, str(err))
|
|
print >>sys.stderr, "Writing to stdout"
|
|
|
|
def write(self, data):
|
|
print >>self.handle, self.formatter.format(data)
|
|
self.handle.flush()
|
|
|
|
def __del__(self):
|
|
# If the output file cannot be opened, OutputStream defaults to sys.stdout.
|
|
# Don't close the file handle if it points to sys.stdout.
|
|
if self.filename and self.handle != sys.stdout:
|
|
self.handle.close()
|
|
|
|
|
|
class OverwritingStdErrOutputStream(object):
|
|
"""This class is used to write output to stderr and overwrite the previous text as
|
|
soon as new content needs to be written."""
|
|
|
|
# ANSI Escape code for up.
|
|
UP = "\x1b[A"
|
|
|
|
def __init__(self):
|
|
self.last_line_count = 0
|
|
self.last_clean_text = ""
|
|
|
|
def _clean_before(self):
|
|
sys.stderr.write(self.UP * self.last_line_count)
|
|
sys.stderr.write(self.last_clean_text)
|
|
|
|
def write(self, data):
|
|
"""This method will erase the previously printed text on screen by going
|
|
up as many new lines as the old text had and overwriting it with whitespace.
|
|
Afterwards, the new text will be printed."""
|
|
self._clean_before()
|
|
new_line_count = data.count("\n")
|
|
sys.stderr.write(self.UP * min(new_line_count, self.last_line_count))
|
|
sys.stderr.write(data)
|
|
|
|
# Cache the line count and the old text where all text was replaced by
|
|
# whitespace.
|
|
self.last_line_count = new_line_count
|
|
self.last_clean_text = re.sub(r"[^\s]", " ", data)
|
|
|
|
def clear(self):
|
|
sys.stderr.write(self.UP * self.last_line_count)
|
|
sys.stderr.write(self.last_clean_text)
|
|
sys.stderr.write(self.UP * self.last_line_count)
|
|
self.last_line_count = 0
|
|
self.last_clean_text = ""
|