Files
impala/tests/custom_cluster/test_kill_query.py
Mihaly Szjatinya e0cb533c25 IMPALA-13912: Use SHARED_CLUSTER_ARGS in more custom cluster tests
In addition to IMPALA-13503 which allowed having the single cluster
running for the entire test class, this attempts to minimize restarting
between the existing tests without modifying any of their code.

This changeset saves the command line with which
'start-impala-cluster.py' has been run and skips the restarting if the
command line is the same for the next test.

Some tests however do require restart due to the specific metrics being
tested. Such tests are defined with the 'force_restart' flag within the
'with_args' decorator. NOTE: there might be more tests like that
revealed after running the tests in different order resulting in test
failures.

Experimentally, this results in ~150 fewer restarts, mostly coming from
restarts between tests. As for restarts between different variants of
the same test, most of the cluster tests are restricted to single
variant, although multi-variant tests occur occasionally.

Change-Id: I7c9115d4d47b9fe0bfd9dbda218aac2fb02dbd09
Reviewed-on: http://gerrit.cloudera.org:8080/22901
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2025-06-19 17:48:25 +00:00

144 lines
5.1 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.
from __future__ import absolute_import, division, print_function
import pytest
import tests.common.cluster_config as cluster_config
from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
from tests.common.test_result_verifier import error_msg_startswith
from tests.util.cancel_util import (
QueryToKill,
assert_kill_error,
assert_kill_ok
)
class TestKillQuery(CustomClusterTestSuite):
@pytest.mark.execute_serially
def test_coordinator_unreachable(self):
"""
The coordinator of the query to kill is unreachable.
It is required that each impalad in the cluster is a coordinator.
"""
protocol = 'hs2'
with self.create_client_for_nth_impalad(0, protocol) as client, \
QueryToKill(
self,
protocol,
check_on_exit=False,
nth_impalad=2) as query_id_to_kill:
coordinator_to_kill = self.cluster.impalads[2]
coordinator_to_kill.kill()
assert_kill_error(
client,
"KillQuery() RPC failed: Network error:",
query_id=query_id_to_kill,
)
@pytest.mark.execute_serially
@CustomClusterTestSuite.with_args(force_restart=True)
def test_another_coordinator_unreachable(self):
"""
A coordinator other than the one of the query to kill is unreachable.
It is required that each impalad in the cluster is a coordinator.
"""
protocol = 'hs2'
with self.create_client_for_nth_impalad(0, protocol) as client, \
QueryToKill(self, protocol, nth_impalad=2) as query_id_to_kill:
coordinator_to_kill = self.cluster.impalads[1] # impalad 1 is between 0 and 2.
coordinator_to_kill.kill()
assert_kill_ok(client, query_id_to_kill)
@pytest.mark.execute_serially
@cluster_config.single_coordinator
def test_single_coordinator(self):
"""
Test when there is only one coordinator in the cluster.
"""
protocol = 'hs2'
with self.create_client_for_nth_impalad(0, protocol) as client:
assert_kill_error(
client,
"Could not find query on any coordinator.",
query_id='123:456')
@pytest.mark.execute_serially
@cluster_config.admit_one_query_at_a_time
def test_admit_one_query_at_a_time(self):
"""
Make sure queries can be killed when only one query is allowed to run at a time.
"""
protocol = 'hs2'
with self.create_client_for_nth_impalad(0, protocol) as client, \
QueryToKill(self, protocol) as query_id_to_kill:
assert_kill_ok(client, query_id_to_kill)
@pytest.mark.execute_serially
@cluster_config.admit_no_query
def test_admit_no_query(self):
"""
Make sure KILL QUERY statement can be executed when no query will be admitted.
This is to show that KILL QUERY statements are not subject to admission control.
"""
protocol = 'hs2'
with self.create_client_for_nth_impalad(0, protocol) as client:
try:
client.execute("SELECT 1")
except Exception as e:
expected_msg = (
"Rejected query from pool default-pool: "
"disabled by requests limit set to 0"
)
assert error_msg_startswith(str(e), expected_msg)
assert_kill_error(
client,
"Could not find query on any coordinator",
query_id="123:456"
)
@cluster_config.enable_authorization
class TestKillQueryAuthorization(CustomClusterTestSuite):
@pytest.mark.execute_serially
def test_kill_as_admin(self):
# ImpylaHS2Connection does not support authentication yet.
protocol = 'beeswax'
with self.create_client_for_nth_impalad(0, protocol) as client, \
QueryToKill(self, protocol, user="user1") as query_id_to_kill:
assert_kill_ok(client, query_id_to_kill, user=cluster_config.ADMIN)
@pytest.mark.execute_serially
def test_kill_as_non_admin(self):
# ImpylaHS2Connection does not support authentication yet.
protocol = 'beeswax'
user1, user2 = "user1", "user2"
with self.create_client_for_nth_impalad(0, protocol) as user1_client, \
self.create_client_for_nth_impalad(0, protocol) as user2_client, \
QueryToKill(self, protocol, user=user1) as query_id_to_kill:
assert_kill_error(
user2_client,
"User '{0}' is not authorized to kill the query.".format(user2),
query_id=query_id_to_kill,
user=user2,
)
assert_kill_ok(user1_client, query_id_to_kill, user=user1)