voonhous commented on code in PR #19217:
URL: https://github.com/apache/hudi/pull/19217#discussion_r3709832649
##########
.github/workflows/hudi_trino_e2e.yml:
##########
@@ -0,0 +1,157 @@
+name: Hudi Trino E2E
+
+on:
+ push:
+ branches:
+ - master
+ - 'release-*'
+ # TEMPORARY: validate the workflow on the dev branch; drop this line
+ # (and the commit that added it) before merging upstream.
+ - trino-e2e-testcontainers
+ paths:
+ - 'hudi-trino/**'
+ - 'docker/trino/**'
+ - 'docker/compose/docker-compose_hadoop340_hive2310_spark402*'
+ - 'docker/demo/sparksql-stock-ticks-trino.commands'
+ - 'hudi-integ-test/src/test/java/org/apache/hudi/integ2/**'
+ - '.github/workflows/hudi_trino_e2e.yml'
+ pull_request:
+ branches:
+ - master
+ - 'release-*'
+ paths:
+ - 'hudi-trino/**'
+ - 'docker/trino/**'
+ - 'docker/compose/docker-compose_hadoop340_hive2310_spark402*'
+ - 'docker/demo/sparksql-stock-ticks-trino.commands'
+ - 'hudi-integ-test/src/test/java/org/apache/hudi/integ2/**'
+ - '.github/workflows/hudi_trino_e2e.yml'
+ workflow_dispatch:
+
+concurrency:
+ group: hudi-trino-e2e-${{ github.ref }}
+ cancel-in-progress: ${{ !contains(github.ref, 'master') &&
!contains(github.ref, 'release-') }}
+
+env:
+ MVN_ARGS: -e -ntp -B -V -Dgpg.skip -Djacoco.skip -Pwarn-log
Review Comment:
Okay -- I was reading a stale checkout whose `bot.yml` still had the
`maven.wagon.*` names. Swapped in all five `aether.connector.http.*` flags
verbatim (`retryHandler.count/interval/intervalMax/serviceUnavailable` +
`connectionMaxTtl`) and rewrote the comment to say why the wagon names are
inert.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]