You are viewing a plain text version of this content. The canonical link for it is here.
Posted to builds@beam.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2021/05/25 00:31:43 UTC

Build failed in Jenkins: beam_PostCommit_Java_Nexmark_Direct #7434

See <https://ci-beam.apache.org/job/beam_PostCommit_Java_Nexmark_Direct/7434/display/redirect?page=changes>

Changes:

[heejong] [BEAM-12390] clickhouse test fails when test resource can't be read by

[Ismaël Mejía] [BEAM-12241] Update vendored bytebuddy to version 1.11.0

[noreply] [BEAM-10144] update pipeline options snippets (#14738)

[Kyle Weaver] Update Dataflow Python containers.


------------------------------------------
[...truncated 305.77 KB...]
2021-05-25T00:30:29.335Z Running query:MONITOR_NEW_USERS; exportSummaryToBigQuery:true
2021-05-25T00:30:29.335Z skipping since configuration is not implemented
2021-05-25T00:30:29.335Z Running query:WINNING_BIDS; exportSummaryToBigQuery:true; numEvents:10000
2021-05-25T00:30:29.335Z skipping since configuration is not implemented
2021-05-25T00:30:29.335Z Running query:LOG_TO_SHARDED_FILES; exportSummaryToBigQuery:true
2021-05-25T00:30:29.335Z skipping since configuration is not implemented
2021-05-25T00:30:29.335Z Running query:USER_SESSIONS; exportSummaryToBigQuery:true
2021-05-25T00:30:29.335Z skipping since configuration is not implemented
2021-05-25T00:30:29.336Z Running query:PROCESSING_TIME_WINDOWS; exportSummaryToBigQuery:true
2021-05-25T00:30:29.336Z skipping since configuration is not implemented
2021-05-25T00:30:29.336Z Running query:PORTABILITY_BATCH; exportSummaryToBigQuery:true
2021-05-25T00:30:29.336Z skipping since configuration is not implemented
2021-05-25T00:30:29.336Z Running query:BOUNDED_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true

==========================================================================================
Run started 2021-05-25T00:28:23.550Z and ran for PT125.785S

Default configuration:
{"debug":true,"query":null,"sourceType":"DIRECT","generateEventFilePathPrefix":null,"sinkType":"DEVNULL","exportSummaryToBigQuery":false,"pubSubMode":"COMBINED","pubsubMessageSerializationMethod":"CODER","sideInputType":"DIRECT","sideInputRowCount":500,"sideInputNumShards":3,"sideInputUrl":null,"sessionGap":600000,"numEvents":100000,"numEventGenerators":100,"rateShape":"SINE","firstEventRate":10000,"nextEventRate":10000,"rateUnit":"PER_SECOND","ratePeriodSec":600,"preloadSeconds":0,"streamTimeout":240,"isRateLimited":false,"useWallclockEventTime":false,"avgPersonByteSize":200,"avgAuctionByteSize":500,"avgBidByteSize":100,"hotAuctionRatio":2,"hotSellersRatio":4,"hotBiddersRatio":4,"windowSizeSec":10,"windowPeriodSec":5,"watermarkHoldbackSec":0,"numInFlightAuctions":100,"numActivePeople":1000,"coderStrategy":"HAND","cpuDelayMs":0,"diskBusyBytes":0,"auctionSkip":123,"fanout":5,"maxAuctionsWaitingTime":600,"occasionalDelaySec":3,"probDelayedEvent":0.1,"maxLogEvents":100000,"usePubsubPublishTime":false,"outOfOrderGroupSize":1,"numKeyBuckets":20000,"pardoCPUFactor":1.0}

Configurations:
  Conf  Description
  0000  query:PASSTHROUGH; exportSummaryToBigQuery:true
  0001  query:CURRENCY_CONVERSION; exportSummaryToBigQuery:true
  0002  query:SELECTION; exportSummaryToBigQuery:true
  0003  query:LOCAL_ITEM_SUGGESTION; exportSummaryToBigQuery:true
  0004  query:AVERAGE_PRICE_FOR_CATEGORY; exportSummaryToBigQuery:true; numEvents:10000
  0005  query:HOT_ITEMS; exportSummaryToBigQuery:true
  0006  query:AVERAGE_SELLING_PRICE_BY_SELLER; exportSummaryToBigQuery:true; numEvents:10000
  0007  query:HIGHEST_BID; exportSummaryToBigQuery:true
  0008  query:MONITOR_NEW_USERS; exportSummaryToBigQuery:true
  0009  query:WINNING_BIDS; exportSummaryToBigQuery:true; numEvents:10000
  0010  query:LOG_TO_SHARDED_FILES; exportSummaryToBigQuery:true
  0011  query:USER_SESSIONS; exportSummaryToBigQuery:true
  0012  query:PROCESSING_TIME_WINDOWS; exportSummaryToBigQuery:true
  0013  query:PORTABILITY_BATCH; exportSummaryToBigQuery:true
  0014  query:BOUNDED_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true
  0015  query:SESSION_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true

Performance:
  Conf  Runtime(sec)    (Baseline)  Events(/sec)    (Baseline)       Results    (Baseline)
  0000           5.1                     19743.3                       92000              
  0001           2.9                     34662.0                       92000              
  0002           1.4                     72516.3                         351              
  0003           3.0                     33344.4                         580              
  0004  *** not run ***
  0005  *** not run ***
  0006  *** not run ***
  0007         107.6                       929.8                           1              
  0008  *** not run ***
  0009  *** not run ***
  0010  *** not run ***
  0011  *** not run ***
  0012  *** not run ***
  0013  *** not run ***
  0014  *** not run ***
  0015  *** not run ***
==========================================================================================

2021-05-25T00:30:29.338Z Generating 100000 events in batch mode
May 25, 2021 12:30:29 AM org.apache.beam.sdk.extensions.sql.impl.CalciteQueryPlanner convertToBeamRel
INFO: SQL:
WITH `bid_with_side` (`auction`, `bidder`, `price`, `dateTime`, `extra`, `side_id`) AS (SELECT `bid`.`auction`, `bid`.`bidder`, `bid`.`price`, `bid`.`dateTime`, `bid`.`extra`, CAST(MOD(`bid`.`bidder`, 500) AS BIGINT) AS `side_id`
FROM `beam`.`bid` AS `bid`) (SELECT `bid_with_side`.`auction`, `bid_with_side`.`bidder`, `bid_with_side`.`price`, `bid_with_side`.`dateTime`, `side`.`extra`
FROM `bid_with_side` AS `bid_with_side`,
`beam`.`side` AS `side`
WHERE `bid_with_side`.`side_id` = `side`.`id`)
May 25, 2021 12:30:29 AM org.apache.beam.sdk.extensions.sql.impl.CalciteQueryPlanner convertToBeamRel
INFO: SQLPlan>
LogicalProject(auction=[$0], bidder=[$1], price=[$2], dateTime=[$3], extra=[$7])
  LogicalFilter(condition=[=($5, $6)])
    LogicalJoin(condition=[true], joinType=[inner])
      LogicalProject(auction=[$0], bidder=[$1], price=[$2], dateTime=[$3], extra=[$4], side_id=[CAST(MOD($1, 500)):BIGINT NOT NULL])
        BeamIOSourceRel(table=[[beam, bid]])
      BeamIOSourceRel(table=[[beam, side]])

May 25, 2021 12:30:29 AM org.apache.beam.sdk.extensions.sql.impl.CalciteQueryPlanner convertToBeamRel
INFO: BEAMPlan>
BeamCalcRel(expr#0..7=[{inputs}], proj#0..3=[{exprs}], extra=[$t7])
  BeamCoGBKJoinRel(condition=[=($5, $6)], joinType=[inner])
    BeamCalcRel(expr#0..4=[{inputs}], expr#5=[500], expr#6=[MOD($t1, $t5)], expr#7=[CAST($t6):BIGINT NOT NULL], proj#0..4=[{exprs}], side_id=[$t7])
      BeamIOSourceRel(table=[[beam, bid]])
    BeamIOSourceRel(table=[[beam, side]])

2021-05-25T00:30:38.805Z Waiting for main pipeline to 'finish'
2021-05-25T00:30:38.805Z DONE SqlBoundedSideInputJoin
2021-05-25T00:30:38.805Z Running query:SESSION_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true
2021-05-25T00:30:38.805Z skipping since configuration is not implemented

==========================================================================================
Run started 2021-05-25T00:28:23.550Z and ran for PT135.255S

Default configuration:
{"debug":true,"query":null,"sourceType":"DIRECT","generateEventFilePathPrefix":null,"sinkType":"DEVNULL","exportSummaryToBigQuery":false,"pubSubMode":"COMBINED","pubsubMessageSerializationMethod":"CODER","sideInputType":"DIRECT","sideInputRowCount":500,"sideInputNumShards":3,"sideInputUrl":null,"sessionGap":600000,"numEvents":100000,"numEventGenerators":100,"rateShape":"SINE","firstEventRate":10000,"nextEventRate":10000,"rateUnit":"PER_SECOND","ratePeriodSec":600,"preloadSeconds":0,"streamTimeout":240,"isRateLimited":false,"useWallclockEventTime":false,"avgPersonByteSize":200,"avgAuctionByteSize":500,"avgBidByteSize":100,"hotAuctionRatio":2,"hotSellersRatio":4,"hotBiddersRatio":4,"windowSizeSec":10,"windowPeriodSec":5,"watermarkHoldbackSec":0,"numInFlightAuctions":100,"numActivePeople":1000,"coderStrategy":"HAND","cpuDelayMs":0,"diskBusyBytes":0,"auctionSkip":123,"fanout":5,"maxAuctionsWaitingTime":600,"occasionalDelaySec":3,"probDelayedEvent":0.1,"maxLogEvents":100000,"usePubsubPublishTime":false,"outOfOrderGroupSize":1,"numKeyBuckets":20000,"pardoCPUFactor":1.0}

Configurations:
  Conf  Description
  0000  query:PASSTHROUGH; exportSummaryToBigQuery:true
  0001  query:CURRENCY_CONVERSION; exportSummaryToBigQuery:true
  0002  query:SELECTION; exportSummaryToBigQuery:true
  0003  query:LOCAL_ITEM_SUGGESTION; exportSummaryToBigQuery:true
  0004  query:AVERAGE_PRICE_FOR_CATEGORY; exportSummaryToBigQuery:true; numEvents:10000
  0005  query:HOT_ITEMS; exportSummaryToBigQuery:true
  0006  query:AVERAGE_SELLING_PRICE_BY_SELLER; exportSummaryToBigQuery:true; numEvents:10000
  0007  query:HIGHEST_BID; exportSummaryToBigQuery:true
  0008  query:MONITOR_NEW_USERS; exportSummaryToBigQuery:true
  0009  query:WINNING_BIDS; exportSummaryToBigQuery:true; numEvents:10000
  0010  query:LOG_TO_SHARDED_FILES; exportSummaryToBigQuery:true
  0011  query:USER_SESSIONS; exportSummaryToBigQuery:true
  0012  query:PROCESSING_TIME_WINDOWS; exportSummaryToBigQuery:true
  0013  query:PORTABILITY_BATCH; exportSummaryToBigQuery:true
  0014  query:BOUNDED_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true
  0015  query:SESSION_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true

Performance:
  Conf  Runtime(sec)    (Baseline)  Events(/sec)    (Baseline)       Results    (Baseline)
  0000           5.1                     19743.3                       92000              
  0001           2.9                     34662.0                       92000              
  0002           1.4                     72516.3                         351              
  0003           3.0                     33344.4                         580              
  0004  *** not run ***
  0005  *** not run ***
  0006  *** not run ***
  0007         107.6                       929.8                           1              
  0008  *** not run ***
  0009  *** not run ***
  0010  *** not run ***
  0011  *** not run ***
  0012  *** not run ***
  0013  *** not run ***
  0014           8.7                     11456.1                       92000              
  0015  *** not run ***
==========================================================================================


==========================================================================================
Run started 2021-05-25T00:28:23.550Z and ran for PT197.854S

Default configuration:
{"debug":true,"query":null,"sourceType":"DIRECT","generateEventFilePathPrefix":null,"sinkType":"DEVNULL","exportSummaryToBigQuery":false,"pubSubMode":"COMBINED","pubsubMessageSerializationMethod":"CODER","sideInputType":"DIRECT","sideInputRowCount":500,"sideInputNumShards":3,"sideInputUrl":null,"sessionGap":600000,"numEvents":100000,"numEventGenerators":100,"rateShape":"SINE","firstEventRate":10000,"nextEventRate":10000,"rateUnit":"PER_SECOND","ratePeriodSec":600,"preloadSeconds":0,"streamTimeout":240,"isRateLimited":false,"useWallclockEventTime":false,"avgPersonByteSize":200,"avgAuctionByteSize":500,"avgBidByteSize":100,"hotAuctionRatio":2,"hotSellersRatio":4,"hotBiddersRatio":4,"windowSizeSec":10,"windowPeriodSec":5,"watermarkHoldbackSec":0,"numInFlightAuctions":100,"numActivePeople":1000,"coderStrategy":"HAND","cpuDelayMs":0,"diskBusyBytes":0,"auctionSkip":123,"fanout":5,"maxAuctionsWaitingTime":600,"occasionalDelaySec":3,"probDelayedEvent":0.1,"maxLogEvents":100000,"usePubsubPublishTime":false,"outOfOrderGroupSize":1,"numKeyBuckets":20000,"pardoCPUFactor":1.0}

Configurations:
  Conf  Description
  0000  query:PASSTHROUGH; exportSummaryToBigQuery:true
  0001  query:CURRENCY_CONVERSION; exportSummaryToBigQuery:true
  0002  query:SELECTION; exportSummaryToBigQuery:true
Exception in thread "main"   0003  query:LOCAL_ITEM_SUGGESTION; exportSummaryToBigQuery:true
  0004  query:AVERAGE_PRICE_FOR_CATEGORY; exportSummaryToBigQuery:true; numEvents:10000
  0005  query:HOT_ITEMS; exportSummaryToBigQuery:true
  0006  query:AVERAGE_SELLING_PRICE_BY_SELLER; exportSummaryToBigQuery:true; numEvents:10000
  0007  query:HIGHEST_BID; exportSummaryToBigQuery:true
  0008  query:MONITOR_NEW_USERS; exportSummaryToBigQuery:true
  0009  query:WINNING_BIDS; exportSummaryToBigQuery:true; numEvents:10000
  0010  query:LOG_TO_SHARDED_FILES; exportSummaryToBigQuery:true
  0011  query:USER_SESSIONS; exportSummaryToBigQuery:true
  0012  query:PROCESSING_TIME_WINDOWS; exportSummaryToBigQuery:true
  0013  query:PORTABILITY_BATCH; exportSummaryToBigQuery:true
  0014  query:BOUNDED_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true
  0015  query:SESSION_SIDE_INPUT_JOIN; exportSummaryToBigQuery:true

Performance:
  Conf  Runtime(sec)    (Baseline)  Events(/sec)    (Baseline)       Results    (Baseline)
  0000           5.1                     19743.3                       92000              
  0001           2.9                     34662.0                       92000              
  0002           1.4                     72516.3                         351              
  0003           3.0                     33344.4                         580              
  0004  *** not run ***
  0005  *** not run ***
  0006  *** not run ***
  0007         107.6                       929.8                           1              
  0008  *** not run ***
  0009  *** not run ***
  0010  *** not run ***
com.google.cloud.bigquery.BigQueryException: Read timed out
  0011  *** not run ***
	at com.google.cloud.bigquery.spi.v2.HttpBigQueryRpc.translate(HttpBigQueryRpc.java:115)
  0012  *** not run ***
	at com.google.cloud.bigquery.spi.v2.HttpBigQueryRpc.getTable(HttpBigQueryRpc.java:286)
	at com.google.cloud.bigquery.BigQueryImpl$17.call(BigQueryImpl.java:717)
	at com.google.cloud.bigquery.BigQueryImpl$17.call(BigQueryImpl.java:714)
  0013  *** not run ***
  0014           8.7                     11456.1                       92000              
  0015  *** not run ***
==========================================================================================

	at com.google.api.gax.retrying.DirectRetryingExecutor.submit(DirectRetryingExecutor.java:105)
	at com.google.cloud.RetryHelper.run(RetryHelper.java:76)
	at com.google.cloud.RetryHelper.runWithRetries(RetryHelper.java:50)
	at com.google.cloud.bigquery.BigQueryImpl.getTable(BigQueryImpl.java:713)
	at org.apache.beam.sdk.testutils.publishing.BigQueryClient.createTableIfNotExists(BigQueryClient.java:145)
	at org.apache.beam.sdk.testutils.publishing.BigQueryClient.insertRow(BigQueryClient.java:88)
	at org.apache.beam.sdk.testutils.publishing.BigQueryResultsPublisher.publish(BigQueryResultsPublisher.java:47)
	at org.apache.beam.sdk.nexmark.Main.savePerfsToBigQuery(Main.java:203)
	at org.apache.beam.sdk.nexmark.Main.runAll(Main.java:164)
	at org.apache.beam.sdk.nexmark.Main.main(Main.java:495)
Caused by: java.net.SocketTimeoutException: Read timed out
	at java.net.SocketInputStream.socketRead0(Native Method)
	at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
	at java.net.SocketInputStream.read(SocketInputStream.java:171)
	at java.net.SocketInputStream.read(SocketInputStream.java:141)
	at sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:457)
	at sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInputRecord.java:68)
	at sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1332)
	at sun.security.ssl.SSLSocketImpl.access$300(SSLSocketImpl.java:73)
	at sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:948)
	at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
	at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
	at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
	at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)
	at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)
	at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1593)
	at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1498)
	at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
	at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:352)
	at com.google.api.client.http.javanet.NetHttpResponse.<init>(NetHttpResponse.java:36)
	at com.google.api.client.http.javanet.NetHttpRequest.execute(NetHttpRequest.java:149)
	at com.google.api.client.http.javanet.NetHttpRequest.execute(NetHttpRequest.java:84)
	at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1012)
	at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:514)
	at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:455)
	at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:565)
	at com.google.cloud.bigquery.spi.v2.HttpBigQueryRpc.getTable(HttpBigQueryRpc.java:284)
	... 12 more

> Task :sdks:java:testing:nexmark:run FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':sdks:java:testing:nexmark:run'.
> Process 'command '/usr/lib/jvm/java-8-openjdk-amd64/bin/java'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.8.3/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 3m 23s
100 actionable tasks: 2 executed, 98 up-to-date

Publishing build scan...
https://gradle.com/s/oiwq5c5qgymik

Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure

---------------------------------------------------------------------
To unsubscribe, e-mail: builds-unsubscribe@beam.apache.org
For additional commands, e-mail: builds-help@beam.apache.org


Jenkins build is back to normal : beam_PostCommit_Java_Nexmark_Direct #7435

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://ci-beam.apache.org/job/beam_PostCommit_Java_Nexmark_Direct/7435/display/redirect?page=changes>


---------------------------------------------------------------------
To unsubscribe, e-mail: builds-unsubscribe@beam.apache.org
For additional commands, e-mail: builds-help@beam.apache.org