This is an automated email from the ASF dual-hosted git repository.
stevel pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hadoop-release-support.git
The following commit(s) were added to refs/heads/main by this push:
new ad6df34 HADOOP-19770 Release Hadoop 3.4.3
ad6df34 is described below
commit ad6df343a2099a520748ede37877855e6b20ca21
Author: Steve Loughran <[email protected]>
AuthorDate: Mon Feb 2 17:30:32 2026 +0000
HADOOP-19770 Release Hadoop 3.4.3
RC0 failure
Adding s3guard and findclass commands to fail fast if the hadoop-azure
and hadoop-aws artifacts are missing
---
build.xml | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/build.xml b/build.xml
index 0583618..e48b43f 100644
--- a/build.xml
+++ b/build.xml
@@ -216,6 +216,8 @@
<setpath name="arm.binary.sha512" location="${arm.binary}.sha512" />
<setpath name="arm.binary.asc" location="${arm.binary}.asc" />
+ <property name = "findclass" value ="org.apache.hadoop.util.FindClass" />
+
<!-- for spark builds -->
<set name="spark.version" value="4.0.0-SNAPSHOT"/>
<!-- version of the AWS SDK to copy around -->
@@ -1250,6 +1252,19 @@ Message is in file ${message.out}
<arg value="file://${target}" />
</hadoop>
+ <echo>s3guard help</echo>
+ <hadoop>
+ <arg value="s3guard" />
+ <arg value="help" />
+ </hadoop>
+
+ <echo>findclass azure</echo>
+ <hadoop>
+ <arg value="${findclass}" />
+ <arg value="load" />
+ <arg value="org.apache.hadoop.fs.azurebfs.AzureBlobFileSystem" />
+ </hadoop>
+
<echo>checknative</echo>
<echo>
@@ -1351,6 +1366,19 @@ Message is in file ${message.out}
<arg value="file://${target}" />
</ahadoop>
+ <echo>s3guard help</echo>
+ <ahadoop>
+ <arg value="s3guard" />
+ <arg value="help" />
+ </ahadoop>
+
+ <echo>findclass azure</echo>
+ <ahadoop>
+ <arg value="${findclass}" />
+ <arg value="load" />
+ <arg value="org.apache.hadoop.fs.azurebfs.AzureBlobFileSystem" />
+ </ahadoop>
+
<echo>checknative</echo>
<ahadoopq failonerror="${check.native.binaries}">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]