You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beam.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2018/05/01 07:18:56 UTC

Build failed in Jenkins: beam_Release_Gradle_NightlySnapshot #25

See <https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/25/display/redirect?page=changes>

Changes:

[ankurgoenka] fixing generic errors

[echauchot] [BEAM-3119] ensure metrics thread is shutdown

[echauchot] [BEAM-4088] Rebase on master, fix conflicts and adapt test to master

[echauchot] [BEAM-4088] Add a test with a real pipeline that has a DoFn with metrics

[thw] [BEAM-4131] Include SDK into Python SDK harness container.

[herohde] [BEAM-4175] Fix direct ouput pardo issue

[aljoscha.krettek] [BEAM-3909] Add tests for Flink DoFnOperator side-input checkpointing

[echauchot] [BEAM-4088] Blocks until the threads in metricsExecutorService is done,

[pgerver] Enhance awsCredentialsProvider option description

[kenn] Add errorprone to basic Gradle config

[kenn] Fix suppressed failure in ResourceIdTester

[kenn] Fix erroneous tests in ViewTest

[kenn] Add missing @Test in CollectionCoderTest

[kenn] Sickbay broken LocalResourceIdTest case

[kenn] Remove inaccurate GuardedBy in both copies of DirectMetrics

[kenn] Fix suppressed failure in RetryHttpRequestInitializerTest

[kenn] Remove unnecessary type arguments in ReduceFnRunnerTest

[kenn] Add missing @Test in SplittableParDoProcessFnTest

[kenn] Remove unnecessary type argument in PipelineTranslationTest

[kenn] Fix compile-type constant int overflow in S3FileSystem

[kenn] Disable findbugs for JdbcIO where it gave false positives, now that we

[kenn] Sickbay broken GcsResourceIdTest case

[kenn] Sickbay broken HadoopResourceIdTest case

[kenn] Sickbay broken SplittableParDoProcessFnTest case

[kenn] Add missing @Test in S3ResourceIdTest

[kenn] Fix typo in CassandraIOIT

[kenn] Fix nonsensical @RunWith in ExampleEchoPipelineTest

[kenn] Fix missing @Test in both copies of WatermarkManagerTest

[kenn] Fix misuse of Arrays.asList in KinesisMockWriteTest

[kenn] Remove extraneous type variables in MongoDBGridFSIOTest

[kenn] Sickbay broken S3ResourceIdTest cases

[kenn] Sickbay broken WatermarkManagerTest case

[apilloud] [BEAM-3983][SQL] Add BigQuery table provider

[iemejia] Fix gradle script to build the docker image of 'sdks/java/container'

[thw] cleanup

[Pablo] Creation of utils.py whit CountingSource class on it.

[Pablo] Changed import from examples.snippets to io.utils

------------------------------------------
[...truncated 2.39 MB...]
    (see http://errorprone.info/bugpattern/NullablePrimitive)
  Did you mean to remove this line?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkOptions.java>:186: warning: [NullablePrimitive] @Nullable should not be used for primitive types since they cannot be null
  @Nullable
  ^
    (see http://errorprone.info/bugpattern/NullablePrimitive)
  Did you mean to remove this line?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkOptions.java>:284: warning: [NullablePrimitive] @Nullable should not be used for primitive types since they cannot be null
  @Nullable
  ^
    (see http://errorprone.info/bugpattern/NullablePrimitive)
  Did you mean to remove this line?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkSuite.java>:92: warning: [ImmutableEnumChecker] enums should be immutable: 'NexmarkSuite' has field 'configurations' of type 'java.util.List<org.apache.beam.sdk.nexmark.NexmarkConfiguration>', 'List' is mutable
  private final List<NexmarkConfiguration> configurations;
                                           ^
    (see http://errorprone.info/bugpattern/ImmutableEnumChecker)
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/model/Event.java>:40: warning: [ImmutableEnumChecker] enums should be immutable: 'Tag' has non-final field 'value'
    private int value = -1;
                ^
    (see http://errorprone.info/bugpattern/ImmutableEnumChecker)
  Did you mean 'private final int value = -1;'?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/schemas/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/model/sql/adapter/ModelAdaptersMapping.java>:41: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final Map<Class, ModelFieldsAdapter> ADAPTERS =
                         ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableMap<Class, ModelFieldsAdapter> ADAPTERS ='?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/testing/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/sources/generator/model/AuctionGenerator.java>:131: warning: [IntLongMath] Expression of type int may overflow before being assigned to a long
            / GeneratorConfig.AUCTION_PROPORTION;
            ^
    (see http://errorprone.info/bugpattern/IntLongMath)
  Did you mean '((long) config.getNumInFlightAuctions() * GeneratorConfig.PROPORTION_DENOMINATOR)'?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/transforms/join/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/Query10.java>:139: warning: [MissingCasesInEnumSwitch] Non-exhaustive switch; either add a default or handle the remaining cases: UNKNOWN
    switch (timing) {
    ^
    (see http://errorprone.info/bugpattern/MissingCasesInEnumSwitch)
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
20 warnings
Packing task ':beam-sdks-java-nexmark:compileJava'
:beam-sdks-java-nexmark:compileJava (Thread[main,5,main]) completed. Took 8.521 secs.
:beam-sdks-java-nexmark:processResources (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:processResources
Build cache key for task ':beam-sdks-java-nexmark:processResources' is a4d4fb4d073f6af4fc60751b415ce8ed
Caching disabled for task ':beam-sdks-java-nexmark:processResources': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:processResources' is not up-to-date because:
  No history is available.
:beam-sdks-java-nexmark:processResources (Thread[main,5,main]) completed. Took 0.002 secs.
:beam-sdks-java-nexmark:classes (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:classes
Skipping task ':beam-sdks-java-nexmark:classes' as it has no actions.
:beam-sdks-java-nexmark:classes (Thread[main,5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:shadowJar (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:shadowJar
Build cache key for task ':beam-sdks-java-nexmark:shadowJar' is 4e1723388fea6f111290f493d386eed3
Caching disabled for task ':beam-sdks-java-nexmark:shadowJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:shadowJar' is not up-to-date because:
  No history is available.
*******************
GRADLE SHADOW STATS

Total Jars: 2 (includes project)
Total Time: 1.823s [1823ms]
Average Time/Jar: 0.9115s [911.5ms]
*******************
:beam-sdks-java-nexmark:shadowJar (Thread[main,5,main]) completed. Took 2.069 secs.
:beam-sdks-java-nexmark:compileTestJava (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:compileTestJava
Build cache key for task ':beam-sdks-java-nexmark:compileTestJava' is c405c7beb5f537d7170d856b1250470a
Task ':beam-sdks-java-nexmark:compileTestJava' is not up-to-date because:
  No history is available.
Custom actions are attached to task ':beam-sdks-java-nexmark:compileTestJava'.
All input files are considered out-of-date for incremental task ':beam-sdks-java-nexmark:compileTestJava'.
Compiling with error-prone compiler
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation': class file for edu.umd.cs.findbugs.annotations.DefaultAnnotation not found
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/testing/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/values/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/schemas/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/transforms/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/io/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:49: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:55: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:61: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<AuctionCount> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<AuctionCount> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:41: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Person> PEOPLE = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Person> PEOPLE = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:48: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Auction> AUCTIONS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Auction> AUCTIONS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:60: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> PEOPLE_AND_AUCTIONS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> PEOPLE_AND_AUCTIONS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:78: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<NameCityStateId> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<NameCityStateId> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:46: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:53: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:60: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<Bid> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<Bid> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:44: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:54: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:64: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<AuctionPrice> BIDS_EVEN = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<AuctionPrice> BIDS_EVEN = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:70: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<AuctionPrice> BIDS_EVERY_THIRD = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<AuctionPrice> BIDS_EVERY_THIRD = ImmutableList.of('?
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
20 warnings
Packing task ':beam-sdks-java-nexmark:compileTestJava'
:beam-sdks-java-nexmark:compileTestJava (Thread[main,5,main]) completed. Took 3.675 secs.
:beam-sdks-java-nexmark:processTestResources (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:processTestResources NO-SOURCE
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
Skipping task ':beam-sdks-java-nexmark:processTestResources' as it has no source files and no previous output files.
:beam-sdks-java-nexmark:processTestResources (Thread[main,5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:testClasses (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:testClasses
Skipping task ':beam-sdks-java-nexmark:testClasses' as it has no actions.
:beam-sdks-java-nexmark:testClasses (Thread[main,5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:shadowTestJar (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:shadowTestJar
Build cache key for task ':beam-sdks-java-nexmark:shadowTestJar' is 12ccdf412b0bb0288f83acce0c348dc6
Caching disabled for task ':beam-sdks-java-nexmark:shadowTestJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:shadowTestJar' is not up-to-date because:
  No history is available.
*******************
GRADLE SHADOW STATS

Total Jars: 2 (includes project)
Total Time: 1.74s [1740ms]
Average Time/Jar: 0.87s [870.0ms]
*******************
:beam-sdks-java-nexmark:shadowTestJar (Thread[main,5,main]) completed. Took 1.789 secs.
:beam-sdks-java-nexmark:sourcesJar (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:sourcesJar
Build cache key for task ':beam-sdks-java-nexmark:sourcesJar' is a2ef1bb8cedbae3e6c65544e484628b5
Caching disabled for task ':beam-sdks-java-nexmark:sourcesJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:sourcesJar' is not up-to-date because:
  No history is available.
:beam-sdks-java-nexmark:sourcesJar (Thread[main,5,main]) completed. Took 0.024 secs.
:beam-sdks-java-nexmark:testSourcesJar (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:testSourcesJar
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
Build cache key for task ':beam-sdks-java-nexmark:testSourcesJar' is ad9b635fcbaa70567f99174bbb259d91
Caching disabled for task ':beam-sdks-java-nexmark:testSourcesJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:testSourcesJar' is not up-to-date because:
  No history is available.
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
:beam-sdks-java-nexmark:testSourcesJar (Thread[main,5,main]) completed. Took 0.006 secs.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':beam-runners-local-java-core:javadoc'.
> Javadoc generation failed. Generated Javadoc options file (useful for troubleshooting): '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/runners/local-java/build/tmp/javadoc/javadoc.options'>

* Try:
Run with --stacktrace option to get the stack trace. Run with --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 5.0.
See https://docs.gradle.org/4.7/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 18m 39s
582 actionable tasks: 582 executed

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

Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure
Not sending mail to unregistered user swegner@google.com
Not sending mail to unregistered user pgerver@us.ibm.com
Not sending mail to unregistered user aaltay@gmail.com
Not sending mail to unregistered user sidhom@google.com
Not sending mail to unregistered user katarzyna.kucharczyk@polidea.com
Not sending mail to unregistered user herohde@google.com
Not sending mail to unregistered user ankurgoenka@gmail.com
Not sending mail to unregistered user rober@frantil.com
Not sending mail to unregistered user wcn@google.com
Not sending mail to unregistered user szewinho@gmail.com
Not sending mail to unregistered user github@alasdairhodge.co.uk
Not sending mail to unregistered user kedin@google.com
Not sending mail to unregistered user aromanenko.dev@gmail.com
Not sending mail to unregistered user ekirpichov@gmail.com
Not sending mail to unregistered user aljoscha.krettek@gmail.com
Not sending mail to unregistered user apilloud@google.com
Not sending mail to unregistered user relax@relax-macbookpro2.roam.corp.google.com
Not sending mail to unregistered user kirpichov@google.com

Jenkins build is back to normal : beam_Release_Gradle_NightlySnapshot #27

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/27/display/redirect?page=changes>


Build failed in Jenkins: beam_Release_Gradle_NightlySnapshot #26

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/26/display/redirect?page=changes>

Changes:

[tgroh] Mark some ReduceFnRunner arguments Nullable

[swegner] Findbugs cleanup; no functional changes

[Pablo] Add documentaton for quickstart tasks

[github] Update perf.go: only trigger on processing bundles

[github] [BEAM-3042] Refactor of TransformIOCounters (performance, inheritance).

[kirpichov] [BEAM-4144] Fixes SplittableParDoProcessFnTest

------------------------------------------
[...truncated 2.34 MB...]
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkOptions.java>:186: warning: [NullablePrimitive] @Nullable should not be used for primitive types since they cannot be null
  @Nullable
  ^
    (see http://errorprone.info/bugpattern/NullablePrimitive)
  Did you mean to remove this line?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkOptions.java>:284: warning: [NullablePrimitive] @Nullable should not be used for primitive types since they cannot be null
  @Nullable
  ^
    (see http://errorprone.info/bugpattern/NullablePrimitive)
  Did you mean to remove this line?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/NexmarkSuite.java>:92: warning: [ImmutableEnumChecker] enums should be immutable: 'NexmarkSuite' has field 'configurations' of type 'java.util.List<org.apache.beam.sdk.nexmark.NexmarkConfiguration>', 'List' is mutable
  private final List<NexmarkConfiguration> configurations;
                                           ^
    (see http://errorprone.info/bugpattern/ImmutableEnumChecker)
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/model/Event.java>:40: warning: [ImmutableEnumChecker] enums should be immutable: 'Tag' has non-final field 'value'
    private int value = -1;
                ^
    (see http://errorprone.info/bugpattern/ImmutableEnumChecker)
  Did you mean 'private final int value = -1;'?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/schemas/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/model/sql/adapter/ModelAdaptersMapping.java>:41: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final Map<Class, ModelFieldsAdapter> ADAPTERS =
                         ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableMap<Class, ModelFieldsAdapter> ADAPTERS ='?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/testing/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/sources/generator/model/AuctionGenerator.java>:131: warning: [IntLongMath] Expression of type int may overflow before being assigned to a long
            / GeneratorConfig.AUCTION_PROPORTION;
            ^
    (see http://errorprone.info/bugpattern/IntLongMath)
  Did you mean '((long) config.getNumInFlightAuctions() * GeneratorConfig.PROPORTION_DENOMINATOR)'?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/transforms/join/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/Query10.java>:139: warning: [MissingCasesInEnumSwitch] Non-exhaustive switch; either add a default or handle the remaining cases: UNKNOWN
    switch (timing) {
    ^
    (see http://errorprone.info/bugpattern/MissingCasesInEnumSwitch)
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
20 warnings
Packing task ':beam-sdks-java-nexmark:compileJava'
:beam-sdks-java-nexmark:compileJava (Thread[main,5,main]) completed. Took 7.88 secs.
:beam-sdks-java-nexmark:processResources (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:processResources
Build cache key for task ':beam-sdks-java-nexmark:processResources' is a4d4fb4d073f6af4fc60751b415ce8ed
Caching disabled for task ':beam-sdks-java-nexmark:processResources': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:processResources' is not up-to-date because:
  No history is available.
:beam-sdks-java-nexmark:processResources (Thread[main,5,main]) completed. Took 0.002 secs.
:beam-sdks-java-nexmark:classes (Thread[main,5,main]) started.

> Task :beam-sdks-java-nexmark:classes
Skipping task ':beam-sdks-java-nexmark:classes' as it has no actions.
:beam-sdks-java-nexmark:classes (Thread[main,5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:shadowJar (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:shadowJar
Build cache key for task ':beam-sdks-java-nexmark:shadowJar' is 5e6776e071c9a116309ae63af912e426
Caching disabled for task ':beam-sdks-java-nexmark:shadowJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:shadowJar' is not up-to-date because:
  No history is available.
*******************
GRADLE SHADOW STATS

Total Jars: 2 (includes project)
Total Time: 1.839s [1839ms]
Average Time/Jar: 0.9195s [919.5ms]
*******************
:beam-sdks-java-nexmark:shadowJar (Thread[Task worker for ':',5,main]) completed. Took 2.06 secs.
:beam-sdks-java-nexmark:compileTestJava (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:compileTestJava
Build cache key for task ':beam-sdks-java-nexmark:compileTestJava' is 9331d85394440dc29e7a1bf0824cf9d7
Task ':beam-sdks-java-nexmark:compileTestJava' is not up-to-date because:
  No history is available.
Custom actions are attached to task ':beam-sdks-java-nexmark:compileTestJava'.
All input files are considered out-of-date for incremental task ':beam-sdks-java-nexmark:compileTestJava'.
Compiling with error-prone compiler
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation': class file for edu.umd.cs.findbugs.annotations.DefaultAnnotation not found
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/testing/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/values/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/schemas/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/transforms/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/io/google-cloud-platform/build/libs/beam-sdks-java-io-google-cloud-platform-2.5.0-SNAPSHOT.jar(/org/apache/beam/sdk/io/package-info.class)>: warning: Cannot find annotation method 'value()' in type 'DefaultAnnotation'
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:49: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:55: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery5Test.java>:61: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<AuctionCount> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<AuctionCount> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:41: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Person> PEOPLE = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Person> PEOPLE = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:48: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Auction> AUCTIONS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Auction> AUCTIONS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:60: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> PEOPLE_AND_AUCTIONS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> PEOPLE_AND_AUCTIONS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery3Test.java>:78: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<NameCityStateId> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<NameCityStateId> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:46: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:53: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery7Test.java>:60: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  public static final List<Bid> RESULTS = ImmutableList.of(
                          ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'public static final ImmutableList<Bid> RESULTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:44: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Bid> BIDS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Bid> BIDS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:54: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<Event> BIDS_EVENTS = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<Event> BIDS_EVENTS = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:64: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<AuctionPrice> BIDS_EVEN = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<AuctionPrice> BIDS_EVEN = ImmutableList.of('?
<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/sql/SqlQuery2Test.java>:70: warning: [MutableConstantField] Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List)
  private static final List<AuctionPrice> BIDS_EVERY_THIRD = ImmutableList.of(
                           ^
    (see http://errorprone.info/bugpattern/MutableConstantField)
  Did you mean 'private static final ImmutableList<AuctionPrice> BIDS_EVERY_THIRD = ImmutableList.of('?
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
20 warnings
Packing task ':beam-sdks-java-nexmark:compileTestJava'
:beam-sdks-java-nexmark:compileTestJava (Thread[Task worker for ':',5,main]) completed. Took 3.25 secs.
:beam-sdks-java-nexmark:processTestResources (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:processTestResources NO-SOURCE
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
Skipping task ':beam-sdks-java-nexmark:processTestResources' as it has no source files and no previous output files.
:beam-sdks-java-nexmark:processTestResources (Thread[Task worker for ':',5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:testClasses (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:testClasses
Skipping task ':beam-sdks-java-nexmark:testClasses' as it has no actions.
:beam-sdks-java-nexmark:testClasses (Thread[Task worker for ':',5,main]) completed. Took 0.0 secs.
:beam-sdks-java-nexmark:shadowTestJar (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:shadowTestJar
Build cache key for task ':beam-sdks-java-nexmark:shadowTestJar' is dd66d8befed028de08ae1e2a5f735d63
Caching disabled for task ':beam-sdks-java-nexmark:shadowTestJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:shadowTestJar' is not up-to-date because:
  No history is available.
*******************
GRADLE SHADOW STATS

Total Jars: 2 (includes project)
Total Time: 1.929s [1929ms]
Average Time/Jar: 0.9645s [964.5ms]
*******************
:beam-sdks-java-nexmark:shadowTestJar (Thread[Task worker for ':',5,main]) completed. Took 1.978 secs.
:beam-sdks-java-nexmark:sourcesJar (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:sourcesJar
Build cache key for task ':beam-sdks-java-nexmark:sourcesJar' is a2ef1bb8cedbae3e6c65544e484628b5
Caching disabled for task ':beam-sdks-java-nexmark:sourcesJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:sourcesJar' is not up-to-date because:
  No history is available.
:beam-sdks-java-nexmark:sourcesJar (Thread[Task worker for ':',5,main]) completed. Took 0.024 secs.
:beam-sdks-java-nexmark:testSourcesJar (Thread[Task worker for ':',5,main]) started.

> Task :beam-sdks-java-nexmark:testSourcesJar
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
Build cache key for task ':beam-sdks-java-nexmark:testSourcesJar' is ad9b635fcbaa70567f99174bbb259d91
Caching disabled for task ':beam-sdks-java-nexmark:testSourcesJar': Caching has not been enabled for the task
Task ':beam-sdks-java-nexmark:testSourcesJar' is not up-to-date because:
  No history is available.
file or directory '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/sdks/java/nexmark/src/test/resources',> not found
:beam-sdks-java-nexmark:testSourcesJar (Thread[Task worker for ':',5,main]) completed. Took 0.006 secs.

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':beam-runners-local-java-core:javadoc'.
> Javadoc generation failed. Generated Javadoc options file (useful for troubleshooting): '<https://builds.apache.org/job/beam_Release_Gradle_NightlySnapshot/ws/src/runners/local-java/build/tmp/javadoc/javadoc.options'>

* Try:
Run with --stacktrace option to get the stack trace. Run with --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 5.0.
See https://docs.gradle.org/4.7/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 17m 36s
582 actionable tasks: 577 executed, 5 from cache

Publishing build scan...
https://gradle.com/s/6dm65xjp7bosg

Build cache (/home/jenkins/.gradle/caches/build-cache-1) remove files older than Wed Apr 25 07:00:13 UTC 2018.
Build cache (/home/jenkins/.gradle/caches/build-cache-1) cleaned up in 0.013 secs.
Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure
Not sending mail to unregistered user aljoscha.krettek@gmail.com
Not sending mail to unregistered user apilloud@google.com
Not sending mail to unregistered user pgerver@us.ibm.com
Not sending mail to unregistered user szewinho@gmail.com
Not sending mail to unregistered user katarzyna.kucharczyk@polidea.com
Not sending mail to unregistered user ekirpichov@gmail.com
Not sending mail to unregistered user github@alasdairhodge.co.uk
Not sending mail to unregistered user swegner@google.com
Not sending mail to unregistered user herohde@google.com
Not sending mail to unregistered user kedin@google.com
Not sending mail to unregistered user relax@relax-macbookpro2.roam.corp.google.com
Not sending mail to unregistered user sidhom@google.com
Not sending mail to unregistered user aromanenko.dev@gmail.com
Not sending mail to unregistered user wcn@google.com
Not sending mail to unregistered user aaltay@gmail.com
Not sending mail to unregistered user kirpichov@google.com
Not sending mail to unregistered user rober@frantil.com
Not sending mail to unregistered user ankurgoenka@gmail.com