mirror of
https://github.com/apache/impala.git
synced 2025-12-23 21:08:39 -05:00
IMPALA-7681. Add Azure Blob File System (ADLS Gen2) support.
HADOOP-15407 adds a new FileSystem implementation called "ABFS" for the ADLS Gen2 service. It's in the hadoop-azure module as a replacement for WASB. Filesystem semantics should be the same, so skipped tests and other behavior changes have simply mirrored what is done for ADLS Gen1 by default. Tests skipped on ADLS Gen1 due to eventual consistency of the Python client can be run against ADLS Gen2. Change-Id: I5120b071760e7655e78902dce8483f8f54de445d Reviewed-on: http://gerrit.cloudera.org:8080/11630 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
This commit is contained in:
committed by
Impala Public Jenkins
parent
0340a153ce
commit
7a022cf36a
@@ -24,7 +24,7 @@ import subprocess
|
||||
|
||||
from tempfile import mkdtemp
|
||||
from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
|
||||
from tests.common.skip import SkipIfS3, SkipIfADLS, SkipIfIsilon, SkipIfLocal
|
||||
from tests.common.skip import SkipIfS3, SkipIfABFS, SkipIfADLS, SkipIfIsilon, SkipIfLocal
|
||||
from tests.common.test_dimensions import create_uncompressed_text_dimension
|
||||
from tests.util.filesystem_utils import get_fs_path
|
||||
|
||||
@@ -162,6 +162,7 @@ class TestUdfPersistence(CustomClusterTestSuite):
|
||||
|
||||
@SkipIfIsilon.hive
|
||||
@SkipIfS3.hive
|
||||
@SkipIfABFS.hive
|
||||
@SkipIfADLS.hive
|
||||
@SkipIfLocal.hive
|
||||
@pytest.mark.execute_serially
|
||||
@@ -183,6 +184,7 @@ class TestUdfPersistence(CustomClusterTestSuite):
|
||||
|
||||
@SkipIfIsilon.hive
|
||||
@SkipIfS3.hive
|
||||
@SkipIfABFS.hive
|
||||
@SkipIfADLS.hive
|
||||
@SkipIfLocal.hive
|
||||
@pytest.mark.execute_serially
|
||||
@@ -246,6 +248,8 @@ class TestUdfPersistence(CustomClusterTestSuite):
|
||||
|
||||
@SkipIfIsilon.hive
|
||||
@SkipIfS3.hive
|
||||
@SkipIfABFS.hive
|
||||
@SkipIfADLS.hive
|
||||
@SkipIfLocal.hive
|
||||
@pytest.mark.execute_serially
|
||||
@CustomClusterTestSuite.with_args(
|
||||
@@ -307,6 +311,8 @@ class TestUdfPersistence(CustomClusterTestSuite):
|
||||
|
||||
@SkipIfIsilon.hive
|
||||
@SkipIfS3.hive
|
||||
@SkipIfABFS.hive
|
||||
@SkipIfADLS.hive
|
||||
@SkipIfLocal.hive
|
||||
@pytest.mark.execute_serially
|
||||
@CustomClusterTestSuite.with_args(
|
||||
|
||||
Reference in New Issue
Block a user