You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2022/06/04 21:39:02 UTC

[GitHub] [beam] damccorm opened a new issue, #21120: beam_PostRelease_NightlySnapshot failed

damccorm opened a new issue, #21120:
URL: https://github.com/apache/beam/issues/21120

   Task :runners:direct-java:runMobileGamingJavaDirect is failing (or severely flaking).
   
   There are a bunch of similar 404 errors for the tables used in the Dataflow runner tests, but the Dataflow runner test doesn't appear to be the one that's actually failing.
   
   https://ci-beam.apache.org/job/beam_PostRelease_NightlySnapshot/1470/console
   
   ```
   
   [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java (default-cli) on project
   word-count-beam: An exception occured while executing the Java class. java.lang.RuntimeException: com.google.api.client.googleapis.json.GoogleJsonResponseException:
   404 Not Found
   [ERROR] POST https://bigquery.googleapis.com/bigquery/v2/projects/apache-beam-testing/datasets/beam_postrelease_mobile_gaming/tables/leaderboard_DirectRunner_team/insertAll?prettyPrint=false
   [ERROR]
   {
   [ERROR] "code" : 404,
   [ERROR] "errors" : [ {
   [ERROR] "domain" : "global",
   [ERROR] "message" :
   "Not found: table Table is deleted: 844138762903:beam_postrelease_mobile_gaming.leaderboard_DirectRunner_team",
   [ERROR]
   "reason" : "notFound"
   [ERROR] } ],
   [ERROR] "message" : "Not found: table Table is deleted: 844138762903:beam_postrelease_mobile_gaming.leaderboard_DirectRunner_team",
   [ERROR]
   "status" : "NOT_FOUND"
   [ERROR] }
   
   ```
   
   
   Imported from Jira [BEAM-12793](https://issues.apache.org/jira/browse/BEAM-12793). Original Jira may contain additional context.
   Reported by: ibzib.


-- 
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: github-unsubscribe@beam.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] kennknowles closed issue #21120: beam_PostRelease_NightlySnapshot failed

Posted by GitBox <gi...@apache.org>.
kennknowles closed issue #21120: beam_PostRelease_NightlySnapshot failed
URL: https://github.com/apache/beam/issues/21120


-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] TheNeuralBit commented on issue #21120: beam_PostRelease_NightlySnapshot failed

Posted by GitBox <gi...@apache.org>.
TheNeuralBit commented on issue #21120:
URL: https://github.com/apache/beam/issues/21120#issuecomment-1170463974

   I think this error (or something like it) can still cause NightlySnapshot to flake, see https://ci-beam.apache.org/job/beam_PostRelease_NightlySnapshot/1777/console
   
   ```
   23:17:58 java.lang.RuntimeException: com.google.api.client.googleapis.json.GoogleJsonResponseException: 404 Not Found
   23:17:58 POST https://bigquery.googleapis.com/bigquery/v2/projects/apache-beam-testing/datasets/beam_postrelease_mobile_gaming/tables/leaderboard_DataflowRunner_team/insertAll?prettyPrint=false
   23:17:58 {
   23:17:58   "code" : 404,
   23:17:58   "errors" : [ {
   23:17:58     "domain" : "global",
   23:17:58     "message" : "Table 844138762903:beam_postrelease_mobile_gaming.leaderboard_DataflowRunner_team not found.",
   23:17:58     "reason" : "notFound"
   23:17:58   } ],
   23:17:58   "message" : "Table 844138762903:beam_postrelease_mobile_gaming.leaderboard_DataflowRunner_team not found.",
   23:17:58   "status" : "NOT_FOUND"
   23:17:58 }
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BigQueryServicesImpl$DatasetServiceImpl.insertAll(BigQueryServicesImpl.java:1189)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BigQueryServicesImpl$DatasetServiceImpl.insertAll(BigQueryServicesImpl.java:1242)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BatchedStreamingWrite.flushRows(BatchedStreamingWrite.java:379)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BatchedStreamingWrite.access$900(BatchedStreamingWrite.java:67)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BatchedStreamingWrite$BatchAndInsertElements.finishBundle(BatchedStreamingWrite.java:268)
   23:17:58 Caused by: com.google.api.client.googleapis.json.GoogleJsonResponseException: 404 Not Found
   23:17:58 POST https://bigquery.googleapis.com/bigquery/v2/projects/apache-beam-testing/datasets/beam_postrelease_mobile_gaming/tables/leaderboard_DataflowRunner_team/insertAll?prettyPrint=false
   23:17:58 {
   23:17:58   "code" : 404,
   23:17:58   "errors" : [ {
   23:17:58     "domain" : "global",
   23:17:58     "message" : "Table 844138762903:beam_postrelease_mobile_gaming.leaderboard_DataflowRunner_team not found.",
   23:17:58     "reason" : "notFound"
   23:17:58   } ],
   23:17:58   "message" : "Table 844138762903:beam_postrelease_mobile_gaming.leaderboard_DataflowRunner_team not found.",
   23:17:58   "status" : "NOT_FOUND"
   23:17:58 }
   23:17:58         com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:146)
   23:17:58         com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:118)
   23:17:58         com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:37)
   23:17:58         com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:428)
   23:17:58         com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1111)
   23:17:58         com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:514)
   23:17:58         com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:455)
   23:17:58         com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:565)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BigQueryServicesImpl$DatasetServiceImpl$InsertBatchofRowsCallable.call(BigQueryServicesImpl.java:955)
   23:17:58         org.apache.beam.sdk.io.gcp.bigquery.BigQueryServicesImpl$DatasetServiceImpl$InsertBatchofRowsCallable.call(BigQueryServicesImpl.java:906)
   23:17:58         org.apache.beam.vendor.guava.v26_0_jre.com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:125)
   23:17:58         org.apache.beam.vendor.guava.v26_0_jre.com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:57)
   23:17:58         org.apache.beam.vendor.guava.v26_0_jre.com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:78)
   23:17:58         java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
   23:17:58         java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
   23:17:58         java.lang.Thread.run(Thread.java:748)
   ```


-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] kennknowles commented on issue #21120: beam_PostRelease_NightlySnapshot failed

Posted by GitBox <gi...@apache.org>.
kennknowles commented on issue #21120:
URL: https://github.com/apache/beam/issues/21120#issuecomment-1182463236

   It has recovered.


-- 
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: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org