Files
impala/shell/impala_shell_config_defaults.py
aphadke a18809ba1f IMPALA-7943: Bump the default client timeout set on impala-shell
As part of IMPALA-7555, we added a default socket timeout of 5 seconds
when connecting to an impalad. Under heavy load with kerberos and SSL
enabled, we could hit this default timeout. This change bumps up the
timeout to 60 secs to make the impala-shell more robust.

Change-Id: Ifc40069e86cbf93634320804efba003fb5551afe
Reviewed-on: http://gerrit.cloudera.org:8080/12051
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Lars Volker <lv@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2018-12-07 06:57:24 +00:00

56 lines
1.9 KiB
Python

#!/usr/bin/env python
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
# defaults for OptionParser options stored in dict
import getpass
import os
import socket
_histfile_from_env = os.environ.get(
'IMPALA_HISTFILE', '~/.impalahistory')
impala_shell_defaults = {
'ca_cert': None,
'config_file': os.path.expanduser("~/.impalarc"),
'default_db': None,
'history_file': _histfile_from_env,
'history_max': 1000,
'ignore_query_failure': False,
'impalad': socket.getfqdn() + ':21000',
'kerberos_host_fqdn': None,
'kerberos_service_name': 'impala',
'output_delimiter': '\\t',
'output_file': None,
'print_header': False,
'print_progress' : False,
'print_summary' : False,
'query': None,
'query_file': None,
'show_profiles': False,
'ssl': False,
'use_kerberos': False,
'use_ldap': False,
'user': getpass.getuser(),
'verbose': True,
'version': False,
'write_delimited': False,
'client_connect_timeout_ms': 60000,
}