Skip to content

Commit 22a317e

Browse files
committed
release 2024-11-05-13.26
Add class probes for * HADOOP-18679. BulkDelete * HADOOP-19131. WrappedIO/WrappedStatistics * HADOOP-19205. Late creation of async client * HADOOP-19221, UploadContentProviders and multipart upload resilience
1 parent 7914933 commit 22a317e

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

BUILDING.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ mvn clean install -Pextra && mvn install -Psdk2
4242
To publish the release use the gui or the github command line through the `fish` shell.
4343

4444
```bash
45+
mvn clean install -Pextra && mvn install -Psdk2
4546
set -gx now (date '+%Y-%m-%d-%H.%M'); echo [$now]
4647
git add .; git status
4748
git commit -S --allow-empty -m "release $now"; git push

src/main/java/org/apache/hadoop/fs/store/diag/S3ADiagnosticsInfo.java

+14
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,20 @@ public class S3ADiagnosticsInfo extends StoreDiagnosticsInfo {
636636
"org.apache.hadoop.fs.impl.prefetch.PrefetchingStatistics",
637637
"org.apache.hadoop.fs.s3a.prefetch.S3ACachingBlockManager",
638638

639+
// s3a store and bulk delete
640+
"org.apache.hadoop.fs.s3a.S3AStore",
641+
"org.apache.hadoop.fs.BulkDelete",
642+
643+
// HADOOP-19131. Assist reflection IO with WrappedOperations class (#6686)
644+
"org.apache.hadoop.io.wrappedio.WrappedIO",
645+
"org.apache.hadoop.io.wrappedio.WrappedStatistics",
646+
647+
// on demand creation of transfer manager for better
648+
// performance
649+
"org.apache.hadoop.util.functional.LazyAutoCloseableReference",
650+
651+
// recovery from multipart uploads
652+
"org.apache.hadoop.fs.s3a.impl.UploadContentProviders",
639653

640654
// extra stuff from extension modules
641655
"org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding",

0 commit comments

Comments
 (0)