Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DROOLS-7480] Persist info to identify which activation is fired or not #5466

Merged
merged 1 commit into from
Aug 31, 2023

Conversation

tkobayas
Copy link
Contributor

  • WIP

JIRA:
https://issues.redhat.com/browse/DROOLS-7480

How to replicate CI configuration locally?

Build Chain tool does "simple" maven build(s), the builds are just Maven commands, but because the repositories relates and depends on each other and any change in API or class method could affect several of those repositories there is a need to use build-chain tool to handle cross repository builds and be sure that we always use latest version of the code for each repository.

build-chain tool is a build tool which can be used on command line locally or in Github Actions workflow(s), in case you need to change multiple repositories and send multiple dependent pull requests related with a change you can easily reproduce the same build by executing it on Github hosted environment or locally in your development environment. See local execution details to get more information about it.

How to retest this PR or trigger a specific build:
  • for pull request checks
    Please add comment: Jenkins retest this

  • for a specific pull request check
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] tests

  • for a full downstream build

    • for jenkins job: please add comment: Jenkins run fdb
    • for github actions job: add the label run_fdb
  • a compile downstream build please add comment: Jenkins run cdb

  • a full production downstream build please add comment: Jenkins execute product fdb

  • an upstream build please add comment: Jenkins run upstream

  • for quarkus branch checks
    Run checks against Quarkus current used branch
    Please add comment: Jenkins run quarkus-branch

  • for a quarkus branch specific check
    Run checks against Quarkus current used branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-branch

  • for quarkus main checks
    Run checks against Quarkus main branch
    Please add comment: Jenkins run quarkus-main

  • for a specific quarkus main check
    Run checks against Quarkus main branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-main

  • for quarkus lts checks
    Run checks against Quarkus lts branch
    Please add comment: Jenkins run quarkus-lts

  • for a specific quarkus lts check
    Run checks against Quarkus lts branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] quarkus-lts

  • for native checks
    Run native checks
    Please add comment: Jenkins run native

  • for a specific native check
    Run native checks
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] native

  • for native lts checks
    Run native checks against quarkus lts branch
    Please add comment: Jenkins run native-lts

  • for a specific native lts check
    Run native checks against quarkus lts branch
    Please add comment: Jenkins (re)run [drools|kogito-runtimes|kogito-apps|kogito-examples] native-lts

How to backport a pull request to a different branch?

In order to automatically create a backporting pull request please add one or more labels having the following format backport-<branch-name>, where <branch-name> is the name of the branch where the pull request must be backported to (e.g., backport-7.67.x to backport the original PR to the 7.67.x branch).

NOTE: backporting is an action aiming to move a change (usually a commit) from a branch (usually the main one) to another one, which is generally referring to a still maintained release branch. Keeping it simple: it is about to move a specific change or a set of them from one branch to another.

Once the original pull request is successfully merged, the automated action will create one backporting pull request per each label (with the previous format) that has been added.

If something goes wrong, the author will be notified and at this point a manual backporting is needed.

NOTE: this automated backporting is triggered whenever a pull request on main branch is labeled or closed, but both conditions must be satisfied to get the new PR created.

Comment on lines +48 to +66
private static String getActivationKey(Match match, Map<Long, Long> factHandleIdMap) {
if (!(match instanceof RuleTerminalNodeLeftTuple)) {
throw new ReliabilityRuntimeException("getActivationKey doesn't support " + match.getClass());
}
RuleTerminalNodeLeftTuple ruleTerminalNodeLeftTuple = (RuleTerminalNodeLeftTuple) match;
String packageName = ruleTerminalNodeLeftTuple.getRule().getPackageName();
String ruleName = ruleTerminalNodeLeftTuple.getRule().getName();
List<FactHandle> factHandles = ruleTerminalNodeLeftTuple.getFactHandles();
List<Long> factHandleIdList = factHandles.stream()
.map(FactHandle::getId)
.map(handleId -> {
if (factHandleIdMap != null) {
return factHandleIdMap.get(handleId); // replace new id with old id
} else {
return handleId; // don't replace
}
})
.collect(Collectors.toList());
return "ActivationKey [packageName=" + packageName + ", ruleName=" + ruleName + ", factHandleIdList=" + factHandleIdList + "]";
Copy link
Contributor Author

@tkobayas tkobayas Aug 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't simply serialize an activation (= RuleTerminalNodeLeftTuple) because it's finally connected to RuleImpl which we don't want to serialize.

In order to identify a unique activation, I use packageName, ruleName and factHandleId list (= the order is from top node to bottom node. Returned by ruleTerminalNodeLeftTuple.getFactHandles()). Is it unique enough? If you think of any suspicious use cases, please let me know. I'll add more test cases. Or feel free to share any thoughts on this approach, thanks! @mariofusco

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this should be fine.

Comment on lines +134 to +149
public void matchCreated(MatchCreatedEvent event) {
session.getActivationsStorage().put(ReliabilityUtils.getActivationKey(event.getMatch()), true);
}

@Override
public void matchCancelled(MatchCancelledEvent event) {
session.getActivationsStorage().remove(ReliabilityUtils.getActivationKey(event.getMatch()));
}

@Override
public void afterMatchFired(AfterMatchFiredEvent event) {
session.getActivationsStorage().remove(ReliabilityUtils.getActivationKey(event.getMatch()));
}
Copy link
Contributor Author

@tkobayas tkobayas Aug 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

activationKey is added when an activation is created. activationKey is removed when the activation is cancelled or fired. If the storage has an activationKey, it means the activation is not yet fired.

If I took an opposite approach (= add fired activationKey) , the storage could be piled up.

Comment on lines +89 to +95
Map<Long, Long> factHandleIdMap = new HashMap<>();
propagated.forEach((oldFactHandleId, storedObject) -> {
long newFactHandleId = storedObject.repropagate(ep);
factHandleIdMap.put(newFactHandleId, oldFactHandleId);
});
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This newFactHandleId -> oldFactHandleId mapping is required to resolve activationsStorage.containsKey() because the same object may have different factHandleId across fail-over.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 16, 2023

(tests) - kogito-runtimes job #1611 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5466 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1611/display/redirect

Test results:

  • PASSED: 3335
  • FAILED: 1

Those are the test failures:

org.kie.kogito.quarkus.serverless.workflow.deployment.livereload.LiveReloadProcessorTest.testGrpc 1 expectation failed.
Expected status code <201> but was <500>.

See console log:

Console Logs [2023-08-16T11:04:22.332Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.038 s]
[2023-08-16T11:04:22.332Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.373 s]
[2023-08-16T11:04:22.332Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.049 s]
[2023-08-16T11:04:22.332Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.061 s]
[2023-08-16T11:04:22.332Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.779 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.275 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.087 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 3.823 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.851 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.278 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.742 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.118 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 9.158 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.016 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.142 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.618 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.304 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.127 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.286 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 56.283 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.202 s]
[2023-08-16T11:04:22.333Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [15:44 min]
[2023-08-16T11:04:22.333Z] [INFO] ------------------------------------------------------------------------
[2023-08-16T11:04:22.333Z] [INFO] BUILD FAILURE
[2023-08-16T11:04:22.333Z] [INFO] ------------------------------------------------------------------------
[2023-08-16T11:04:22.333Z] [INFO] Total time: 59:34 min
[2023-08-16T11:04:22.333Z] [INFO] Finished at: 2023-08-16T07:04:21-04:00
[2023-08-16T11:04:22.333Z] [INFO] ------------------------------------------------------------------------
[2023-08-16T11:04:22.333Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-16T11:04:22.333Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.333Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.333Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-16T11:04:22.333Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.333Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.333Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-16T11:04:22.333Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-16T11:04:22.333Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.333Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.333Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.333Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.333Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.333Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.333Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.333Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-16T11:04:22.333Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-16T11:04:22.334Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.334Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.334Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-16T11:04:22.334Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.334Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.334Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.334Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.334Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.334Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.334Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-16T11:04:22.334Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-16T11:04:22.334Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-16T11:04:22.334Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-16T11:04:22.334Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-16T11:04:22.334Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-16T11:04:22.335Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-16T11:04:22.335Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-16T11:04:22.335Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-16T11:04:22.335Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-16T11:04:22.335Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-16T11:04:22.335Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-16T11:04:22.335Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-16T11:04:22.335Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-16T11:04:22.335Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-16T11:04:22.335Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-16T11:04:22.335Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-16T11:04:22.335Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-16T11:04:22.335Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-16T11:04:22.335Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-16T11:04:22.335Z] [ERROR]
[2023-08-16T11:04:22.335Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-16T11:04:22.335Z] [ERROR]
[2023-08-16T11:04:22.335Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-16T11:04:22.335Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-16T11:04:22.335Z] [ERROR]
[2023-08-16T11:04:22.335Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-16T11:04:22.335Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-16T11:04:22.335Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-16T11:04:22.335Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-16T11:04:22.335Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-16T11:04:22.335Z] [INFO] OK [Executed in 0.166592 ms]
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-16T11:04:22.335Z] [INFO] OK [Executed in 6.546216 ms]
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-16T11:04:22.335Z] [INFO] OK [Executed in 4.918394 ms]
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config1803511847295789684tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-16T11:04:22.335Z] [INFO] NOT OK [Executed in 3575129.517263 ms]
[2023-08-16T11:04:22.335Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] # Uploading artifacts
[2023-08-16T11:04:22.335Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-16T11:04:22.335Z]
[2023-08-16T11:04:22.335Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-16T11:04:22.335Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config1803511847295789684tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-16T11:04:22.335Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-16T11:04:22.414Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-16T11:04:22.831Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-16T11:04:23.111Z] Recording test results
[2023-08-16T11:04:26.502Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-16T11:04:26.526Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-16T11:04:28.026Z] + rm -rf console.log
[Pipeline] sh
[2023-08-16T11:04:28.317Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1611/consoleText
[2023-08-16T11:04:28.317Z] + tail -n 300

@tkobayas tkobayas force-pushed the DROOLS-7480-persist-activation branch from dbb5299 to 70944a9 Compare August 17, 2023 03:43
@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 17, 2023

(tests) - kogito-runtimes job #1621 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5466 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1621/display/redirect

Test results:

  • PASSED: 3335
  • FAILED: 1

Those are the test failures:

org.kie.kogito.quarkus.serverless.workflow.deployment.livereload.LiveReloadProcessorTest.testGrpc 1 expectation failed.
Expected status code <201> but was <500>.

See console log:

Console Logs [2023-08-17T04:32:14.697Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.035 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.380 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.050 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.062 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.793 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.281 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.096 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 3.789 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.795 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.222 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.826 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.121 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.653 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.017 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.111 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.618 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.299 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.119 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.262 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 53.625 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.002 s]
[2023-08-17T04:32:14.697Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:12 min]
[2023-08-17T04:32:14.697Z] [INFO] ------------------------------------------------------------------------
[2023-08-17T04:32:14.697Z] [INFO] BUILD FAILURE
[2023-08-17T04:32:14.697Z] [INFO] ------------------------------------------------------------------------
[2023-08-17T04:32:14.697Z] [INFO] Total time: 43:02 min
[2023-08-17T04:32:14.697Z] [INFO] Finished at: 2023-08-17T00:32:13-04:00
[2023-08-17T04:32:14.697Z] [INFO] ------------------------------------------------------------------------
[2023-08-17T04:32:14.697Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-17T04:32:14.697Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.697Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.697Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-17T04:32:14.697Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-17T04:32:14.697Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-17T04:32:14.697Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.697Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.697Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.697Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.697Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.697Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.697Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.698Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-17T04:32:14.698Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.698Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.698Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-17T04:32:14.698Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.698Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.698Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.698Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.698Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.698Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.698Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-17T04:32:14.698Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-17T04:32:14.698Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-17T04:32:14.698Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-17T04:32:14.698Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-17T04:32:14.698Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-17T04:32:14.698Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-17T04:32:14.698Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.698Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.699Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.699Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-17T04:32:14.699Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-17T04:32:14.699Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-17T04:32:14.699Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-17T04:32:14.699Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-17T04:32:14.699Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-17T04:32:14.699Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-17T04:32:14.699Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-17T04:32:14.699Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-17T04:32:14.699Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-17T04:32:14.699Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-17T04:32:14.699Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-17T04:32:14.699Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-17T04:32:14.699Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-17T04:32:14.699Z] [ERROR]
[2023-08-17T04:32:14.699Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-17T04:32:14.699Z] [ERROR]
[2023-08-17T04:32:14.699Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-17T04:32:14.699Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-17T04:32:14.699Z] [ERROR]
[2023-08-17T04:32:14.699Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-17T04:32:14.699Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-17T04:32:14.953Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-17T04:32:14.953Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-17T04:32:14.953Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-17T04:32:14.953Z] [INFO] OK [Executed in 0.171762 ms]
[2023-08-17T04:32:14.953Z]
[2023-08-17T04:32:14.953Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-17T04:32:14.953Z] [INFO] OK [Executed in 7.804519 ms]
[2023-08-17T04:32:14.953Z]
[2023-08-17T04:32:14.953Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-17T04:32:14.953Z] [INFO] OK [Executed in 9.148771 ms]
[2023-08-17T04:32:14.953Z]
[2023-08-17T04:32:14.954Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12363928677536541263tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-17T04:32:14.954Z] [INFO] NOT OK [Executed in 2583326.267343 ms]
[2023-08-17T04:32:14.954Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-17T04:32:14.954Z]
[2023-08-17T04:32:14.954Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-17T04:32:14.954Z]
[2023-08-17T04:32:14.954Z] # Uploading artifacts
[2023-08-17T04:32:14.954Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-17T04:32:14.954Z]
[2023-08-17T04:32:14.954Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-17T04:32:14.954Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config12363928677536541263tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-17T04:32:14.954Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-17T04:32:15.024Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T04:32:15.432Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-17T04:32:15.701Z] Recording test results
[2023-08-17T04:32:18.615Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-17T04:32:18.635Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T04:32:20.095Z] + rm -rf console.log
[Pipeline] sh
[2023-08-17T04:32:20.383Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1621/consoleText
[2023-08-17T04:32:20.383Z] + tail -n 300

Storage<String, Object> activationsStorage = ((ReliableKieSession)session).getActivationsStorage();
session.fireAllRules(match -> {
String activationKey = ReliabilityUtils.getActivationKeyReplacingNewIdWithOldId(match, factHandleIdMap);
if (activationsStorage.containsKey(activationKey)) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Calling activationStorage.containsKey() may have a performance impact. We may get a keySet beforehand and use it in the AgendaFilter.

Copy link
Contributor

@mariofusco mariofusco left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This pull request is ok for me, I cannot find any better or easier implementation. My only concern is about its eventual performances impact that could be simply wasteful in most use cases (at the moment I don't see in which situation it could be necessary for Ansible integration for instance), so my suggestion is to measure it before merging. If the performance penalty is, let's say, below 10% in our benchmarks we can merge it as it is, otherwise I'd suggest to also enable it on demand via option as we already did with other similar features.

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 25, 2023

(tests) - kogito-runtimes job #1646 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5466 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1646/display/redirect

Test results:

  • PASSED: 3350
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-25T08:20:15.541Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.034 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.354 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.040 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.052 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.768 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.296 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.104 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.019 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.878 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.221 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.802 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.121 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.171 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.017 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.115 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.565 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.261 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.133 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.244 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 53.404 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.273 s]
[2023-08-25T08:20:15.541Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:15 min]
[2023-08-25T08:20:15.541Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T08:20:15.541Z] [INFO] BUILD FAILURE
[2023-08-25T08:20:15.542Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T08:20:15.542Z] [INFO] Total time: 43:10 min
[2023-08-25T08:20:15.542Z] [INFO] Finished at: 2023-08-25T04:20:14-04:00
[2023-08-25T08:20:15.542Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T08:20:15.542Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-25T08:20:15.542Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.542Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.542Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T08:20:15.542Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.542Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.542Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T08:20:15.542Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.542Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.542Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.542Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.542Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.542Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.542Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.542Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T08:20:15.542Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T08:20:15.542Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T08:20:15.543Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.543Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.543Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T08:20:15.543Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.543Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.543Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.543Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.543Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.543Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.543Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T08:20:15.543Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T08:20:15.543Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T08:20:15.543Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T08:20:15.543Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T08:20:15.543Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T08:20:15.544Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T08:20:15.544Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T08:20:15.544Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T08:20:15.544Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T08:20:15.544Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T08:20:15.544Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T08:20:15.544Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T08:20:15.544Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T08:20:15.544Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T08:20:15.544Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T08:20:15.544Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T08:20:15.544Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T08:20:15.544Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T08:20:15.544Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T08:20:15.544Z] [ERROR]
[2023-08-25T08:20:15.544Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-25T08:20:15.544Z] [ERROR]
[2023-08-25T08:20:15.544Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-25T08:20:15.544Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-25T08:20:15.544Z] [ERROR]
[2023-08-25T08:20:15.544Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-25T08:20:15.544Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-25T08:20:15.544Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-25T08:20:15.544Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-25T08:20:15.544Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-25T08:20:15.544Z] [INFO] OK [Executed in 0.182392 ms]
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-25T08:20:15.544Z] [INFO] OK [Executed in 4.965665 ms]
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-25T08:20:15.544Z] [INFO] OK [Executed in 4.242408 ms]
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config17198189472188720857tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-25T08:20:15.544Z] [INFO] NOT OK [Executed in 2591362.815763 ms]
[2023-08-25T08:20:15.544Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] # Uploading artifacts
[2023-08-25T08:20:15.544Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-25T08:20:15.544Z]
[2023-08-25T08:20:15.544Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-25T08:20:15.544Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config17198189472188720857tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-25T08:20:15.544Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-25T08:20:15.616Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T08:20:16.025Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-25T08:20:16.293Z] Recording test results
[2023-08-25T08:20:19.022Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-25T08:20:19.053Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T08:20:20.505Z] + rm -rf console.log
[Pipeline] sh
[2023-08-25T08:20:20.793Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1646/consoleText
[2023-08-25T08:20:20.793Z] + tail -n 300

@tkobayas tkobayas force-pushed the DROOLS-7480-persist-activation branch from 1cef22e to aab12f7 Compare August 25, 2023 08:42
@tkobayas
Copy link
Contributor Author

@mariofusco , I created PersistedSessionOption.ActivationStrategy and run InsertAndFireBenchmark. (https://github.com/tkobayas/kie-benchmarks/tree/DROOLS-7480-persist-activation)

Benchmark                    (factsNr)  (joinsNr)    (mode)  (rulesNr)  (useActivationKey)  (useSafepoints)  Mode  Cnt     Score   Error  Units
InsertAndFireBenchmark.test        100          1  EMBEDDED        192                true             true    ss  100   630.300 ± 5.180  ms/op
InsertAndFireBenchmark.test        100          1  EMBEDDED        192                true            false    ss  100  1274.065 ± 9.450  ms/op
InsertAndFireBenchmark.test        100          1  EMBEDDED        192               false             true    ss  100     7.635 ± 0.806  ms/op
InsertAndFireBenchmark.test        100          1  EMBEDDED        192               false            false    ss  100    12.630 ± 0.349  ms/op

This is horribly slow, because InsertAndFireBenchmark with joinsNr=1 fires 19200 times in one iteration.

Testing with joinsNr=0 which fires 192 times in one iteration,

Benchmark                    (factsNr)  (joinsNr)    (mode)  (rulesNr)  (useActivationKey)  (useSafepoints)  Mode  Cnt   Score   Error  Units
InsertAndFireBenchmark.test        100          0  EMBEDDED        192                true             true    ss  100   8.100 ± 0.250  ms/op
InsertAndFireBenchmark.test        100          0  EMBEDDED        192                true            false    ss  100  18.805 ± 0.476  ms/op
InsertAndFireBenchmark.test        100          0  EMBEDDED        192               false             true    ss  100   2.477 ± 0.288  ms/op
InsertAndFireBenchmark.test        100          0  EMBEDDED        192               false            false    ss  100   7.820 ± 0.295  ms/op

It's mitigated, but still slow.

Without safepoint, it's 140% slower. It's explanable because ActivationKey put/remove is executed more than inserting facts.

With safepoint, it's 220% slower. I think there is a room to optimize BatchingStorageDecorator.flush, because batchingRemoveSet.forEach(storage::remove) is a bottle-neck in this case, which is unnecessary.

Anyway, do you think it's worth merging (of course, disabled by default) or shall we suspend this approach?

@kie-ci4
Copy link
Contributor

kie-ci4 commented Aug 25, 2023

(tests) - kogito-runtimes job #1648 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/drools/main/.ci/buildchain-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/drools/pull/5466 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1648/display/redirect

Test results:

  • PASSED: 3350
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-25T09:39:02.531Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.040 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.414 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.055 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.067 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 2.908 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.313 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.110 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 4.230 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 1.942 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 5.558 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 1.955 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.134 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 8.904 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.022 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.130 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.567 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.257 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.192 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.282 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [ 59.786 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 4.314 s]
[2023-08-25T09:39:02.531Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [03:40 min]
[2023-08-25T09:39:02.531Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T09:39:02.531Z] [INFO] BUILD FAILURE
[2023-08-25T09:39:02.531Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T09:39:02.531Z] [INFO] Total time: 46:28 min
[2023-08-25T09:39:02.531Z] [INFO] Finished at: 2023-08-25T05:39:02-04:00
[2023-08-25T09:39:02.531Z] [INFO] ------------------------------------------------------------------------
[2023-08-25T09:39:02.531Z] [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application: Failed to bootstrap application in NORMAL mode: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT -> [Help 1]
[2023-08-25T09:39:02.531Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.quarkus:quarkus-maven-plugin:2.16.9.Final:build (default) on project kogito-addons-quarkus-knative-serving-integration-tests: Failed to build quarkus application
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.531Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.531Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.531Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.531Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.531Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.531Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to build quarkus application
[2023-08-25T09:39:02.531Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:170)
[2023-08-25T09:39:02.531Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T09:39:02.531Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.531Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.531Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.531Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.531Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.532Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.532Z] Caused by: org.apache.maven.plugin.MojoExecutionException: Failed to bootstrap application in NORMAL mode
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:252)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T09:39:02.532Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.532Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.532Z] Caused by: io.quarkus.bootstrap.resolver.maven.BootstrapMavenException: Failed to resolve artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:170)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T09:39:02.532Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.532Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.532Z] Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T09:39:02.532Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:425)
[2023-08-25T09:39:02.532Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T09:39:02.532Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T09:39:02.532Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T09:39:02.532Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T09:39:02.532Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T09:39:02.532Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.532Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.532Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.532Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.532Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.532Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.532Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.533Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.533Z] Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.kie.kogito:kogito-addons-quarkus-fabric8-kubernetes-service-catalog-deployment:jar:2.0.0-SNAPSHOT
[2023-08-25T09:39:02.533Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:415)
[2023-08-25T09:39:02.533Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:229)
[2023-08-25T09:39:02.533Z] at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:207)
[2023-08-25T09:39:02.533Z] at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact (DefaultRepositorySystem.java:262)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolveInternal (MavenArtifactResolver.java:165)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.MavenArtifactResolver.resolve (MavenArtifactResolver.java:159)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visitLeave (BuildDependencyGraphVisitor.java:141)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:92)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.BuildDependencyGraphVisitor.visit (BuildDependencyGraphVisitor.java:82)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.maven.ApplicationDependencyTreeResolver.resolve (ApplicationDependencyTreeResolver.java:210)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.buildAppModel (BootstrapAppModelResolver.java:321)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.doResolveModel (BootstrapAppModelResolver.java:286)
[2023-08-25T09:39:02.533Z] at io.quarkus.bootstrap.resolver.BootstrapAppModelResolver.resolveManagedModel (BootstrapAppModelResolver.java:165)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.doBootstrap (QuarkusBootstrapProvider.java:249)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapProvider$QuarkusMavenAppBootstrap.bootstrapApplication (QuarkusBootstrapProvider.java:300)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapProvider.bootstrapApplication (QuarkusBootstrapProvider.java:103)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:272)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapMojo.bootstrapApplication (QuarkusBootstrapMojo.java:268)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.BuildMojo.doExecute (BuildMojo.java:131)
[2023-08-25T09:39:02.533Z] at io.quarkus.maven.QuarkusBootstrapMojo.execute (QuarkusBootstrapMojo.java:154)
[2023-08-25T09:39:02.533Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2023-08-25T09:39:02.533Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2023-08-25T09:39:02.533Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:298)
[2023-08-25T09:39:02.533Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2023-08-25T09:39:02.533Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2023-08-25T09:39:02.533Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2023-08-25T09:39:02.533Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2023-08-25T09:39:02.533Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2023-08-25T09:39:02.533Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2023-08-25T09:39:02.533Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2023-08-25T09:39:02.533Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2023-08-25T09:39:02.533Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2023-08-25T09:39:02.533Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2023-08-25T09:39:02.533Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2023-08-25T09:39:02.533Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2023-08-25T09:39:02.533Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2023-08-25T09:39:02.533Z] [ERROR]
[2023-08-25T09:39:02.533Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-25T09:39:02.533Z] [ERROR]
[2023-08-25T09:39:02.533Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-25T09:39:02.533Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-25T09:39:02.533Z] [ERROR]
[2023-08-25T09:39:02.533Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-25T09:39:02.533Z] [ERROR] mvn -rf :kogito-addons-quarkus-knative-serving-integration-tests
[2023-08-25T09:39:02.788Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-25T09:39:02.788Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-25T09:39:02.788Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-25T09:39:02.788Z] [INFO] OK [Executed in 0.202981 ms]
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-25T09:39:02.788Z] [INFO] OK [Executed in 8.345193 ms]
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-25T09:39:02.788Z] [INFO] OK [Executed in 6.881688 ms]
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config683146914015495766tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-25T09:39:02.788Z] [INFO] NOT OK [Executed in 2789270.75946 ms]
[2023-08-25T09:39:02.788Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] [INFO] [AFTER] Skipped kiegroup/kogito-runtimes
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] # Uploading artifacts
[2023-08-25T09:39:02.788Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-25T09:39:02.788Z]
[2023-08-25T09:39:02.788Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-25T09:39:02.788Z] [ERROR] Failed to execute mvn clean install -Dfull -s /home/jenkins/workspace/KIE/drools/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config683146914015495766tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 dependency:tree -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-25T09:39:02.788Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-25T09:39:02.863Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T09:39:03.287Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-25T09:39:03.597Z] Recording test results
[2023-08-25T09:39:06.913Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-25T09:39:06.932Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-25T09:39:08.551Z] + rm -rf console.log
[Pipeline] sh
[2023-08-25T09:39:08.843Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/drools/job/main/job/pullrequest/job/drools.tests.downstream.kogito-runtimes/1648/consoleText
[2023-08-25T09:39:08.843Z] + tail -n 300

@mariofusco
Copy link
Contributor

Anyway, do you think it's worth merging (of course, disabled by default) or shall we suspend this approach?

I expected similar results (well maybe not THAT bad, but something like that anyway), so I believe it is ok to merge this work provided that this feature is disabled by default. I'm hoping that there is room to improve and maybe we could make this more bearable performance-wise, but for now let's merge it how it is and then we could do some profiling to check if and how we can do better.

- Introduce PersistedSessionOption.ActivationStrategy
- Code Smells
@tkobayas tkobayas force-pushed the DROOLS-7480-persist-activation branch from aab12f7 to 7cc5775 Compare August 31, 2023 09:11
@tkobayas
Copy link
Contributor Author

Fixed code smell and rebased

@tkobayas tkobayas marked this pull request as ready for review August 31, 2023 09:11
@tkobayas
Copy link
Contributor Author

@mariofusco Thanks, I flipped from draft to ready for review.

@sonarcloud
Copy link

sonarcloud bot commented Aug 31, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

95.0% 95.0% Coverage
0.0% 0.0% Duplication

@mariofusco mariofusco merged commit 40885db into apache:main Aug 31, 2023
19 of 28 checks passed
@tkobayas
Copy link
Contributor Author

tkobayas commented Sep 1, 2023

Filed https://issues.redhat.com/browse/DROOLS-7541 for performance improvement

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants