This is an automated email from the ASF dual-hosted git repository.

cnauroth pushed a change to branch HADOOP-19343
in repository https://gitbox.apache.org/repos/asf/hadoop.git


 discard 8961f4f30b4 HADOOP-19343: Add support for mkdir() and getFileStatus()
    omit 31e24808e6b HADOOP-19343: GCS / Add implementation for create() API
     add 8f78af1edcd HADOOP-19580. [ABFS][BugFix] IsNonEmptyDirectory Check 
should loop on listing using updated continuation token (#7716)
     add 3bd3bf86e70 HDFS-17793. [ARR] RBF: Enable the router asynchronous RPC 
feature to handle DelegationToken request errors. (#7714). Contributed by 
zhangxiping1.
     add eb30bcd461b HADOOP-19568. Update byte-buddy to 1.15.11 (#7687)
     add f62fb77ad9b HADOOP-19415. [JDK17] Upgrade JUnit from 4 to 5 in 
hadoop-common Part8. (#7667)
     add 49d12ad4e40 HADOOP-19415. [JDK17] Upgrade JUnit from 4 to 5 in 
hadoop-common Part9. (#7668)
     add 1ecf53d4f03 HDFS-12431. [JDK17] Upgrade JUnit from 4 to 5 in 
hadoop-hdfs Part4. (#7647)
     add 1d4c4e4bc15 HADOOP-19415. [JDK17] Upgrade JUnit from 4 to 5 in 
hadoop-common Part11. (#7671)
     add 00cffd15bdd YARN-11822. Fix flaky unit test in 
TestFederationProtocolRecords (#7718) Contributed by Peter Szucs.
     add 7f6fca4890f HADOOP-19415. [JDK17] Upgrade JUnit from 4 to 5 in 
hadoop-common Part12. (#7672)
     add d2a970f2185 YARN-11713. yarn-ui build fails in ARM docker in MacOs 
phantomjs error. (#7729)
     add a21927a5912 YARN-11712. Yarn-ui build fails in ARM docker looking for 
python2. (#7730)
     new 579bd2be410 HADOOP-19343: GCS / Add implementation for create() API
     new 13614c3bd3e HADOOP-19343: Add support for mkdir() and getFileStatus()

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8961f4f30b4)
            \
             N -- N -- N   refs/heads/HADOOP-19343 (13614c3bd3e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 dev-support/docker/Dockerfile_aarch64              |   1 +
 .../hadoop/fs/obs/TestOBSFSMainOperations.java     |   2 +-
 .../org/apache/hadoop/fs/FCStatisticsBaseTest.java |  51 +-
 .../apache/hadoop/fs/FSMainOperationsBaseTest.java | 321 ++++++------
 .../hadoop/fs/FileContextCreateMkdirBaseTest.java  |  29 +-
 .../fs/FileContextMainOperationsBaseTest.java      | 413 ++++++++--------
 .../apache/hadoop/fs/FileContextTestHelper.java    |  25 +-
 .../apache/hadoop/fs/FileContextTestWrapper.java   |  25 +-
 .../org/apache/hadoop/fs/FileContextURIBase.java   | 180 +++----
 .../org/apache/hadoop/fs/FileContextUtilBase.java  |  24 +-
 .../hadoop/fs/FileSystemContractBaseTest.java      | 172 ++++---
 .../org/apache/hadoop/fs/FileSystemTestHelper.java |  15 +-
 .../apache/hadoop/fs/FileSystemTestWrapper.java    |  25 +-
 .../java/org/apache/hadoop/fs/SymlinkBaseTest.java | 210 +++++---
 .../java/org/apache/hadoop/fs/TestChecksumFs.java  |  18 +-
 .../org/apache/hadoop/fs/TestFcLocalFsUtil.java    |   4 +-
 .../apache/hadoop/fs/TestFileSystemCaching.java    |  22 +-
 .../org/apache/hadoop/fs/TestGetEnclosingRoot.java |   2 +-
 .../fs/TestLocalFSFileContextCreateMkdir.java      |   4 +-
 .../fs/TestLocalFSFileContextMainOperations.java   |  13 +-
 .../apache/hadoop/fs/TestLocalFsFCStatistics.java  |  15 +-
 .../hadoop/fs/TestRawLocalFileSystemContract.java  |  16 +-
 .../org/apache/hadoop/fs/TestSymlinkLocalFS.java   |  20 +-
 .../hadoop/fs/TestSymlinkLocalFSFileContext.java   |   4 +-
 .../hadoop/fs/TestSymlinkLocalFSFileSystem.java    |  36 +-
 .../org/apache/hadoop/fs/impl/TestFutureIO.java    |  14 +-
 .../hadoop/fs/impl/TestVectoredReadUtils.java      |  90 ++--
 .../TestFSMainOperationsLocalFileSystem.java       |  15 +-
 .../hadoop/fs/viewfs/TestFcCreateMkdirLocalFs.java |   8 +-
 .../fs/viewfs/TestFcMainOperationsLocalFs.java     |   8 +-
 .../apache/hadoop/fs/viewfs/TestViewFsLocalFs.java |   8 +-
 .../fs/viewfs/TestViewFsWithAuthorityLocalFs.java  |  33 +-
 .../apache/hadoop/fs/viewfs/ViewFsBaseTest.java    | 550 ++++++++++++---------
 .../java/org/apache/hadoop/io/AvroTestUtil.java    |   2 +-
 .../java/org/apache/hadoop/io/TestArrayFile.java   |  22 +-
 .../hadoop/io/TestArrayPrimitiveWritable.java      |  74 +--
 .../org/apache/hadoop/io/TestArrayWritable.java    |  26 +-
 .../org/apache/hadoop/io/TestBloomMapFile.java     |  52 +-
 .../org/apache/hadoop/io/TestBooleanWritable.java  |  33 +-
 .../io/TestBoundedByteArrayOutputStream.java       |  48 +-
 .../org/apache/hadoop/io/TestBytesWritable.java    |  54 +-
 .../org/apache/hadoop/io/TestDataByteBuffers.java  |   5 +-
 .../apache/hadoop/io/TestDefaultStringifier.java   |  10 +-
 .../org/apache/hadoop/io/TestEnumSetWritable.java  |  35 +-
 .../org/apache/hadoop/io/TestGenericWritable.java  |  18 +-
 .../java/org/apache/hadoop/io/TestIOUtils.java     | 120 ++---
 .../java/org/apache/hadoop/io/TestMD5Hash.java     |  12 +-
 .../java/org/apache/hadoop/io/TestMapFile.java     |  86 ++--
 .../java/org/apache/hadoop/io/TestMapWritable.java |   8 +-
 ...estMoreWeakReferencedElasticByteBufferPool.java |   8 +-
 .../apache/hadoop/io/TestObjectWritableProtos.java |   4 +-
 .../org/apache/hadoop/io/TestSecureIOUtils.java    |  27 +-
 .../org/apache/hadoop/io/TestSequenceFile.java     |  79 ++-
 .../apache/hadoop/io/TestSequenceFileAppend.java   |  32 +-
 .../hadoop/io/TestSequenceFileSerialization.java   |  14 +-
 .../org/apache/hadoop/io/TestSequenceFileSync.java |   2 +-
 .../java/org/apache/hadoop/io/TestSetFile.java     |  19 +-
 .../apache/hadoop/io/TestSortedMapWritable.java    |  49 +-
 .../test/java/org/apache/hadoop/io/TestText.java   | 118 +++--
 .../java/org/apache/hadoop/io/TestTextNonUTF8.java |   6 +-
 .../test/java/org/apache/hadoop/io/TestUTF8.java   |   6 +-
 .../apache/hadoop/io/TestVersionedWritable.java    |   2 +-
 .../TestWeakReferencedElasticByteBufferPool.java   | 130 ++---
 .../java/org/apache/hadoop/io/TestWritable.java    |  34 +-
 .../org/apache/hadoop/io/TestWritableName.java     |   8 +-
 .../org/apache/hadoop/io/TestWritableUtils.java    |   6 +-
 .../io/compress/CompressDecompressTester.java      |  54 +-
 .../apache/hadoop/io/compress/TestBZip2Codec.java  |  14 +-
 .../io/compress/TestBlockDecompressorStream.java   |  16 +-
 .../org/apache/hadoop/io/compress/TestCodec.java   | 143 +++---
 .../hadoop/io/compress/TestCodecFactory.java       |  23 +-
 .../apache/hadoop/io/compress/TestCodecPool.java   |  79 +--
 .../io/compress/TestCompressionStreamReuse.java    |  11 +-
 .../io/compress/TestCompressorDecompressor.java    |   2 +-
 .../hadoop/io/compress/TestCompressorStream.java   |  11 +-
 .../hadoop/io/compress/TestDecompressorStream.java |  10 +-
 .../apache/hadoop/io/compress/TestGzipCodec.java   |  16 +-
 .../io/compress/bzip2/TestBZip2TextFileWriter.java |  12 +-
 .../bzip2/TestBzip2CompressorDecompressor.java     |  34 +-
 .../lz4/TestLz4CompressorDecompressor.java         |  43 +-
 .../snappy/TestSnappyCompressorDecompressor.java   |  51 +-
 .../zlib/TestZlibCompressorDecompressor.java       |  85 ++--
 .../zstd/TestZStandardCompressorDecompressor.java  | 128 ++---
 .../io/erasurecode/TestCodecRawCoderMapping.java   |  40 +-
 .../hadoop/io/erasurecode/TestCodecRegistry.java   |   8 +-
 .../hadoop/io/erasurecode/TestCoderBase.java       |   4 +-
 .../apache/hadoop/io/erasurecode/TestECSchema.java |  16 +-
 .../TestErasureCodingEncodeAndDecode.java          |   4 +-
 .../erasurecode/codec/TestHHXORErasureCodec.java   |   4 +-
 .../io/erasurecode/coder/TestErasureCoderBase.java |   2 +-
 .../erasurecode/coder/TestHHErasureCoderBase.java  |   2 +-
 .../erasurecode/coder/TestHHXORErasureCoder.java   |   6 +-
 .../io/erasurecode/coder/TestRSErasureCoder.java   |  14 +-
 .../hadoop/io/erasurecode/coder/TestXORCoder.java  |  15 +-
 .../io/erasurecode/rawcoder/TestCoderUtil.java     |  13 +-
 .../rawcoder/TestDecodingValidator.java            |  91 ++--
 .../io/erasurecode/rawcoder/TestDummyRawCoder.java |  13 +-
 .../erasurecode/rawcoder/TestNativeRSRawCoder.java |  11 +-
 .../rawcoder/TestNativeXORRawCoder.java            |  11 +-
 .../erasurecode/rawcoder/TestRSLegacyRawCoder.java |   4 +-
 .../io/erasurecode/rawcoder/TestRSRawCoder.java    |   4 +-
 .../erasurecode/rawcoder/TestRSRawCoderBase.java   |   2 +-
 .../rawcoder/TestRSRawCoderInteroperable1.java     |   9 +-
 .../rawcoder/TestRSRawCoderInteroperable2.java     |   9 +-
 .../io/erasurecode/rawcoder/TestRawCoderBase.java  |  24 +-
 .../rawcoder/TestRawErasureCoderBenchmark.java     |   7 +-
 .../io/erasurecode/rawcoder/TestXORRawCoder.java   |   4 +-
 .../erasurecode/rawcoder/TestXORRawCoderBase.java  |   2 +-
 .../rawcoder/TestXORRawCoderInteroperable1.java    |   9 +-
 .../rawcoder/TestXORRawCoderInteroperable2.java    |   9 +-
 .../hadoop/io/file/tfile/TestCompression.java      |  10 +-
 .../org/apache/hadoop/io/file/tfile/TestTFile.java |  83 ++--
 .../hadoop/io/file/tfile/TestTFileByteArrays.java  |  94 ++--
 .../hadoop/io/file/tfile/TestTFileComparator2.java |   4 +-
 .../hadoop/io/file/tfile/TestTFileComparators.java |  20 +-
 .../tfile/TestTFileJClassComparatorByteArrays.java |   2 +
 .../file/tfile/TestTFileLzoCodecsByteArrays.java   |   2 +
 .../io/file/tfile/TestTFileLzoCodecsStreams.java   |   2 +
 .../file/tfile/TestTFileNoneCodecsByteArrays.java  |   3 +
 ...tTFileNoneCodecsJClassComparatorByteArrays.java |   3 +
 .../io/file/tfile/TestTFileNoneCodecsStreams.java  |   3 +
 .../apache/hadoop/io/file/tfile/TestTFileSeek.java |  10 +-
 .../io/file/tfile/TestTFileSeqFileComparison.java  |  10 +-
 .../hadoop/io/file/tfile/TestTFileSplit.java       |  34 +-
 .../hadoop/io/file/tfile/TestTFileStreams.java     |  16 +-
 .../io/file/tfile/TestTFileUnsortedByteArrays.java |  12 +-
 .../org/apache/hadoop/io/file/tfile/TestVLong.java |  35 +-
 .../apache/hadoop/io/nativeio/TestNativeIO.java    | 224 +++++----
 .../hadoop/io/nativeio/TestNativeIoInit.java       |  13 +-
 .../nativeio/TestSharedFileDescriptorFactory.java  |  39 +-
 .../hadoop/io/retry/TestConnectionRetryPolicy.java |  40 +-
 .../hadoop/io/retry/TestDefaultRetryPolicy.java    |  17 +-
 .../apache/hadoop/io/retry/TestFailoverProxy.java  |  10 +-
 .../org/apache/hadoop/io/retry/TestRetryProxy.java |   8 +-
 .../io/serializer/TestSerializationFactory.java    |  30 +-
 .../io/serializer/TestWritableSerialization.java   |   5 +-
 .../io/serializer/avro/TestAvroSerialization.java  |   6 +-
 .../org/apache/hadoop/test/HadoopTestBase.java     |  31 +-
 .../hadoop/util/TestCloseableReferenceCount.java   |  60 +--
 .../hadoop/util/TestIntrusiveCollection.java       |  31 +-
 .../apache/hadoop/util/TestJsonSerialization.java  |  14 +-
 .../apache/hadoop/util/TestLimitInputStream.java   |  27 +-
 .../apache/hadoop/util/TestUTF8ByteArrayUtils.java |  33 +-
 .../hadoop/util/functional/TestTaskPool.java       | 133 ++---
 .../federation/router/RouterClientProtocol.java    |   4 +
 .../router/async/RouterAsyncClientProtocol.java    |  27 +
 .../router/async/TestRouterAsyncRpc.java           |   9 +
 .../java/org/apache/hadoop/fs/TestSymlinkHdfs.java |  45 +-
 .../hadoop/fs/TestSymlinkHdfsFileContext.java      |  12 +-
 .../hadoop/fs/TestSymlinkHdfsFileSystem.java       |  37 +-
 .../apache/hadoop/hdfs/TestEncryptionZones.java    | 499 +++++++++----------
 .../hadoop/hdfs/TestEncryptionZonesWithKMS.java    |  44 +-
 .../hadoop/hdfs/TestHDFSFileSystemContract.java    |  10 +-
 .../apache/hadoop/hdfs/TestMultipleNNPortQOP.java  |  30 +-
 .../apache/hadoop/hdfs/TestReservedRawPaths.java   |  64 ++-
 .../TestViewDistributedFileSystemContract.java     |  14 +-
 .../hdfs/server/namenode/TestReencryption.java     |  73 ++-
 .../server/namenode/TestReencryptionWithKMS.java   |  12 +-
 .../apache/hadoop/hdfs/tools/TestAdminHelper.java  |  15 +-
 .../org/apache/hadoop/hdfs/tools/TestDFSAdmin.java | 283 ++++++-----
 .../hadoop/hdfs/tools/TestDFSAdminWithHA.java      | 273 +++++-----
 .../apache/hadoop/hdfs/tools/TestDFSHAAdmin.java   |  12 +-
 .../hdfs/tools/TestDFSHAAdminMiniCluster.java      |  31 +-
 .../apache/hadoop/hdfs/tools/TestDebugAdmin.java   |  30 +-
 .../hdfs/tools/TestDelegationTokenFetcher.java     |  72 +--
 .../org/apache/hadoop/hdfs/tools/TestECAdmin.java  | 164 +++---
 .../org/apache/hadoop/hdfs/tools/TestGetConf.java  |  78 +--
 .../hdfs/tools/TestStoragePolicyCommands.java      |  10 +-
 .../TestStoragePolicySatisfyAdminCommands.java     |  17 +-
 .../tools/TestViewFSStoragePolicyCommands.java     |   6 +-
 ...stViewFileSystemOverloadSchemeWithDFSAdmin.java |  23 +-
 ...ViewFileSystemOverloadSchemeWithFSCommands.java |  17 +-
 .../tools/TestWebHDFSStoragePolicyCommands.java    |   4 +-
 .../offlineEditsViewer/TestOfflineEditsViewer.java |  92 ++--
 .../offlineImageViewer/TestOfflineImageViewer.java | 110 +++--
 .../TestOfflineImageViewerForAcl.java              |  12 +-
 .../TestOfflineImageViewerForContentSummary.java   |  12 +-
 ...stOfflineImageViewerForErasureCodingPolicy.java |  12 +-
 .../TestOfflineImageViewerForStoragePolicy.java    |  12 +-
 .../TestOfflineImageViewerForXAttr.java            |  28 +-
 .../TestOfflineImageViewerWithStripedBlocks.java   |  50 +-
 .../offlineImageViewer/TestPBImageCorruption.java  |  11 +-
 .../hdfs/util/TestAtomicFileOutputStream.java      |  43 +-
 .../hadoop/hdfs/util/TestBestEffortLongFile.java   |   9 +-
 .../hdfs/util/TestCombinedHostsFileReader.java     |  29 +-
 .../hadoop/hdfs/util/TestCyclicIteration.java      |   6 +-
 .../java/org/apache/hadoop/hdfs/util/TestDiff.java |  20 +-
 .../hadoop/hdfs/util/TestLightWeightHashSet.java   |  18 +-
 .../hadoop/hdfs/util/TestLightWeightLinkedSet.java |  27 +-
 .../apache/hadoop/hdfs/util/TestMD5FileUtils.java  |  19 +-
 .../hadoop/hdfs/util/TestReferenceCountMap.java    |  33 +-
 .../hadoop/hdfs/util/TestStripedBlockUtil.java     |  21 +-
 .../org/apache/hadoop/hdfs/util/TestXMLUtils.java  |  14 +-
 .../org/apache/hadoop/hdfs/web/TestAuthFilter.java |   6 +-
 .../hdfs/web/TestFSMainOperationsWebHdfs.java      |  54 +-
 .../hadoop/hdfs/web/TestHttpsFileSystem.java       |  18 +-
 .../org/apache/hadoop/hdfs/web/TestJsonUtil.java   |  84 ++--
 .../apache/hadoop/hdfs/web/TestJsonUtilClient.java |   8 +-
 .../org/apache/hadoop/hdfs/web/TestWebHDFS.java    | 375 +++++++-------
 .../apache/hadoop/hdfs/web/TestWebHDFSForHA.java   |  24 +-
 .../hdfs/web/TestWebHdfsFileSystemContract.java    |  27 +-
 .../hadoop/hdfs/web/TestWebHdfsTimeouts.java       |  89 ++--
 .../apache/hadoop/hdfs/web/TestWebHdfsTokens.java  | 139 +++---
 .../org/apache/hadoop/hdfs/web/TestWebHdfsUrl.java |  77 +--
 .../web/TestWebHdfsWithAuthenticationFilter.java   |  15 +-
 .../hdfs/web/TestWebHdfsWithMultipleNameNodes.java |  23 +-
 .../TestWebHdfsWithRestCsrfPreventionFilter.java   | 106 ++--
 .../hadoop/hdfs/web/resources/TestParam.java       | 152 +++---
 hadoop-project/pom.xml                             |  11 +
 .../fileContext/TestOSSFileContextCreateMkdir.java |   4 +-
 .../TestOSSFileContextMainOperations.java          |  16 +-
 .../fileContext/TestOSSFileContextStatistics.java  |  15 +-
 .../oss/fileContext/TestOSSFileContextURI.java     |  10 +-
 .../hadoop/fs/s3a/ITestS3AFSMainOperations.java    |  13 +-
 .../hadoop/fs/s3a/ITestS3AFileSystemContract.java  |  41 +-
 .../org/apache/hadoop/fs/s3a/TestArnResource.java  |  14 +-
 .../org/apache/hadoop/fs/s3a/TestDataBlocks.java   |  63 ++-
 .../java/org/apache/hadoop/fs/s3a/TestInvoker.java |  81 +--
 .../hadoop/fs/s3a/TestStreamChangeTracker.java     |  42 +-
 .../fs/s3a/auth/TestMarshalledCredentials.java     |  18 +-
 .../fs/s3a/commit/staging/StagingTestBase.java     |  31 +-
 .../staging/TestDirectoryCommitterScale.java       |  26 +-
 .../hadoop/fs/s3a/commit/staging/TestPaths.java    |   4 +-
 .../s3a/commit/staging/TestStagingCommitter.java   | 353 +++++++------
 .../TestStagingDirectoryOutputCommitter.java       |   9 +-
 .../staging/TestStagingPartitionedFileListing.java |  20 +-
 .../staging/TestStagingPartitionedJobCommit.java   |  11 +-
 .../staging/TestStagingPartitionedTaskCommit.java  |  14 +-
 .../ITestS3AFileContextCreateMkdir.java            |   4 +-
 .../ITestS3AFileContextCreateMkdirCreatePerf.java  |   6 +-
 .../ITestS3AFileContextMainOperations.java         |  16 +-
 .../fileContext/ITestS3AFileContextStatistics.java |  16 +-
 .../fs/s3a/fileContext/ITestS3AFileContextURI.java |  10 +-
 .../s3a/fileContext/ITestS3AFileContextUtil.java   |   4 +-
 .../hadoop/fs/s3a/impl/TestCreateFileBuilder.java  |  12 +-
 .../hadoop/fs/s3a/impl/TestHeaderProcessing.java   |  30 +-
 .../hadoop/fs/s3a/impl/TestOpenFileSupport.java    |  14 +-
 .../s3a/impl/TestS3AMultipartUploaderSupport.java  |  32 +-
 .../hadoop/fs/s3a/impl/TestSDKStreamDrainer.java   |  12 +-
 .../mapreduce/filecache/TestS3AResourceScope.java  |  11 +-
 .../live/TestAdlFileContextCreateMkdirLive.java    |   9 +-
 .../live/TestAdlFileContextMainOperationsLive.java |  17 +-
 .../fs/adl/live/TestAdlFileSystemContractLive.java |  13 +-
 .../fs/azurebfs/services/AbfsBlobClient.java       |   2 +-
 ...ITestNativeAzureFileSystemContractEmulator.java |  16 +-
 .../ITestNativeAzureFileSystemContractLive.java    |  31 +-
 ...tNativeAzureFileSystemContractPageBlobLive.java |  31 +-
 .../TestNativeAzureFileSystemContractMocked.java   |  18 +-
 .../TestNativeAzureFileSystemOperationsMocked.java |   2 +
 .../ITestAzureBlobFileSystemListStatus.java        |  44 +-
 .../ITestAzureBlobFileSystemMainOperation.java     |   7 +-
 .../contract/ITestAzureBlobFileSystemBasics.java   |  19 +-
 .../fs/azurebfs/services/ITestAbfsClient.java      |  42 +-
 .../records/TestFederationProtocolRecords.java     |   5 +-
 .../hadoop-yarn-ui/src/main/webapp/package.json    |   3 +-
 .../hadoop-yarn-ui/src/main/webapp/yarn.lock       |  53 +-
 256 files changed, 5655 insertions(+), 4965 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to