[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4828c1869f815d2b9cef2e8617b47f5fad01edeb / Yuepeng Pan [FLINK-39894][tools/releasing] Change version in generated REST API specifications yml files when creating a new release branch (#28365) Report URL: https://github.com/apache/flink/actions/runs/27250129027 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: afb5ef94dd9ffc619ff90dd663501224777592ec / Martijn Visser <[email protected]> [FLINK-39879][tests] Stop CheckpointAcknowledgeFailureITCase hanging on slow CI The test waited on an unbounded future that never completes when the tiny pekko.ask.timeout (load-bearing for the AskTimeoutException assertion) fails the job before the keyed state is updated, hanging the surefire fork until the CI watchdog kills it. Propagate a terminal job failure into the wait so the test fails fast with the real cause, and add @Timeout(5, MINUTES) as the hard anti-hang guard. The product-side follow-up is tracked as FLINK-39738. Generated-by: Claude Opus 4.8 (1M context) Report URL: https://github.com/apache/flink/actions/runs/27181016009 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: d720d58c3bf2b871eda86851f23b8c7cc1ee55ab / Yuepeng Pan [hotfix] Fix some typos for connector-base, protobuf, runtime, table-planner and tests modules. (#28328) Report URL: https://github.com/apache/flink/actions/runs/27113488782 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 832fb189bc209cde705c4b6a7a032992bf536c2d / Sergey Nuyanzin [FLINK-39872][e2e] Add `wrapInExecutionException` to `common.sh` Report URL: https://github.com/apache/flink/actions/runs/27080972035 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 832fb189bc209cde705c4b6a7a032992bf536c2d / Sergey Nuyanzin [FLINK-39872][e2e] Add `wrapInExecutionException` to `common.sh` Report URL: https://github.com/apache/flink/actions/runs/27050719071 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: c3ec5690874a55110ef3ecfb80a335c415ee1b57 / Martijn Visser <[email protected]> [FLINK-39845][tests] Fix SavepointITCase.testStopWithSavepointFailsOverToSavepoint under AdaptiveScheduler The JUnit5 migration (FLINK-39124, #27667) replaced a cause-chain search (ExceptionUtils.assertThrowable -> findThrowable) with a direct-cause assertion (assertThatThrownBy(...).hasCauseInstanceOf(StopWithSavepointStoppingException.class)). Under the AdaptiveScheduler, StopWithSavepoint.onLeave() wraps the expected StopWithSavepointStoppingException inside a FlinkException ("Stop with savepoint operation could not be completed."), so it is no longer the direct cause. This regressed the test_cron_adaptive_scheduler nightly leg on master (red every build since 2026-03-21); the default scheduler still exposes it as the direct cause and passed. Restore the chain search via FlinkAssertions.anyCauseMatches so the test passes under both the default and adaptive schedulers, matching the pre-migration behavior still present on release-2.1. Generated-by: Claude Code (Claude Opus 4.8) Report URL: https://github.com/apache/flink/actions/runs/26992646293 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: a3072eeb30b755654e7e323932e681f9d1fe0935 / Yuepeng Pan [FLINK-39836][runtime-web] Add missing License Header to .eslintrc.js and .stylelintrc.js in web-dashboard (#28307) Report URL: https://github.com/apache/flink/actions/runs/26927576546 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed.
Run started by GitHub user github-actions[bot] (triggered by
github-actions[bot]).
Head commit for run:
a5a7925415bdf6f257b100cc27e9aeb19d096d04 / Ramin Gharib
[FLINK-39651][table] REGEXP plan-time validation and hot-path log cleanup
(#28292)
* [FLINK-39651][table] Drop hot-path error log in REGEXP
SqlFunctionUtils.regExp caught any exception from pattern compilation with
LOG.error, producing one stack trace per record processed when an invalid regex
was supplied (for example a column-referenced or function-built pattern that
fails to compile).
The pattern is already looked up through REGEXP_PATTERN_CACHE, so the only
hot-path cost left was the logging. PatternSyntaxException is now caught
silently and returns false, preserving the prior runtime contract without
flooding the log. Other exception types are no longer swallowed.
Adds runtime IT cases for REGEXP in RegexpFunctionsITCase covering literal
valid/no-match, null input, column-ref invalid, and function-call regex paths.
* [FLINK-39651][table] Route REGEXP through BridgingSqlFunction
Migrates REGEXP to the modern BuiltInFunctionDefinition stack while keeping the
existing StringCallGen codegen path.
The function definition is renamed to name("REGEXP") and marked
runtimeProvided() so it is exposed to both SQL and Table API conversion through
CoreModule. A new arm in ExprCodeGenerator's BridgingSqlFunction block routes
the call to StringCallGen.generateRegExp. The legacy
FlinkSqlOperatorTable.REGEXP entry, the DirectConvertRule mapping, and the case
REGEXP arm in StringCallGen are removed.
Behavior is preserved: same arg types, same codegen call, same runtime helper.
Only the registration path changes. The Table API and Python string
representation now renders as REGEXP(...) to match the function name.
* [FLINK-39651][table] Validate REGEXP literal patterns at plan time
Adds RegexpInputTypeStrategy which validates the two STRING arguments and
delegates the literal-pattern check to the shared
StrategyUtils.validateLiteralPattern helper introduced for the regex function
family. Literal regex arguments are eagerly compiled during type inference and
surface failures as ValidationException; non-literal or null-literal arguments
are deferred to runtime.
REGEXP is wired through the new strategy via SpecificInputTypeStrategies.REGEXP.
Tests: new RegexpInputTypeStrategyTest covers the four branches (non-literal
defers, valid literal compiles, null literal is deferred, invalid literal
fails). RegexpFunctionsITCase gains a plan-time validation TestSetSpec covering
both Table API and SQL paths.
Report URL: https://github.com/apache/flink/actions/runs/26861051360
With regards,
GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 50ff839d0d681160797468bbcf2bf0c917dd882a / Sergey Nuyanzin [FLINK-39812][table] Migrate `FlinkTypeFactory` to java Report URL: https://github.com/apache/flink/actions/runs/26795624755 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by snuyanzin). Head commit for run: 810f0810478089616de4d4085f202f61f247e843 / Sergey Nuyanzin [FLINK-39806][build] Add jdk25 required flags Report URL: https://github.com/apache/flink/actions/runs/26732814464 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 810f0810478089616de4d4085f202f61f247e843 / Sergey Nuyanzin [FLINK-39806][build] Add jdk25 required flags Report URL: https://github.com/apache/flink/actions/runs/26732814464 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 810f0810478089616de4d4085f202f61f247e843 / Sergey Nuyanzin [FLINK-39806][build] Add jdk25 required flags Report URL: https://github.com/apache/flink/actions/runs/26701633403 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: fa2678926fa7e626e6c7e44ec0da6b749dc602cd / Sergey Nuyanzin [FLINK-36602][tests] Add pre Calcite 1.38.0 tests for CALCITE-7562 issue Report URL: https://github.com/apache/flink/actions/runs/26672635059 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 692507671e8a65e6c803a053c0b53c725fe9b91d / SameerDevgon <[email protected]> [FLINK-39425][metrics] `OpenTelemetryEventReporter` ignores `service.name` and `service.version config` Report URL: https://github.com/apache/flink/actions/runs/26615287856 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 7402fd1ed34c9b560b4b18b8a3b5a3b7b87a7012 / Hao Li <[email protected]> [FLINK-39726][table] Support `USING CONNECTION` clause in `CREATE TABLE` Report URL: https://github.com/apache/flink/actions/runs/26551918811 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: b194666f597e1dcb6cbb515d6d636bea29c9ffb9 / Sergey Nuyanzin [FLINK-39751][tests] Add `FailsOnJava25` This closes #28249. Report URL: https://github.com/apache/flink/actions/runs/26488072578 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 17216cee20f731a258d96fcee3719b7f737b0d4f / jhanishant260 <[email protected]> [hotfix][docs] Fix duplicate word typos in documentation Report URL: https://github.com/apache/flink/actions/runs/26429709255 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 6f422510a8f3150ac67d40d30cca67065a8c54e5 / Roman Khachatryan [hotfix][table/runtime] Fix RowDataKeySerializerSnapshot.resolveSchemaCompatibility() Report URL: https://github.com/apache/flink/actions/runs/26380886708 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4f8b4a88b1eb492bc5a9b22cb1616f9fc4af165c / Sergey Nuyanzin [FLINK-39695][table] Outer join on nested field fails with conversion to relational algebra failed to preserve datatypes Report URL: https://github.com/apache/flink/actions/runs/26350255469 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4f8b4a88b1eb492bc5a9b22cb1616f9fc4af165c / Sergey Nuyanzin [FLINK-39695][table] Outer join on nested field fails with conversion to relational algebra failed to preserve datatypes Report URL: https://github.com/apache/flink/actions/runs/26321685932 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 8ffb4994f725836cf14b0160ef21227b69762261 / Samrat [hotfix][doc] Add flink-s3-fs-native in AGENTS.md Report URL: https://github.com/apache/flink/actions/runs/26265860529 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4644cabd8bfed1104a6a1dbea854fe45a90877cd / Ramin Gharib [FLINK-39538][table] Support upsert output mode for FROM_CHANGELOG (#28164) FROM_CHANGELOG now emits an upsert changelog (INSERT, UPDATE_AFTER, full DELETE) when the input table is partitioned (set semantics via PARTITION BY) and the active op_mapping maps to UPDATE_AFTER without UPDATE_BEFORE. The partition key acts as the upsert key. In all other cases the output remains a retract changelog. Submitting an op_mapping with UPDATE_AFTER but no UPDATE_BEFORE without PARTITION BY is rejected at validation time, because upsert mode requires a key. To enable the strategy to inspect the resolved op_mapping and the input table's partition keys, ChangelogFunction.ChangelogContext is extended with two default methods: getArgumentValue(int, Class) and getTableSemantics(int). Defaults return Optional.empty() to preserve source compatibility for existing implementations. The planner-side wrapper in FlinkChangelogModeInferenceProgram delegates the two new methods to the underlying CallContext. Upsert mode uses full deletes (ChangelogMode.upsert(false)) because the runtime forwards each input delete row with all fields populated; only the RowKind is rewritten. This matches the runtime's behavior and avoids forcing downstream operators to reconstruct rows from state. The upsert key derivation in FlinkRelMdUniqueKeys.getPtfUniqueKeys already returns the partition columns when a PTF emits upsert, so no metadata changes are needed. Report URL: https://github.com/apache/flink/actions/runs/26202801035 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 9a72fde482412d1cf41c215a229c5a6cb3e1cc69 / Ramin Gharib [FLINK-39662][table] Support `ALTER MATERIALIZED TABLE ... SET (...)` conversion Report URL: https://github.com/apache/flink/actions/runs/26138517376 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 1e6a73616eb4e224a149e684c832f20bcba93148 / Aleksandr Iushmanov [FLINK-22543][runtime-web] Fix Exception History table layout broken by long exception strings Co-Authored-By: Claude Opus 4.6 (1M context) Report URL: https://github.com/apache/flink/actions/runs/26073467202 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: a49eca810678d5389f0522cf13e51ce4713c87a3 / Sergey Nuyanzin [FLINK-39647] Downgrade presto-hive to 0.294 Report URL: https://github.com/apache/flink/actions/runs/26011149833 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 80be7e48b82ec0711e9c3988d9ebea92374c2a4e / Rui Fan <[email protected]> [hotfix][state/tests] Dispose keyed state backend in testMapStateWithNullValue The test creates a CheckpointableKeyedStateBackend via createKeyedBackend but never closes/disposes it, leaking native resources held by the backend. For most state backends in the existing suite this is harmless, but cloud-native backends that own long-lived background tasks (and poll remote state) keep file handles open under the JUnit @TempDir and fail class teardown. Wrap the test body in try/finally with IOUtils.closeQuietly(keyedBackend) and keyedBackend.dispose(), matching the cleanup pattern used by every other test in this file. Report URL: https://github.com/apache/flink/actions/runs/25979692838 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: d58d0a4092bec126446af5924a5e25ffd5434c57 / Sergey Nuyanzin [hotfix][build] Use sparse-checkout paths for Flink template in GHA Report URL: https://github.com/apache/flink/actions/runs/25951037555 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 1990310135edfec7021f77e64dbb976100458909 / Mingliang Liu [FLINK-39672][docs] Document Java records as supported POJO types This closes #28149. Co-authored-by: Claude Opus 4.7 (1M context) Report URL: https://github.com/apache/flink/actions/runs/25897801260 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 6c60f4fee2a8da6990738dc0c5b479f7f2accba8 / Sergey Nuyanzin [hotfix][build] Concurrent runs for PR should be cancelled Report URL: https://github.com/apache/flink/actions/runs/25839034118 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: aa079c5bab96ef96e92d5b70afa6b4e052ef0e78 / Ramin Gharib [FLINK-39649][table] `REGEXP_EXTRACT` plan-time validation and hot-path log cleanup Report URL: https://github.com/apache/flink/actions/runs/25775526196 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 07958d75456f4cb5ca567a96c6410fac8f99eb67 / Au-Miner <[email protected]> [FLINK-39396][table] Simplify early return condition in `SqlLikeChainChecker` Report URL: https://github.com/apache/flink/actions/runs/25710585012 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 8b43367edfbbf1e7b8ef00fb719d0079e78bb557 / Mate Czagany <[email protected]> [FLINK-39527][JUnit5 Migration][e2e] Migrate flink-end-to-end-tests to JUnit 5 (#28040) Co-authored-by: Yuepeng Pan Co-authored-by: davidradl Report URL: https://github.com/apache/flink/actions/runs/25647974419 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 679264659d993f9192bcf557cc1f1624fa12ff8c / Yuepeng Pan [FLINK-39641][runtime-web] Fix unstable position of the Rescales Tab (#28131) Report URL: https://github.com/apache/flink/actions/runs/25618199776 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 658e30a5484393e99fafded250dd3cd0eb900a85 / Ramin Gharib [FLINK-39537][table] Apply conditional SET_SEMANTIC_TABLE trait to FROM_CHANGELOG This closes #28025. Report URL: https://github.com/apache/flink/actions/runs/25589818557 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 0d0a8977d561b628bcf1dc7aa84ca9b4c8e58a61 / Jim Hughes [FLINK-39558][table] `LogicalUnnestRule`: use Calcite `Uncollect` rowType instead of `LogicalType` round-trip Report URL: https://github.com/apache/flink/actions/runs/25534110622 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 63798c68ca1d6d7b03a6c88070a3d494871817a8 / Jiaan Geng [hotfix][kubernetes] Minor polish codes in flink-kubernetes/src/main/java/org/apache/flink/kubernetes/cli/KubernetesSessionCli.java to reduce premature and unnecessary variable declarations (#26512) Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/25473612608 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 185975918a1897a3ddffa5a56d297cc004a511d0 / Ramin Gharib [FLINK-39606][table] Add includeFreshness/includeRefreshMode flags to buildShowCreateMaterializedTableRow Report URL: https://github.com/apache/flink/actions/runs/25414061765 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 530a14bb2f4d4c35d9c47d768b5e46c6ed10073e / Sergey Nuyanzin [hotfix][ci] Ignore GHA build on non-code changes Report URL: https://github.com/apache/flink/actions/runs/25355429521 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user snuyanzin (triggered by snuyanzin). Head commit for run: ef5249330c12c47a15e3894fe684b1ecc5082e65 / Sergey Nuyanzin [FLINK-39595][ci] Use GHA cache per branch Report URL: https://github.com/apache/flink/actions/runs/25311134049 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user snuyanzin (triggered by snuyanzin). Head commit for run: ef5249330c12c47a15e3894fe684b1ecc5082e65 / Sergey Nuyanzin [FLINK-39595][ci] Use GHA cache per branch Report URL: https://github.com/apache/flink/actions/runs/25311134049 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user snuyanzin (triggered by snuyanzin). Head commit for run: ef5249330c12c47a15e3894fe684b1ecc5082e65 / Sergey Nuyanzin [FLINK-39595][ci] Use GHA cache per branch Report URL: https://github.com/apache/flink/actions/runs/25311134049 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 3d6f1444de490eccdeb6cadcf8dc6ee262d3c4d3 / Sergey Nuyanzin [FLINK-39591][ci] Bump actions@checkout, actions@download, actions@upload-artifact, actions@setup-python Report URL: https://github.com/apache/flink/actions/runs/25298827597 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: af8fc4c0d4f89fcf14d1c5225523a4c348073859 / Robin Moffatt [hotfix] Fix grammatical errors in Materialized Table and related code Fix "occur exception" pattern (subject-verb disagreement) across error messages, log messages, comments, and Javadoc. Also fix "Begin to refreshing" (incorrect verb form) and "doesn't exists" (incorrect conjugation). Report URL: https://github.com/apache/flink/actions/runs/25268267316 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 75d55e3cf0736977e5b67ff693da8c77de6c0d7e / Samrat [FLINK-39581][docs] Document the available config params in a single place for s3 native connector Report URL: https://github.com/apache/flink/actions/runs/25242114309 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 21d40d42b8b09c217971439486c688d85516440d / Yuepeng Pan [FLINK-38902][docs] Add user instructions and usage documentation for FLIP-487 (#28003) Co-authored-by: spuru9 Co-authored-by: XComp Co-authored-by: davidradl Co-authored-by: Sergey Nuyanzin Co-authored-by: och5351 Report URL: https://github.com/apache/flink/actions/runs/25200143788 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: f325b4a8d5914d218b394c8a7e2f7e4f0c27a358 / Gustavo de Morais [FLINK-39575][table-planner] Fix argument order for pass-through table arguments This closes #28063. Report URL: https://github.com/apache/flink/actions/runs/25145023124 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: d420c284955d0c69e64a908d12b024e1ac4e8398 / Mate Czagany <[email protected]> [FLINK-39528][python] Update `apache-arrow` to 19.0.0 Report URL: https://github.com/apache/flink/actions/runs/25088675547 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: f55a280dc8ff44ad81ef56a94b9faac528f25fe0 / Samrat [FLINK-39542] Upgrade avro to 1.11.5 Report URL: https://github.com/apache/flink/actions/runs/25031454429 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 35f8d7a57d12153b41b2c4eda8c65222f03518a1 / Sergey Nuyanzin [hotfix][tests] Replace deprecated `Thread#stop` in `SuperstepKickoffLatchTest` Report URL: https://github.com/apache/flink/actions/runs/24974409391 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 35f8d7a57d12153b41b2c4eda8c65222f03518a1 / Sergey Nuyanzin [hotfix][tests] Replace deprecated `Thread#stop` in `SuperstepKickoffLatchTest` Report URL: https://github.com/apache/flink/actions/runs/24946775897 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: b98f75e4886a3186ec803685aa77b36f90234f4a / Sergey Nuyanzin [FLINK-31070][table] Bump jline to 3.29.0 Report URL: https://github.com/apache/flink/actions/runs/24920962509 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: bf03f06b5138bf0ce1fedfd6518119e5cedf683d / Sergey Nuyanzin [hotfix][FLINK-39261][table] Regenerate `FROM_CHANGELOG` restore test to fix build Report URL: https://github.com/apache/flink/actions/runs/24869889166 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 5106d15e83d4497824c33b71fd0021846bd1ec09 / Fabian Hueske [FLINK-39437][table] Support interruptible timers in PTFs (#27962) Override `useInterruptibleTimers()` in `AbstractProcessTableOperator` to return `true`, activating the `MailboxWatermarkProcessor` for PTF operators. This allows timer firing to be interrupted between mailbox iterations, improving throughput by not blocking mailbox processing during large timer batches. Also removes `currentWatermark` from `ProcessTableRunner` and redirect reads to `AbstractStreamOperatorV2.combinedWatermark`. Add a test (`ProcessSetTableOperatorInterruptibleTimersTest`) to assert correct behavior of PTF framework when timer processing is interrupted. Report URL: https://github.com/apache/flink/actions/runs/24814244254 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 937325653695881e8737816ba40b46fa0819dd21 / Fabian Hueske [FLINK-39436][table] Allow late data in PTFs (#27935) Previously, late events (rowtime <= watermark) were silently dropped before reaching PTF eval(), and timer registrations for times <= watermark were also silently dropped. This change removes both restrictions: - ProcessTableRunner: remove the early-return guard in processEval() so that late events are passed to the PTF's eval() method. - WritableInternalTimeContext: remove the watermark check in registerOnTimeInternal() so that timers can be registered for past times. Such timers fire immediately at the next watermark advance, including when registered from within onTimer(). The previous guard also had an unintended side effect: any call to replaceNamedTimer() with a past time would delete the existing timer entry but then silently drop the new registration, leaving the named timer in a state where it appeared un-registered but the old timer was gone. - AbstractProcessTableOperator: remove the fired named timer's state entry before invoking onTimer() to prevent stale entries from accumulating in the named timers map state. Tests are updated to reflect the new semantics: - PROCESS_LATE_EVENTS: demonstrates that late events enter eval(), can register timers (including for past times), and that such timers fire immediately at the next watermark advance. - PROCESS_ROW_LATE_EVENTS (new): verifies the same for row-semantics PTFs. - PROCESS_OPTIONAL_ON_TIME / PROCESS_NAMED_TIMERS: updated to reflect that timer registrations for past times are no longer dropped. Previously, once the watermark passed the registered time, the timer was silently discarded; now it fires immediately. Report URL: https://github.com/apache/flink/actions/runs/24757816441 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 7373dc9e2a37e382f8479c353cf51d367007b9a8 / bowenli86 [FLINK-39226][python] Fix embedded PyIterator class cast after recovery (#27849) This pull request fixes FLINK-39226 by avoiding direct casts to pemja.core.object.PyIterator in embedded Python operators. After recovery, the returned iterator object can be loaded by a different user-code classloader, so hard casts can fail with ClassCastException. The change introduces a reflective wrapper that can consume iterator-like results without depending on the local PemJa class identity. Report URL: https://github.com/apache/flink/actions/runs/24701659202 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 548ea5b6c64b6bf66912630e681cb53b0f7590cc / Sergey Nuyanzin [FLINK-39483][build] Bump dependency check maven plugin to 12.2.1 Report URL: https://github.com/apache/flink/actions/runs/24646315854 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 548ea5b6c64b6bf66912630e681cb53b0f7590cc / Sergey Nuyanzin [FLINK-39483][build] Bump dependency check maven plugin to 12.2.1 Report URL: https://github.com/apache/flink/actions/runs/24619539086 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 3afaa8cf645e39559b5e01d8ef2ae143846b161a / Timo Walther [FLINK-39256][table] Support ORDER BY clause in Process Table Functions This closes #27929. Report URL: https://github.com/apache/flink/actions/runs/24595372267 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 2379582867b37e499c8b6680d8efed42c60f665b / Feat Zhang [FLINK-39401][table-runtime] Extend raw format to support line-delimiter option (#27897) Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/24545376577 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 27328b89f8ad7fa4ef5dac6de3085aac97489679 / David Anderson [FLINK-39443][release] Build docs for release-2.3 branch Report URL: https://github.com/apache/flink/actions/runs/24489580866 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: d8010df8795e1a8e4895d66b7b4861a85c8e0e24 / Aleksandr Iushmanov [FLINK-39394][web] Fix job overview metrics broken when a vertex is finished Report URL: https://github.com/apache/flink/actions/runs/24434062377 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 5c2a4ccb91ea8f6c8925c3f8cffa9078a966c5e8 / Yuepeng Pan [hotfix][test] Move some auto-closable variables into try-block to manage the closing of objects for MassiveStringSorting.java and MassiveStringValueSorting.java Co-authored-by: spuru9 Report URL: https://github.com/apache/flink/actions/runs/24378557764 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 427a2c93fb785cca7f540d48421551d49292b671 / Samrat002 [FLINK-39114][filesystem] Support configurable timeout in native-s3-fs Report URL: https://github.com/apache/flink/actions/runs/24323569304 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 451372aba24453aaa96fabbe711f14d1f08b2346 / och5351 [hotfix][runtime-web] Handle hyphen in the rescales/configuration tab when the schedulerExecutionMode variable value is null Co-authored-by: Matthias Pohl Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/24297272166 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 6e3768d5ce2353404a7ab1ce454f1c72078a1e31 / Au-Miner <[email protected]> [FLINK-39405][docs] Fix document escape display errors on sql built-in function page (#27900) Report URL: https://github.com/apache/flink/actions/runs/24273082940 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 106acbced18b0da5fa17181ef6a72738e5ab211c / Liu Jiangang [FLINK-39387][Test] Fix flaky scheduler benchmark tests caused by thread assertion failure in async TDD creation Report URL: https://github.com/apache/flink/actions/runs/24224050506 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 62cb6c5fc379e40fe4ca3d4f5ed6ab2beb367f92 / Rui Fan <[email protected]> [FLINK-39408][tests] Fix TestNameProvider broken after JUnit 5 migration TestNameProvider is a JUnit 4 TestRule that stores the test name in a ThreadLocal. After FLINK-39124 migrated modules to JUnit 5, the @Rule is never triggered, so PseudoRandomValueSelector.randomize() always gets null from getCurrentTestName(), causing all boolean config randomizations to select the same fixed value. Fix: add TestNameProviderExtension (JUnit 5 BeforeEachCallback / AfterEachCallback) that delegates to TestNameProvider's static methods. TestNameProvider itself does not depend on JUnit 5 APIs, avoiding ClassNotFoundException in non-test runtime environments (e.g. PyFlink). Register TestNameProviderExtension globally via META-INF/services in all modules. Report URL: https://github.com/apache/flink/actions/runs/24169974697 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: e39b252d383b47c2119551df89d90b8212eb6361 / Rui Fan <[email protected]> [FLINK-38543][checkpoint] Change overall UC restore process for checkpoint during recovery Report URL: https://github.com/apache/flink/actions/runs/24115241883 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 01070e6f6054c56edc9a79f30a1c634021a62827 / Vincent-Woo <[email protected]> [FLINK-39275][docs] Fix some issues in the "Performance Tuning" document (#27893) - Add anchor links to performance tuning sections - Update configuration and add MultiJoin optimization details Co-authored-by: klion26 Co-authored-by: Weijie Guo Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/24062044098 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 01070e6f6054c56edc9a79f30a1c634021a62827 / Vincent-Woo <[email protected]> [FLINK-39275][docs] Fix some issues in the "Performance Tuning" document (#27893) - Add anchor links to performance tuning sections - Update configuration and add MultiJoin optimization details Co-authored-by: klion26 Co-authored-by: Weijie Guo Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/24016859898 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 01070e6f6054c56edc9a79f30a1c634021a62827 / Vincent-Woo <[email protected]> [FLINK-39275][docs] Fix some issues in the "Performance Tuning" document (#27893) - Add anchor links to performance tuning sections - Update configuration and add MultiJoin optimization details Co-authored-by: klion26 Co-authored-by: Weijie Guo Co-authored-by: Yuepeng Pan Report URL: https://github.com/apache/flink/actions/runs/23992945304 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 9b3037ba3993080c23e56c86f72194adff0b6037 / Yuepeng Pan [FLINK-39359][docs] Introduce integration test cases to ensure that the generated REST-API related documentation stays consistent with the code. (#27884) Co-authored-by: 1996fanrui <[email protected]> Co-authored-by: Sergey Nuyanzin Report URL: https://github.com/apache/flink/actions/runs/23969837903 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 463330c76606d4dc6b4531a8fb3cff971050b8e1 / Sergey Nuyanzin [FLINK-39395][build] Add spotless `upToDateChecking` Report URL: https://github.com/apache/flink/actions/runs/23931736611 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 77266f0faf022d2b0f7ae6c56f709bcfee3d0260 / Yuepeng Pan [hotfix][kubernetes] Fix the option typo in KubernetesConfigOptions (#27872) Report URL: https://github.com/apache/flink/actions/runs/23881553342 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 923a359320702130264dcfeb43c139161c247fba / Yi Zhang [hotfix][runtime] Fix DispatcherCleanupITCase.testCleanupAfterLeadershipChange Report URL: https://github.com/apache/flink/actions/runs/23829750300 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: c0265db9903d4a4a23072f94893da94ed4c3ae85 / Samrat002 [FLINK-39331] Add @Experimental annotation to public S3 classes Make NativeS3Recoverable and NativeS3RecoverableSerializer package private Report URL: https://github.com/apache/flink/actions/runs/23778287060 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: c38b7e6863352c59698fb2897425d36cf911523e / RaoraoXiong [FLINK-39260][python] Support compression formats other than '.zip' for config option 'python.files' (#27780) Report URL: https://github.com/apache/flink/actions/runs/23725962169 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 004268ad2f43f43108679bafdfe6a2be6b0044b4 / Ramin Gharib [FLINK-38968][table] Add toCatalogTable method to CatalogMaterializedTable interface Report URL: https://github.com/apache/flink/actions/runs/23699988574 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 004268ad2f43f43108679bafdfe6a2be6b0044b4 / Ramin Gharib [FLINK-38968][table] Add toCatalogTable method to CatalogMaterializedTable interface Report URL: https://github.com/apache/flink/actions/runs/23675933720 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: eabc3cef8a1bcb601116caff2a82eeac2616f631 / Rui Fan <[email protected]> [FLINK-38541][checkpoint] Introducing config option: execution.checkpointing.unaligned.during-recovery.enabled Report URL: https://github.com/apache/flink/actions/runs/23628954312 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: bbd045f324dce0e68349c88ec1d3fc041f060efb / Yi Zhang [FLINK-39240][runtime] Jobs share application-level jar when possible Report URL: https://github.com/apache/flink/actions/runs/23575242796 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4dc5c0224f07526e39ddb59008c2995b5a3bfaff / Xuyang [FLINK-39236][table] Adapt binary delta join runtime operator to structure of cascade delta join (#27754) Report URL: https://github.com/apache/flink/actions/runs/23522695333 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 4f41151f08b210d764efdf93a2a18e3c9f905590 / Yi Zhang [FLINK-38975][runtime] Support application recovery Report URL: https://github.com/apache/flink/actions/runs/23470823632 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: b26c398a8b60b4af8a0688c65ba0e68e36c6852e / Liu Jiangang [FLINK-38988][table] Support INET_ATON and INET_NTOA functions for IP address conversion This closes #27483. Report URL: https://github.com/apache/flink/actions/runs/23419474356 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 14d9e6bcc57109589bf69773e5fcd4d0db01bad3 / Hao Li <[email protected]> [FLINK-38261] add catalog connection resource (#27504) * [FLINK-38261] add catalog connection resource * comments Report URL: https://github.com/apache/flink/actions/runs/23394348144 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: fc93810384bb878c0837849be3d7ddb72db0ee3e / Aleksandr Savonin [FLINK-39280][docs] Add missing State Size Tracking Options to configuration page Report URL: https://github.com/apache/flink/actions/runs/23370421461 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 6fc5c97ec3a89975ee44b1b084efc8fbc25c73ee / Mate Czagany <[email protected]> [FLINK-39124][JUnit5 Migration] Migrate the JUnit5 for Module: flink-tests (#27667) * [FLINK-39124][test] Migrate checkpointing ITCases to JUnit 5 Report URL: https://github.com/apache/flink/actions/runs/23327029756 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 2837c20a10bd226188d3491b4a7bc4fddf2ea9cb / Mate Czagany <[email protected]> [FLINK-39124][JUnit5 Migration] Migrate the JUnit5 for Module: flink-tests (#27666) * [FLINK-39124][test] Migrate operator restore tests to JUnit 5 * [FLINK-39124] Remove visibility modifiers from all test methods and classes * [FLINK-39124] Improve scopes and assertions Report URL: https://github.com/apache/flink/actions/runs/23277648802 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: f16345aef7e477063ddcd3c48ec663c2e6fb41ff / Gustavo de Morais [FLINK-39202][table] Add new `SimplifyCoalesceWithEquiJoinConditionRule` Report URL: https://github.com/apache/flink/actions/runs/23226935536 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: f16345aef7e477063ddcd3c48ec663c2e6fb41ff / Gustavo de Morais [FLINK-39202][table] Add new `SimplifyCoalesceWithEquiJoinConditionRule` Report URL: https://github.com/apache/flink/actions/runs/23176196099 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: b7a186b4553599477a1c7dc60701d59110fafb3b / Sergey Kononov <[email protected]> [FLINK-38998][table] Fix cascaded event time WindowAggregate does not produce data when offset is specified Report URL: https://github.com/apache/flink/actions/runs/23126013811 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 360aa9709bbe25e2673e04e17a374d90480ce967 / Roman Khachatryan [FLINK-39248][runtime] Fix RowDataKeySerializerSnapshot restore Report URL: https://github.com/apache/flink/actions/runs/23102016976 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 360aa9709bbe25e2673e04e17a374d90480ce967 / Roman Khachatryan [FLINK-39248][runtime] Fix RowDataKeySerializerSnapshot restore Report URL: https://github.com/apache/flink/actions/runs/23078754523 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 5bf350939440956479dc87bd34ad954e23a4ca37 / Dmitriy Linevich <[email protected]> [FLINK-39015][table] Fix key extractor for multi join by changing GenericRowData to BinaryRowData This closes #27508. Report URL: https://github.com/apache/flink/actions/runs/23034019567 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 8833af43fd5a9ad476ff4cfb5af73162218b3b58 / Feat Zhang [FLINK-38857][Model] Add docs for Triton inference model (#27490) Report URL: https://github.com/apache/flink/actions/runs/22934352973 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 8833af43fd5a9ad476ff4cfb5af73162218b3b58 / Feat Zhang [FLINK-38857][Model] Add docs for Triton inference model (#27490) Report URL: https://github.com/apache/flink/actions/runs/22884783716 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: 8833af43fd5a9ad476ff4cfb5af73162218b3b58 / Feat Zhang [FLINK-38857][Model] Add docs for Triton inference model (#27490) Report URL: https://github.com/apache/flink/actions/runs/22836416007 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: abf53fb7a7b65c227416c0401ac3ca54c47bc64d / Fabian Paul [FLINK-39221][table] Add AGGREGATE_VALUES rule for constant folding of global aggregates Add CoreRules.AGGREGATE_VALUES to PRUNE_EMPTY_RULES so the planner can replace a global aggregate over statically empty input (e.g. WHERE 1=0) with literal default Values at plan time (COUNT(*)=0, SUM=null, etc.), eliminating the GroupAggregate node entirely. Co-Authored-By: Claude Opus 4.6 Report URL: https://github.com/apache/flink/actions/runs/22812502530 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: abf53fb7a7b65c227416c0401ac3ca54c47bc64d / Fabian Paul [FLINK-39221][table] Add AGGREGATE_VALUES rule for constant folding of global aggregates Add CoreRules.AGGREGATE_VALUES to PRUNE_EMPTY_RULES so the planner can replace a global aggregate over statically empty input (e.g. WHERE 1=0) with literal default Values at plan time (COUNT(*)=0, SUM=null, etc.), eliminating the GroupAggregate node entirely. Co-Authored-By: Claude Opus 4.6 Report URL: https://github.com/apache/flink/actions/runs/22790389568 With regards, GitHub Actions via GitBox
[GH] (flink/master): Workflow run "Nightly (beta)" failed!
The GitHub Actions job "Nightly (beta)" on flink.git/master has failed. Run started by GitHub user github-actions[bot] (triggered by github-actions[bot]). Head commit for run: dfd785c2b3a58af60e34a4c56890e0c1b925ec1a / Yi Zhang [FLINK-38974][runtime] Handle jobs in running applications during HA recovery Report URL: https://github.com/apache/flink/actions/runs/22746862010 With regards, GitHub Actions via GitBox
