mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
Adds end-to-end tests to validate that following various metadata operations, the catalog state in catalogd and impalads is the same. For IMPALA-6962, catalogd process restart for tests is fixed. Change-Id: Ic6c5b39e29b2885cd30fede18833cbf23fb755f5 Reviewed-on: http://gerrit.cloudera.org:8080/10291 Reviewed-by: Alex Behm <alex.behm@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
268 lines
9.9 KiB
Python
268 lines
9.9 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 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.
|
|
#
|
|
# Basic object model of an Impala cluster (set of Impala processes).
|
|
#
|
|
import logging
|
|
import os
|
|
import psutil
|
|
import socket
|
|
from getpass import getuser
|
|
from random import choice
|
|
from signal import SIGKILL
|
|
from time import sleep
|
|
|
|
from tests.common.impala_service import (
|
|
CatalogdService,
|
|
ImpaladService,
|
|
StateStoredService)
|
|
from tests.util.shell_util import exec_process, exec_process_async
|
|
|
|
logging.basicConfig(level=logging.ERROR, format='%(threadName)s: %(message)s')
|
|
LOG = logging.getLogger('impala_cluster')
|
|
LOG.setLevel(level=logging.DEBUG)
|
|
|
|
IMPALA_HOME = os.environ['IMPALA_HOME']
|
|
CATALOGD_PATH = os.path.join(IMPALA_HOME, 'bin/start-catalogd.sh')
|
|
|
|
# Represents a set of Impala processes. Each Impala process must be created with
|
|
# a basic set of command line options (beeswax_port, webserver_port, etc)
|
|
class ImpalaCluster(object):
|
|
def __init__(self):
|
|
self.__impalads, self.__statestoreds, self.__catalogd =\
|
|
self.__build_impala_process_lists()
|
|
LOG.info("Found %d impalad/%d statestored/%d catalogd process(es)" %\
|
|
(len(self.__impalads), len(self.__statestoreds), 1 if self.__catalogd else 0))
|
|
|
|
def refresh(self):
|
|
""" Re-loads the impalad/statestored/catalogd processes if they exist.
|
|
|
|
Helpful to confirm that processes have been killed.
|
|
"""
|
|
self.__impalads, self.__statestoreds, self.__catalogd =\
|
|
self.__build_impala_process_lists()
|
|
|
|
@property
|
|
def statestored(self):
|
|
"""
|
|
Returns the statestore process
|
|
|
|
Note: Currently we expectly a single statestore process, in the future this might
|
|
change in which case this should return the "active" statestore.
|
|
"""
|
|
# If no statestored process exists, return None.
|
|
return self.__statestoreds[0] if len(self.__statestoreds) > 0 else None
|
|
|
|
@property
|
|
def impalads(self):
|
|
"""Returns a list of the known impalad processes"""
|
|
return self.__impalads
|
|
|
|
@property
|
|
def catalogd(self):
|
|
"""Returns the catalogd process, or None if no catalogd process was found"""
|
|
return self.__catalogd
|
|
|
|
def get_first_impalad(self):
|
|
return self.impalads[0]
|
|
|
|
def get_any_impalad(self):
|
|
"""Selects a random impalad from the list of known processes"""
|
|
return choice(self.impalads)
|
|
|
|
def get_different_impalad(self, other_impalad):
|
|
"""Selects an impalad that is different from the given impalad"""
|
|
if len(self.impalads) <= 1:
|
|
assert 0, "Only %d impalads available to choose from" % len(self.impalads)
|
|
LOG.info("other_impalad: " + str(other_impalad))
|
|
LOG.info("Cluster: " + str(len(self.impalads)))
|
|
LOG.info("Cluster: " + str(self.impalads))
|
|
return choice([impalad for impalad in self.impalads if impalad != other_impalad])
|
|
|
|
def __build_impala_process_lists(self):
|
|
"""
|
|
Gets all the running Impala procs (with start arguments) on the machine.
|
|
|
|
Note: This currently only works for the local case. To support running in a cluster
|
|
environment this would need to enumerate each machine in the cluster.
|
|
"""
|
|
impalads = list()
|
|
statestored = list()
|
|
catalogd = None
|
|
for pid in psutil.get_pid_list():
|
|
try:
|
|
process = psutil.Process(pid)
|
|
try:
|
|
if process.username != getuser():
|
|
continue
|
|
except KeyError, e:
|
|
if "uid not found" in str(e):
|
|
continue
|
|
raise
|
|
# IMPALA-6889: When a process shuts down and becomes a zombie its cmdline becomes
|
|
# empty for a brief moment, before it gets reaped by its parent (see man proc). We
|
|
# copy the cmdline to prevent it from changing between the following checks and
|
|
# the construction of the *Process objects.
|
|
cmdline = process.cmdline
|
|
if len(cmdline) == 0:
|
|
continue
|
|
if process.name == 'impalad':
|
|
impalads.append(ImpaladProcess(cmdline))
|
|
elif process.name == 'statestored':
|
|
statestored.append(StateStoreProcess(cmdline))
|
|
elif process.name == 'catalogd':
|
|
catalogd = CatalogdProcess(cmdline)
|
|
except psutil.NoSuchProcess, e:
|
|
# A process from get_pid_list() no longer exists, continue.
|
|
LOG.info(e)
|
|
continue
|
|
# If the operating system PIDs wrap around during startup of the local minicluster,
|
|
# the order of the impalads is incorrect. We order them by their backend port, so that
|
|
# get_first_impalad() always returns the first one.
|
|
impalads.sort(key = lambda i: i.service.be_port)
|
|
return impalads, statestored, catalogd
|
|
|
|
# Represents a process running on a machine and common actions that can be performed
|
|
# on a process such as restarting or killing.
|
|
class Process(object):
|
|
def __init__(self, cmd):
|
|
self.cmd = cmd
|
|
assert cmd is not None and len(cmd) >= 1,\
|
|
'Process object must be created with valid command line argument list'
|
|
|
|
def get_pid(self):
|
|
"""Gets the PID of the process. Returns None if the PID cannot be determined"""
|
|
LOG.info("Attempting to find PID for %s" % ' '.join(self.cmd))
|
|
for pid in psutil.get_pid_list():
|
|
try:
|
|
process = psutil.Process(pid)
|
|
if set(self.cmd) == set(process.cmdline):
|
|
return pid
|
|
except psutil.NoSuchProcess, e:
|
|
# A process from get_pid_list() no longer exists, continue.
|
|
LOG.info(e)
|
|
LOG.info("No PID found for process cmdline: %s. Process is dead?" % self.cmd)
|
|
return None
|
|
|
|
def start(self):
|
|
LOG.info("Starting process: %s" % ' '.join(self.cmd))
|
|
self.process = exec_process_async(' '.join(self.cmd))
|
|
|
|
def wait(self):
|
|
"""Wait until the current process has exited, and returns
|
|
(return code, stdout, stderr)"""
|
|
LOG.info("Waiting for process: %s" % ' '.join(self.cmd))
|
|
stdout, stderr = self.process.communicate()
|
|
return self.process.returncode, stdout, stderr
|
|
|
|
def kill(self, signal=SIGKILL):
|
|
"""
|
|
Kills the given processes.
|
|
|
|
Returns the PID that was killed or None of no PID was found (process not running)
|
|
"""
|
|
pid = self.get_pid()
|
|
if pid is None:
|
|
assert 0, "No processes %s found" % self.cmd
|
|
LOG.info('Killing: %s (PID: %d) with signal %s' % (' '.join(self.cmd), pid, signal))
|
|
exec_process("kill -%d %d" % (signal, pid))
|
|
|
|
return pid
|
|
|
|
def restart(self):
|
|
"""Kills and restarts the process"""
|
|
self.kill()
|
|
# Wait for a bit so the ports will be released.
|
|
sleep(1)
|
|
self.start()
|
|
|
|
def __str__(self):
|
|
return "Command: %s PID: %s" % (self.cmd, self.get_pid())
|
|
|
|
|
|
# Base class for all Impala processes
|
|
class BaseImpalaProcess(Process):
|
|
def __init__(self, cmd, hostname):
|
|
super(BaseImpalaProcess, self).__init__(cmd)
|
|
self.hostname = hostname
|
|
|
|
def _get_webserver_port(self, default=None):
|
|
return int(self._get_arg_value('webserver_port', default))
|
|
|
|
def _get_arg_value(self, arg_name, default=None):
|
|
"""Gets the argument value for given argument name"""
|
|
for arg in self.cmd:
|
|
if ('%s=' % arg_name) in arg.strip().lstrip('-'):
|
|
return arg.split('=')[1]
|
|
if default is None:
|
|
assert 0, "No command line argument '%s' found." % arg_name
|
|
return default
|
|
|
|
|
|
# Represents an impalad process
|
|
class ImpaladProcess(BaseImpalaProcess):
|
|
def __init__(self, cmd):
|
|
super(ImpaladProcess, self).__init__(cmd, socket.gethostname())
|
|
self.service = ImpaladService(self.hostname, self._get_webserver_port(default=25000),
|
|
self.__get_beeswax_port(default=21000),
|
|
self.__get_be_port(default=22000),
|
|
self.__get_hs2_port(default=21050))
|
|
|
|
def __get_beeswax_port(self, default=None):
|
|
return int(self._get_arg_value('beeswax_port', default))
|
|
|
|
def __get_be_port(self, default=None):
|
|
return int(self._get_arg_value('be_port', default))
|
|
|
|
def __get_hs2_port(self, default=None):
|
|
return int(self._get_arg_value('hs2_port', default))
|
|
|
|
def start(self, wait_until_ready=True):
|
|
"""Starts the impalad and waits until the service is ready to accept connections."""
|
|
super(ImpaladProcess, self).start()
|
|
if wait_until_ready:
|
|
self.service.wait_for_metric_value('impala-server.ready',
|
|
expected_value=1, timeout=30)
|
|
|
|
|
|
# Represents a statestored process
|
|
class StateStoreProcess(BaseImpalaProcess):
|
|
def __init__(self, cmd):
|
|
super(StateStoreProcess, self).__init__(cmd, socket.gethostname())
|
|
self.service =\
|
|
StateStoredService(self.hostname, self._get_webserver_port(default=25010))
|
|
|
|
|
|
# Represents a catalogd process
|
|
class CatalogdProcess(BaseImpalaProcess):
|
|
def __init__(self, cmd):
|
|
super(CatalogdProcess, self).__init__(cmd, socket.gethostname())
|
|
self.service = CatalogdService(self.hostname,
|
|
self._get_webserver_port(default=25020), self.__get_port(default=26000))
|
|
|
|
def __get_port(self, default=None):
|
|
return int(self._get_arg_value('catalog_service_port', default))
|
|
|
|
def start(self, wait_until_ready=True):
|
|
"""Starts catalogd and waits until the service is ready to accept connections."""
|
|
restart_cmd = [CATALOGD_PATH] + self.cmd[1:] + ["&"]
|
|
LOG.info("Starting Catalogd process: %s" % ' '.join(restart_cmd))
|
|
os.system(' '.join(restart_cmd))
|
|
if wait_until_ready:
|
|
self.service.wait_for_metric_value('statestore-subscriber.connected',
|
|
expected_value=1, timeout=30)
|