mirror of
https://github.com/apache/impala.git
synced 2025-12-19 09:58:28 -05:00
To remove the dependency on Python 2, existing scripts need to use python3 rather than python. These commands find those locations (for impala-python and regular python): git grep impala-python | grep -v impala-python3 | grep -v impala-python-common | grep -v init-impala-python git grep bin/python | grep -v python3 This removes or switches most of these locations by various means: 1. If a python file has a #!/bin/env impala-python (or python) but doesn't have a main function, it removes the hash-bang and makes sure that the file is not executable. 2. Most scripts can simply switch from impala-python to impala-python3 (or python to python3) with minimal changes. 3. The cm-api pypi package (which doesn't support Python 3) has been replaced by the cm-client pypi package and interfaces have changed. Rather than migrating the code (which hasn't been used in years), this deletes the old code and stops installing cm-api into the virtualenv. The code can be restored and revamped if there is any interest in interacting with CM clusters. 4. This switches tests/comparison over to impala-python3, but this code has bit-rotted. Some pieces can be run manually, but it can't be fully verified with Python 3. It shouldn't hold back the migration on its own. 5. This also replaces locations of impala-python in comments / documentation / READMEs. 6. kazoo (used for interacting with HBase) needed to be upgraded to a version that supports Python 3. The newest version of kazoo requires upgrades of other component versions, so this uses kazoo 2.8.0 to avoid needing other upgrades. The two remaining uses of impala-python are: - bin/cmake_aux/create_virtualenv.sh - bin/impala-env-versioned-python These will be removed separately when we drop Python 2 support completely. In particular, these are useful for testing impala-shell with Python 2 until we stop supporting Python 2 for impala-shell. The docker-based tests still use /usr/bin/python, but this can be switched over independently (and doesn't impact impala-python) Testing: - Ran core job - Ran build + dataload on Centos 7, Redhat 8 - Manual testing of individual scripts (except some bitrotted areas like the random query generator) Change-Id: If209b761290bc7e7c716c312ea757da3e3bca6dc Reviewed-on: http://gerrit.cloudera.org:8080/23468 Reviewed-by: Michael Smith <michael.smith@cloudera.com> Tested-by: Michael Smith <michael.smith@cloudera.com>
171 lines
5.6 KiB
Python
171 lines
5.6 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for addiitional 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.
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
from thrift.protocol import TBinaryProtocol
|
|
|
|
from tests.common.environ import HIVE_MAJOR_VERSION, IS_APACHE_HIVE
|
|
from impala_thrift_gen.hive_metastore import ThriftHiveMetastore
|
|
from impala_thrift_gen.hive_metastore.ttypes import (
|
|
AbortTxnRequest,
|
|
AllocateTableWriteIdsRequest,
|
|
CheckLockRequest,
|
|
CommitTxnRequest,
|
|
GetValidWriteIdsRequest,
|
|
HeartbeatRequest,
|
|
LockComponent,
|
|
LockLevel,
|
|
LockRequest,
|
|
LockType,
|
|
OpenTxnRequest,
|
|
ShowLocksRequest,
|
|
UnlockRequest,
|
|
)
|
|
# TruncateTableRequest is missing in Apache Hive 3
|
|
if not (IS_APACHE_HIVE and HIVE_MAJOR_VERSION <= 3):
|
|
from impala_thrift_gen.hive_metastore.ttypes import TruncateTableRequest
|
|
|
|
from tests.util.thrift_util import create_transport
|
|
|
|
# HMS config
|
|
metastore_host = "localhost"
|
|
metastore_port = "9083"
|
|
service = "Hive Metastore Server"
|
|
trans_type = 'buffered'
|
|
|
|
# User config
|
|
user = 'AcidTxn - Impala test'
|
|
hostname = 'localhost'
|
|
|
|
|
|
# Utility class for interacting with Hive ACID transactions.
|
|
# It's basically a facade, i.e. it provides a simplified interface for HMS.
|
|
#
|
|
# You can also use it interactively from impala-python3, e.g.:
|
|
# $> impala-python3
|
|
# >>> from tests.util.acid_txn import AcidTxn
|
|
# >>> at = AcidTxn()
|
|
# >>> at.get_open_txns()
|
|
class AcidTxn(object):
|
|
def __init__(self, hms_client=None):
|
|
if hms_client:
|
|
self.hms_client = hms_client
|
|
else:
|
|
hive_transport = create_transport(
|
|
host=metastore_host,
|
|
port=metastore_port,
|
|
service=service,
|
|
transport_type=trans_type)
|
|
protocol = TBinaryProtocol.TBinaryProtocol(hive_transport)
|
|
self.hms_client = ThriftHiveMetastore.Client(protocol)
|
|
hive_transport.open()
|
|
|
|
def get_hms_client(self):
|
|
return self.hms_client
|
|
|
|
def get_open_txns(self):
|
|
return self.hms_client.get_open_txns()
|
|
|
|
def get_open_txns_info(self):
|
|
return self.hms_client.get_open_txns_info()
|
|
|
|
def open_txns(self):
|
|
open_txn_req = OpenTxnRequest()
|
|
open_txn_req.num_txns = 1
|
|
open_txn_req.user = user
|
|
open_txn_req.hostname = hostname
|
|
open_txn_resp = self.hms_client.open_txns(open_txn_req)
|
|
return open_txn_resp.txn_ids[0]
|
|
|
|
def allocate_table_write_ids(self, txn_id, db_name, table_name):
|
|
allocate_req = AllocateTableWriteIdsRequest()
|
|
allocate_req.dbName = db_name
|
|
allocate_req.tableName = table_name
|
|
allocate_req.txnIds = [txn_id]
|
|
resp = self.hms_client.allocate_table_write_ids(allocate_req)
|
|
return resp.txnToWriteIds[0].writeId
|
|
|
|
def get_valid_write_ids(self, db_name, table_name):
|
|
get_writeids_req = GetValidWriteIdsRequest()
|
|
get_writeids_req.fullTableNames = ['{}.{}'.format(db_name, table_name)]
|
|
return self.hms_client.get_valid_write_ids(get_writeids_req)
|
|
|
|
def show_locks(self, db_name, table_name, part_name=None, is_extended=False):
|
|
show_locks_req = ShowLocksRequest()
|
|
show_locks_req.dbname = db_name
|
|
show_locks_req.tablename = table_name
|
|
show_locks_req.partname = part_name
|
|
show_locks_req.isExtended = is_extended
|
|
return self.hms_client.show_locks(show_locks_req)
|
|
|
|
def lock(self, txn_id, db_name, table_name, type=LockType.SHARED_WRITE,
|
|
level=LockLevel.TABLE):
|
|
lock_comp = LockComponent()
|
|
lock_comp.type = type
|
|
lock_comp.level = level
|
|
lock_comp.dbname = db_name
|
|
lock_comp.tablename = table_name
|
|
lock_req = LockRequest()
|
|
lock_req.component = [lock_comp]
|
|
lock_req.txnid = txn_id
|
|
lock_req.user = user
|
|
lock_req.hostname = hostname
|
|
return self.hms_client.lock(lock_req)
|
|
|
|
def check_lock(self, lock_id):
|
|
check_lock_req = CheckLockRequest()
|
|
check_lock_req.lockid = lock_id
|
|
return self.hms_client.check_lock(check_lock_req)
|
|
|
|
def unlock(self, lock_id):
|
|
unlock_req = UnlockRequest()
|
|
unlock_req.lockid = lock_id
|
|
return self.hms_client.unlock(unlock_req)
|
|
|
|
def heartbeat(self, txn_id=None, lock_id=None):
|
|
heartbeat_req = HeartbeatRequest()
|
|
heartbeat_req.txnid = txn_id
|
|
heartbeat_req.lockid = lock_id
|
|
self.hms_client.heartbeat(heartbeat_req)
|
|
|
|
def commit_txn(self, txn_id):
|
|
commit_req = CommitTxnRequest()
|
|
commit_req.txnid = txn_id
|
|
return self.hms_client.commit_txn(commit_req)
|
|
|
|
def abort_txn(self, txn_id):
|
|
abort_req = AbortTxnRequest()
|
|
abort_req.txnid = txn_id
|
|
return self.hms_client.abort_txn(abort_req)
|
|
|
|
def truncate_table_req(self, db_name, table_name):
|
|
truncate_req = TruncateTableRequest()
|
|
truncate_req.dbName = db_name
|
|
truncate_req.tableName = table_name
|
|
return self.hms_client.truncate_table_req(truncate_req)
|
|
|
|
def commit_all_open_txns(self):
|
|
open_txns_resp = self.get_open_txns()
|
|
min_open = open_txns_resp.min_open_txn
|
|
for txn in open_txns_resp.open_txns:
|
|
if txn >= min_open:
|
|
try:
|
|
self.commit_txn(txn)
|
|
except Exception as e:
|
|
print(str(e))
|