blob: c818b6542d180433d81bee62f9aaf95cb1a307e9 [file] [log] [blame]
# 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.
import pytest
from tests.common.impala_test_suite import ImpalaTestSuite
from tests.common.test_dimensions import (create_exec_option_dimension_from_dict,
create_parquet_dimension)
# Test with denial of reservations at varying frequency.
DEBUG_ACTION_DIMS = [None,
'-1:OPEN:SET_DENY_RESERVATION_PROBABILITY@0.1',
'-1:OPEN:SET_DENY_RESERVATION_PROBABILITY@0.5',
'-1:OPEN:SET_DENY_RESERVATION_PROBABILITY@0.9',
'-1:OPEN:SET_DENY_RESERVATION_PROBABILITY@1.0']
@pytest.mark.xfail(pytest.config.option.testing_remote_cluster,
reason='Queries may not spill on larger clusters')
class TestSpilling(ImpalaTestSuite):
@classmethod
def get_workload(self):
return 'functional-query'
@classmethod
def add_test_dimensions(cls):
super(TestSpilling, cls).add_test_dimensions()
cls.ImpalaTestMatrix.clear_constraints()
cls.ImpalaTestMatrix.add_dimension(create_parquet_dimension('tpch'))
# Tests are calibrated so that they can execute and spill with this page size.
cls.ImpalaTestMatrix.add_dimension(
create_exec_option_dimension_from_dict({'default_spillable_buffer_size' : ['256k'],
'debug_action' : DEBUG_ACTION_DIMS}))
def test_spilling(self, vector):
self.run_test_case('QueryTest/spilling', vector)
def test_spilling_aggs(self, vector):
self.run_test_case('QueryTest/spilling-aggs', vector)
def test_spilling_large_rows(self, vector, unique_database):
"""Test that we can process large rows in spilling operators, with or without
spilling to disk"""
self.run_test_case('QueryTest/spilling-large-rows', vector, unique_database)
def test_spilling_naaj(self, vector):
"""Test spilling null-aware anti-joins"""
self.run_test_case('QueryTest/spilling-naaj', vector)
def test_spilling_naaj_no_deny_reservation(self, vector):
"""
Null-aware anti-join tests that depend on getting more than the minimum reservation
and therefore will not reliably pass with the deny reservation debug action enabled.
"""
if vector.get_value('exec_option')['debug_action'] is None:
self.run_test_case('QueryTest/spilling-naaj-no-deny-reservation', vector)
def test_spilling_sorts_exhaustive(self, vector):
if self.exploration_strategy() != 'exhaustive':
pytest.skip("only run large sorts on exhaustive")
self.run_test_case('QueryTest/spilling-sorts-exhaustive', vector)
def test_disable_unsafe_spills(self, vector):
"""Test that the disable_unsafe_spills query options works end-to-end."""
self.run_test_case('QueryTest/disable-unsafe-spills', vector)