showuon commented on PR #12639: URL: https://github.com/apache/kafka/pull/12639#issuecomment-1247685312
@divijvaidya , thanks. > I am curious, how did you narrow down that Gradle Test Executor 128 is related to testReloadUpdatedFilesWithoutConfigChange. Did you check the the logs and search for exception stack traces and managed to get the IOException? Since the test got terminated, not closed gracefully, so there's no exception stack traces unfortunately, which is why it is not easy to identify the problem. For me, I don't have any trick here. I analyze some of the build logs like [here](https://ci-builds.apache.org/blue/rest/organizations/jenkins/pipelines/Kafka/pipelines/kafka/branches/trunk/runs/1228/nodes/14/steps/134/log/?start=0), and found the "core:unitTest" mostly got terminated at `ClusterTestExtensionsTest` suite. Starting from it, I check the test code, found nothing special, then, find the tests earlier, since I believe there could be some earlier test affect it or somewhat. So, in the end, I found the issue in this PR in the `BrokerMetadataPublisherTest` test suite. Hope this is the only issue we need to fix! ``` 2022-09-15T01:16:27.075Z] BrokerMetadataPublisherTest > testReloadUpdatedFilesWithoutConfigChange() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataPublisherTest > testReloadUpdatedFilesWithoutConfigChange() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateAndClose() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateAndClose() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateSnapshot() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateSnapshot() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateSnapshotMultipleReasons() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testCreateSnapshotMultipleReasons() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testRecordListConsumer() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] BrokerMetadataSnapshotterTest > testRecordListConsumer() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] MockConfigRepositoryTest > testEmptyRepository() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] MockConfigRepositoryTest > testEmptyRepository() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] MockConfigRepositoryTest > testSetTopicConfig() STARTED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] MockConfigRepositoryTest > testSetTopicConfig() PASSED [2022-09-15T01:16:27.075Z] [2022-09-15T01:16:27.075Z] ClusterTestExtensionsTest > testClusterTest(ClusterConfig, ClusterInstance) > kafka.test.ClusterTestExtensionsTest.testClusterTest(ClusterConfig, ClusterInstance)[1] STARTED [2022-09-15T01:16:28.050Z] [2022-09-15T01:16:28.050Z] ClusterTestExtensionsTest > testClusterTest(ClusterConfig, ClusterInstance) > kafka.test.ClusterTestExtensionsTest.testClusterTest(ClusterConfig, ClusterInstance)[1] PASSED [2022-09-15T01:16:28.050Z] [2022-09-15T01:16:28.050Z] ClusterTestExtensionsTest > testNoAutoStart() > kafka.test.ClusterTestExtensionsTest.testNoAutoStart()[1] STARTED [2022-09-15T01:16:32.108Z] [2022-09-15T01:16:32.108Z] ClusterTestExtensionsTest > testNoAutoStart() > kafka.test.ClusterTestExtensionsTest.testNoAutoStart()[1] PASSED [2022-09-15T01:16:32.108Z] [2022-09-15T01:16:32.108Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[1] STARTED [2022-09-15T01:16:34.943Z] [2022-09-15T01:16:34.943Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[1] PASSED [2022-09-15T01:16:34.943Z] [2022-09-15T01:16:34.943Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[2] STARTED [2022-09-15T01:16:38.147Z] [2022-09-15T01:16:38.147Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[2] PASSED [2022-09-15T01:16:38.147Z] [2022-09-15T01:16:38.147Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[3] STARTED [2022-09-15T01:16:40.319Z] [2022-09-15T01:16:40.319Z] ClusterTestExtensionsTest > testClusterTests() > kafka.test.ClusterTestExtensionsTest.testClusterTests()[3] SKIPPED [2022-09-15T01:16:41.474Z] [2022-09-15T01:16:41.474Z] > Task :core:unitTest FAILED ``` -- 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]
