This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch revert-26207-users/danielarn/autosharding-fix in repository https://gitbox.apache.org/repos/asf/beam.git
commit dc8989d289a8f6c3b535ca261595bbe15454387a Author: Danny McCormick <[email protected]> AuthorDate: Tue Apr 25 09:44:24 2023 -0400 Revert "Autosharding support for Java is now fixed on Dataflow. Un-sickbaying GroupIntoBatches tests, fixes #25675. (#26207)" This reverts commit f1fba08b335c9aa9726728b2d52dd144b78f7153. --- runners/google-cloud-dataflow-java/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runners/google-cloud-dataflow-java/build.gradle b/runners/google-cloud-dataflow-java/build.gradle index 28e857229c1..9270ad203b5 100644 --- a/runners/google-cloud-dataflow-java/build.gradle +++ b/runners/google-cloud-dataflow-java/build.gradle @@ -399,6 +399,9 @@ task validatesRunnerStreaming { excludedTests: [ // TODO(https://github.com/apache/beam/issues/21472) 'org.apache.beam.sdk.transforms.GroupByKeyTest$BasicTests.testAfterProcessingTimeContinuationTriggerUsingState', + // GroupIntoBatches.withShardedKey not supported on streaming runner v1 + // https://github.com/apache/beam/issues/22592 + 'org.apache.beam.sdk.transforms.GroupIntoBatchesTest.testWithShardedKeyInGlobalWindow', ] )) }
