Hello, I don't know if this is the right place to be posting this, but I can't find anything to help me with this, so I must be missing something in the getting started instructions.
I am trying to run the Kogito-Examples services on a local ubuntu machine. I installed the JDK from the link on the Kogito - Getting Started Page, OpenJDK Runtime Environment Temurin-11.0.14.1+1 (build 11.0.14.1+1) and set JAVA_HOME accordingly. I Installed Maven 3.8.4.This seems to meet the requirements laid out in kogito-examples/kogito-quarkus-examples/process-quarkus-example/README.md however when I run
mvn clean compile quarkus:dev
I get ERROR [io.qua.dep.dev.IsolatedDevModeMain] (main) Failed to start quarkus: java.lang.RuntimeException: java.lang.RuntimeException: Failed to start quarkus
Which seems to be caused by Failed to load config value of type class java.lang.String for: kogito.data-index.url
And a suppressed error below that is java.util.NoSuchElementException: SRCFG00014: The config property kogito.data-index.url is required but it could not be found in any config source
To combat this I added
kogito.data-index.url=
http://localhost:8080/to src/main/resources/application.properties, which allows process-quarkus-example to run as expected.
However, When I try to run process-postgresql-persistence-quarkus with this added to the configuration, as well as the configurations necessary to point to the postgresql database I am running, the service runs, but when I try to send an API call, I get:
ERROR [org.kie.kog.qua.pro.dev.DataIndexEventPublisher] (vert.x-eventloop-thread-0) Failed to send message to Data Index: io.vertx.core.impl.NoStackTraceThrowable: Response status code 404 is not equal to 202
I have not been able to find any information on what the data-index is or what I need to do to make sure it is set up properly. Is there a place I can look for the proper configurations to get these examples running, or am I missing an assumed prerequisite?
Thank you for you help.