You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by "mertdotcc (via GitHub)" <gi...@apache.org> on 2023/03/29 23:04:42 UTC

[GitHub] [camel-k] mertdotcc opened a new issue, #4192: Startup times take way longer than advertised numbers

mertdotcc opened a new issue, #4192:
URL: https://github.com/apache/camel-k/issues/4192

   I have a brand new Kubernetes cluster running in GKE with more than enough resources allocated to it:
   <img width="1279" alt="image" src="https://user-images.githubusercontent.com/41954671/228684932-54618916-71c1-4b30-8c14-618af02a6a2d.png">
   
   I installed my operator using the following command:
   ```
   kamel install \
   --global \
   --registry gcr.io \
   --build-publish-strategy=Kaniko \
   --organization mert-personal-cluster \
   --registry-secret kaniko-secret \
   --maven-repository https://repo1.maven.org/maven2/ \
   --operator-resources requests.memory=4096Mi \
   --operator-resources limits.memory=4096Mi \
   --monitoring=true \
   --monitoring-port=8888 \
   --force \
   --namespace camel
   ```
   
   My `IntegrationPlatform` YAML:
   ```
   apiVersion: v1
   items:
   - apiVersion: camel.apache.org/v1
     kind: IntegrationPlatform
     metadata:
       annotations:
         camel.apache.org/operator.id: camel-k
       creationTimestamp: "2023-03-29T21:52:21Z"
       generation: 1
       labels:
         app: camel-k
       name: camel-k
       namespace: camel
       resourceVersion: "127494"
       uid: 512043c8-b7a9-44f3-ab15-c45cf5026770
     spec:
       build:
         maven:
           settings:
             configMapKeyRef:
               key: settings.xml
               name: camel-k-maven-settings
           settingsSecurity: {}
         publishStrategy: Kaniko
         registry:
           address: gcr.io
           organization: mert-personal-cluster
           secret: kaniko-secret
       kamelet: {}
       traits: {}
     status:
       build:
         PublishStrategyOptions:
           KanikoBuildCacheEnabled: "false"
           KanikoPersistentVolumeClaim: camel-k
         baseImage: docker.io/eclipse-temurin:11
         buildStrategy: pod
         maven:
           cliOptions:
           - -V
           - --no-transfer-progress
           - -Dstyle.color=never
           localRepository: /tmp/artifacts/m2
           settings:
             configMapKeyRef:
               key: settings.xml
               name: camel-k-maven-settings
         publishStrategy: Kaniko
         registry:
           address: gcr.io
           organization: mert-personal-cluster
           secret: kaniko-secret
         runtimeVersion: 1.17.0
         timeout: 5m0s
       cluster: Kubernetes
       conditions:
       - lastTransitionTime: "2023-03-29T21:55:16Z"
         lastUpdateTime: "2023-03-29T21:55:16Z"
         message: integration platform created
         reason: IntegrationPlatformCreated
         status: "True"
         type: Ready
       info:
         gitCommit: a62a06f7261436641850abcb1b2e01afafd4be3d
         goOS: linux
         goVersion: go1.18.10
         kanikoVersion: 0.17.1
       kamelet:
         repositories:
         - uri: none
       observedGeneration: 1
       phase: Ready
       version: 1.12.0
   kind: List
   metadata:
     resourceVersion: ""
   ```
   
   I have the following simple integration:
   ```
   // camel-k: language=java
   // camel-k: name=test-one
   
   import org.apache.camel.LoggingLevel;
   import org.apache.camel.builder.RouteBuilder;
   
   public class TestOne extends RouteBuilder {
   
       @Override
       public void configure() throws Exception {
   
           onException(Exception.class)
                   .handled(true)
                   .setHeader("CamelHttpResponseCode").constant("400")
                   .setBody().simple("resource:file:/etc/camel/resources/sample-error-response.json")
                   .log(LoggingLevel.ERROR, "exception", "${exception}").routeId("exception");
   
           // GET
           from("direct://mertGet").routeId("mertGet")
                   .log(LoggingLevel.INFO, "log-mertGet", "headers: ${headers}; body: ${body}")
                   .setBody().constant("resource:file:/etc/camel/resources/simple-body.json");
   
           // POST
           from("direct://mertPost").routeId("mertPost")
                   .log(LoggingLevel.INFO, "log-mertPost", "headers: ${headers}; body: ${body}");
       }
   }
   ```
   
   `sample-error-response.json`:
   ```
   {
     "status": "Invalid request",
     "message": "${exception}",
     "exchangeId": "${exchangeId}"
   }
   ```
   
   `simple-body.json`:
   ```
   {
     "message": "hey!"
   }
   ```
   
   `test-one-openapi.yaml`:
   ```
   openapi: 3.0.2
   info:
     title: test-one
     version: '1.0'
   servers:
     - url: /
   paths:
     /mert:
       get:
         responses:
           '200':
             content:
               application/json:
                 schema:
                   type: string
             description: default response description
         operationId: mertGet
       post:
         responses:
           '200':
             content:
               application/json:
                 schema:
                   type: string
             description: default response description
         operationId: mertPost
   components: {}
   ```
   
   I use the following `kamel run` command to deploy my integration:
   ```
   kamel run \
   --open-api file:./resources/test-one-openapi.yaml \
   --resource file:./resources/sample-error-response.json \
   --resource file:./resources/simple-body.json \
   --trait container.enabled=true \
   --trait container.request-cpu="250m" \
   --trait container.request-memory="256Mi" \
   --trait container.limit-cpu="500m" \
   --trait container.limit-memory="512Mi" \
   --trait health.enabled=true \
   --trait health.liveness-probe-enabled=true \
   --trait health.liveness-scheme="HTTP" \
   --trait health.liveness-initial-delay=0 \
   --trait health.liveness-timeout=60 \
   --trait health.liveness-period=60 \
   --trait health.liveness-success-threshold=1 \
   --trait health.liveness-failure-threshold=3 \
   --trait health.readiness-probe-enabled=true \
   --trait health.readiness-scheme="HTTP" \
   --trait health.readiness-initial-delay=0 \
   --trait health.readiness-timeout=60 \
   --trait health.readiness-period=60 \
   --trait health.readiness-success-threshold=1 \
   --trait health.readiness-failure-threshold=3 \
   TestOne.java
   ```
   
   `kubectl get it test-one -o yaml`:
   ```
   apiVersion: camel.apache.org/v1
   kind: Integration
   metadata:
     annotations:
       camel.apache.org/operator.id: camel-k
     creationTimestamp: "2023-03-29T22:36:35Z"
     generation: 2
     name: test-one
     namespace: camel
     resourceVersion: "165165"
     uid: fb8aff17-ee43-495c-a4ef-05184bf634bb
   spec:
     sources:
     - content: |
         // camel-k: language=java
         // camel-k: name=test-one
   
         import org.apache.camel.LoggingLevel;
         import org.apache.camel.builder.RouteBuilder;
   
         public class TestOne extends RouteBuilder {
   
             @Override
             public void configure() throws Exception {
   
                 onException(Exception.class)
                         .handled(true)
                         .setHeader("CamelHttpResponseCode").constant("400")
                         .setBody().simple("resource:file:/etc/camel/resources/sample-error-response.json")
                         .log(LoggingLevel.ERROR, "exception", "${exception}").routeId("exception");
   
                 // GET
                 from("direct://mertGet").routeId("mertGet")
                         .log(LoggingLevel.INFO, "log-mertGet", "headers: ${headers}; body: ${body}")
                         .setBody().constant("resource:file:/etc/camel/resources/simple-body.json");
   
                 // POST
                 from("direct://mertPost").routeId("mertPost")
                         .log(LoggingLevel.INFO, "log-mertPost", "headers: ${headers}; body: ${body}");
             }
         }
       name: TestOne.java
     traits:
       container:
         enabled: true
         limitCPU: 500m
         limitMemory: 512Mi
         requestCPU: 250m
         requestMemory: 256Mi
       health:
         enabled: true
         livenessFailureThreshold: 3
         livenessPeriod: 60
         livenessProbeEnabled: true
         livenessScheme: HTTP
         livenessSuccessThreshold: 1
         livenessTimeout: 60
         readinessFailureThreshold: 3
         readinessPeriod: 60
         readinessProbeEnabled: true
         readinessScheme: HTTP
         readinessSuccessThreshold: 1
         readinessTimeout: 60
       mount:
         resources:
         - configmap:cm-15ef73ecd868b05782e32fe7e8e33b571d0521d1/sample-error-response.json@/etc/camel/resources/sample-error-response.json
         - configmap:cm-c6e792ddc3805b007b5b5693bd30187da6feee0a/simple-body.json@/etc/camel/resources/simple-body.json
       openapi:
         configmaps:
         - cm-8c2d7badbd5efe8d7a3a339978469ad3934bcd73
   status:
     capabilities:
     - rest
     conditions:
     - firstTruthyTime: "2023-03-29T22:42:22Z"
       lastTransitionTime: "2023-03-29T22:42:22Z"
       lastUpdateTime: "2023-03-29T22:42:22Z"
       message: kit-cgibm95ubjic2g2ofurg
       reason: IntegrationKitAvailable
       status: "True"
       type: IntegrationKitAvailable
     - lastTransitionTime: "2023-03-29T22:42:22Z"
       lastUpdateTime: "2023-03-29T22:42:22Z"
       message: different controller strategy used (deployment)
       reason: CronJobNotAvailableReason
       status: "False"
       type: CronJobAvailable
     - firstTruthyTime: "2023-03-29T22:42:22Z"
       lastTransitionTime: "2023-03-29T22:42:22Z"
       lastUpdateTime: "2023-03-29T22:42:22Z"
       message: deployment name is test-one
       reason: DeploymentAvailable
       status: "True"
       type: DeploymentAvailable
     - firstTruthyTime: "2023-03-29T22:42:22Z"
       lastTransitionTime: "2023-03-29T22:42:22Z"
       lastUpdateTime: "2023-03-29T22:42:22Z"
       message: test-one(http/80) -> integration(http/8080)
       reason: ServiceAvailable
       status: "True"
       type: ServiceAvailable
     - firstTruthyTime: "2023-03-29T22:42:22Z"
       lastTransitionTime: "2023-03-29T22:42:22Z"
       lastUpdateTime: "2023-03-29T22:42:22Z"
       message: test-one() -> test-one(http)
       reason: IngressAvailable
       status: "True"
       type: ExposureAvailable
     - firstTruthyTime: "2023-03-29T22:46:02Z"
       lastTransitionTime: "2023-03-29T22:48:34Z"
       lastUpdateTime: "2023-03-29T22:48:34Z"
       message: 1/1 ready replicas
       reason: DeploymentReady
       status: "True"
       type: Ready
     dependencies:
     - camel:direct
     - mvn:org.apache.camel.k:camel-k-runtime
     - mvn:org.apache.camel.quarkus:camel-quarkus-java-joor-dsl
     - mvn:org.apache.camel.quarkus:camel-quarkus-microprofile-health
     - mvn:org.apache.camel.quarkus:camel-quarkus-platform-http
     - mvn:org.apache.camel.quarkus:camel-quarkus-rest
     - mvn:org.apache.camel.quarkus:camel-quarkus-xml-io-dsl
     digest: vhPc6mjHnjbm0gcV462wOtIpV7iYIn_77jI9WgqE6ORE
     generatedSources:
     - contentRef: test-one-openapi-000
       language: xml
       name: test-one-openapi.xml
     image: gcr.io/mert-personal-cluster/camel-k-kit-cgibm95ubjic2g2ofurg:149452
     integrationKit:
       name: kit-cgibm95ubjic2g2ofurg
       namespace: camel
     lastInitTimestamp: "2023-03-29T22:42:22Z"
     observedGeneration: 2
     phase: Running
     profile: Kubernetes
     replicas: 1
     runtimeProvider: quarkus
     runtimeVersion: 1.17.0
     selector: camel.apache.org/integration=test-one
     version: 1.12.0
   ```
   
   The builder pod starts:
   ![image](https://user-images.githubusercontent.com/41954671/228686139-b5e7b119-6276-4d37-b859-fad8bd771024.png)
   
   Then the build finishes and its status gets changed to `Completed`, as expected. My integration pod starts.
   ![image](https://user-images.githubusercontent.com/41954671/228686249-f1e4a554-efac-4e2e-b9c5-e7e4bbe76867.png)
   
   However when I check the logs, I see the following:
   ```
   exec java -Xmx269M -cp ./resources:/etc/camel/application.properties:/etc/camel/conf.d/_resources:/etc/camel/resources:/etc/camel/resources/sample-error-response.json:/etc/camel/resources/simple-body.json:/etc/camel/sources/TestOne.java:/etc/camel/sources/test-one-openapi.xml:dependencies/app/camel-k-integration-1.12.0.jar:dependencies/lib/boot/io.github.crac.org-crac-0.1.3.jar:dependencies/lib/boot/io.quarkus.quarkus-bootstrap-runner-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-development-mode-spi-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-vertx-latebound-mdc-provider-2.16.0.Final.jar:dependencies/lib/boot/io.smallrye.common.smallrye-common-io-1.13.2.jar:dependencies/lib/boot/org.glassfish.jakarta.json-1.1.6.jar:dependencies/lib/boot/org.graalvm.sdk.graal-sdk-22.3.0.jar:dependencies/lib/boot/org.jboss.logging.jboss-logging-3.5.0.Final.jar:dependencies/lib/boot/org.jboss.logmanager.jboss-logmanager-embedded-1.0.11.jar:dependencies/lib/boot/org.wildfly.
 common.wildfly-common-1.5.4.Final-format-001.jar:dependencies/lib/main/com.aayushatharva.brotli4j.brotli4j-1.8.0.jar:dependencies/lib/main/com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-annotations-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-core-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-databind-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.module.jackson-module-parameter-names-2.14.1.jar:dependencies/lib/main/com.github.mifmif.generex-1.0.2.jar:dependencies/lib/main/com.squareup.okhttp3.logging-interceptor-3.14.9.jar:dependencies/lib/main/com.squareup.okhttp3.okhttp-3.14.9.jar:dependencies/lib/main
 /com.squareup.okio.okio-1.17.2.jar:dependencies/lib/main/com.sun.activation.jakarta.activation-1.2.1.jar:dependencies/lib/main/dk.brics.automaton.automaton-1.11-8.jar:dependencies/lib/main/io.fabric8.kubernetes-client-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-httpclient-okhttp-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-admissionregistration-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apiextensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apps-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-autoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-batch-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-certificates-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-common-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-coordination-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-core-6.3.1
 .jar:dependencies/lib/main/io.fabric8.kubernetes-model-discovery-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-events-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-extensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-flowcontrol-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-gatewayapi-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-metrics-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-networking-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-node-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-policy-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-rbac-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-scheduling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-storageclass-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.open
 shift-model-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-clusterautoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-config-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-console-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-hive-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-installer-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machine-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machineconfig-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-miscellaneous-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-monitoring-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operatorhub-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-storageversionmigrator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-tuned-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-whereabouts-6
 .3.1.jar:dependencies/lib/main/io.fabric8.zjsonpatch-0.3.0.jar:dependencies/lib/main/io.netty.netty-buffer-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-haproxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http2-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-socks-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-common-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-proxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-native-unix-common-4.1.86.Final.jar:dependencies/lib
 /main/io.quarkus.arc.arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-core-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-credentials-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-fs-util-0.0.9.jar:dependencies/lib/main/io.quarkus.quarkus-jackson-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-jsonp-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-internal-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-logging-json-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-mutiny-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-netty-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-context-propag
 ation-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-health-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.security.quarkus-security-1.1.4.Final.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-annotation-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-classloader-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-constraint-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-expression-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-function-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-vertx-context-1.13.2.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-confi
 g-common-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-core-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-source-yaml-2.13.1.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-smallrye-context-propagation-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-core-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.vertx-mutiny-generator-2.30.1.jar
 :dependencies/lib/main/io.smallrye.smallrye-context-propagation-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-api-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-storage-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-fault-tolerance-vertx-5.6.0.jar:dependencies/lib/main/io.smallrye.smallrye-health-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-api-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-provided-checks-3.3.1.jar:dependencies/lib/main/io.vertx.vertx-auth-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-bridge-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-codegen-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-core-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-uri-template-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-common-4.3.7.jar:dependencies/lib/main/jakarta.annotation.jakarta.annotation-api-1.3.5.jar:dependencies/lib/mai
 n/jakarta.el.jakarta.el-api-3.0.3.jar:dependencies/lib/main/jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.jar:dependencies/lib/main/jakarta.inject.jakarta.inject-api-1.0.jar:dependencies/lib/main/jakarta.interceptor.jakarta.interceptor-api-1.2.5.jar:dependencies/lib/main/jakarta.transaction.jakarta.transaction-api-1.3.3.jar:dependencies/lib/main/org.apache.camel.camel-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-attachments-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-bean-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cloud-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cluster-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-componentdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-catalog-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-engine-3.20.1.jar:dependencies/li
 b/main/org.apache.camel.camel-core-languages-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-processor-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-reifier-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-direct-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-dsl-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-endpointdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-java-joor-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-kubernetes-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-main-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-management-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-config-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platfo
 rm-http-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-vertx-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-rest-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-tooling-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-json-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-vertx-common-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-api-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-support-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-runtime-1.17.0.jar:dependencies/lib/main/org.apache.camel
 .quarkus.camel-quarkus-attachments-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-bean-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-cloud-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-direct-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-java-joor-dsl-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-kubernetes-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-microprofile-health-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-platform-http-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-rest-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-bouncycastle-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-commons-logging-2.16.0.jar:dependencies/lib/main/
 org.apache.camel.quarkus.camel-quarkus-xml-io-dsl-2.16.0.jar:dependencies/lib/main/org.apache.commons.commons-compress-1.22.jar:dependencies/lib/main/org.bouncycastle.bcpkix-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcprov-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcutil-jdk15on-1.70.jar:dependencies/lib/main/org.eclipse.microprofile.config.microprofile-config-api-2.0.1.jar:dependencies/lib/main/org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.jar:dependencies/lib/main/org.eclipse.microprofile.health.microprofile-health-api-3.1.jar:dependencies/lib/main/org.javassist.javassist-3.26.0-GA.jar:dependencies/lib/main/org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final.jar:dependencies/lib/main/org.jboss.logging.jboss-logging-annotations-2.2.1.Final.jar:dependencies/lib/main/org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final.jar:dependencies/lib/main/org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final.j
 ar:dependencies/lib/main/org.jboss.threads.jboss-threads-3.4.3.Final.jar:dependencies/lib/main/org.jooq.joor-0.9.14.jar:dependencies/lib/main/org.reactivestreams.reactive-streams-1.0.3.jar:dependencies/lib/main/org.slf4j.slf4j-api-1.7.36.jar:dependencies/lib/main/org.yaml.snakeyaml-1.33.jar:dependencies/quarkus-app-dependencies.txt:dependencies/quarkus-run.jar:dependencies/quarkus/generated-bytecode.jar:dependencies/quarkus/quarkus-application.dat:dependencies/quarkus/transformed-bytecode.jar io.quarkus.bootstrap.runner.QuarkusEntryPoint
   2023-03-29 22:47:56,740 WARN  [io.qua.net.run.NettyRecorder] (Thread-0) Netty DefaultChannelId initialization (with io.netty.machineId system property set to 3e:f7:ad:02:38:81:22:d1) took more than a second
   2023-03-29 22:48:03,045 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   2023-03-29 22:48:03,137 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   2023-03-29 22:48:03,141 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   2023-03-29 22:48:03,746 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='TestOne', language='java', type='source', location='file:/etc/camel/sources/TestOne.java', }
   2023-03-29 22:48:18,441 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='test-one-openapi', language='xml', type='source', location='file:/etc/camel/sources/test-one-openapi.xml', }
   2023-03-29 22:48:22,039 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   2023-03-29 22:48:22,236 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   2023-03-29 22:48:22,237 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertGet (direct://mertGet)
   2023-03-29 22:48:22,237 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertPost (direct://mertPost)
   2023-03-29 22:48:22,238 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/mert)
   2023-03-29 22:48:22,238 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/mert)
   2023-03-29 22:48:22,239 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 1s997ms (build:0ms init:1s799ms start:198ms)
   2023-03-29 22:48:23,538 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 45.487s. Listening on: http://0.0.0.0:8080
   2023-03-29 22:48:23,538 INFO  [io.quarkus] (main) Profile prod activated.
   2023-03-29 22:48:23,539 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-microprofile-health, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, smallrye-health, vertex]
   ```
   
   What makes me scratch my head is: why does "Apache Camel 3.20.1 starts in less than 2 seconds, but then I have to wait for the Quarkus thing to run which takes 45 seconds... Why is that? Why that long? Am I missing a point? Is there a way to reduce this number?
   
   There isn't anything else running in my cluster that might have an effect on this. Only a `Prometheus` instance deployed.
   <img width="1279" alt="image" src="https://user-images.githubusercontent.com/41954671/228687047-02fa3691-b989-4fb7-8888-3d64acd891b3.png">
   
   My concern is that if this speed is expected, its only going to get worse when I enable Knative on this integration, then with Istio sidecars and all, the availability period will only increase...
   
   Open to any feedback and many thanks in advance!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489819460

   I think a good way to troubleshoot this is to try running a simple Camel Quarkus application directly on the cluster and verify if it takes the same amount of time. At this stage, it seems to me more a runtime (hence Camel Quarkus) problem, than a build/deploy time problem (where Camel K comes in play).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] christophd commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "christophd (via GitHub)" <gi...@apache.org>.
christophd commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489849912

   @mertdotcc The thing is your Docker/Minikube on Mac M1 uses linux/arm64 and Camel K only provides linux/amd64 image. Docker Images with the ARM64 tag run on the Mac M1 natively. If you run AMD64 images you will use some kind of emulation (basically Rosetta 2). You can run amd64 images on Mac M1, but they can cause performance issues.
   
   This is why there are multi arch images in Docker where you always automatically run the matching arch


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1561087993

   Hey John, thanks for the response! I tried the same approach without giving any CPU/MEM limits and it didn't have a significant impact on my issue.
   
   If I recall correctly, a process that used to take 25 seconds took something like 20-22 seconds. But it wasn't near the advertised 1-2 seconds benchmark, nor the sub-second territory.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1491542446

   > this one looks suspiciously time consuming...
   
   My exact reaction. šŸ„²
   
   I am 100% there is something wrong here. This simple process cannot take that long if everything is configured properly. I would be more than happy to provide you guys with more details about my cluster or all other steps I took. I can even give you temporary access to my personal cluster where this slow start-up time is happening (but to be honest, I recently experienced this slow start-up time in multiple different clusters all from different public cloud providers) so you could directly experiment on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489828392

   > @squakez Will do that! Do we have any readily-available examples somewhere?
   
   Sure, you can use any of the examples in Camel Quarkus: https://github.com/apache/camel-quarkus-examples
   About directly deploying bypassing Camel K, I think it can get a bit trickier and here is some reference: https://quarkus.io/guides/deploying-to-kubernetes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1492643145

   Do/would you guys have rather similar slow start-up times if you tried out exactly what I did? Is there anything you are suspicious of? This simply can't be the norm. I'd be more than happy to provide a reproducible.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1520208074

   Apart from the default base image eclipse:temurin that comes with version 1.12.0, I also tried the same flow with openjdk:slim but the startup times don't seem to show any improvements... Is this related to the version or any underlying dependencies that come with it?
   
   Running version 1.10.2 in an old cluster where the startup times are actually sub 2 seconds, but with version 1.12.0, I can't seem to get those advertised startup times...
   
   ```
   2023-04-24 12:51:46,653 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   2023-04-24 12:51:46,951 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   2023-04-24 12:51:46,957 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   2023-04-24 12:51:47,551 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='Integration', language='java', type='source', location='file:/etc/camel/sources/Integration.java', }
   2023-04-24 12:52:00,350 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='integration-openapi', language='xml', type='source', location='file:/etc/camel/sources/integration-openapi.xml', }
   2023-04-24 12:52:04,950 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   2023-04-24 12:52:05,151 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   2023-04-24 12:52:05,153 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started getById (direct://getById)
   2023-04-24 12:52:05,154 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started create (direct://create)
   2023-04-24 12:52:05,157 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/integration/abc/%Id%7D)
   2023-04-24 12:52:05,158 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/integration/abc)
   2023-04-24 12:52:05,163 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 1s807ms (build:0ms init:1s597ms start:210ms)
   2023-04-24 12:52:06,358 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 39.303s. Listening on: http://0.0.0.0:8080
   2023-04-24 12:52:06,447 INFO  [io.quarkus] (main) Profile prod activated. 
   2023-04-24 12:52:06,448 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-microprofile-health, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, smallrye-health, vertex]
   ```
   
   `Apache Camel 3.20.1 (camel-1) started in 1s807ms (build:0ms init:1s597ms start:210ms)` and `camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 39.303s` are contradicting with each other.
   
   Any help is appreciated as we can't run any complex logic in production with startup times this slow.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1490302403

   Thanks for all the responses! I will incorporate all the points you made and give back a status update!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1491008190

   @christophd I deployed the same integration from a Linux machine but it didn't make any significant difference in the startup times, JSYK.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] essobedo commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "essobedo (via GitHub)" <gi...@apache.org>.
essobedo commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1492260589

   Does anyone know why `camel-k-runtime` depends on `camel-quarkus-bean` and `camel-quarkus-kubernetes`? Do we really need a Kubernetes client for all integrations? 
   
   I'm asking that because I've profiled the startup of this particular integration and realized that there are 2 main hot spots which are the runtime compilation as expected but also the creation of the Kubernetes client, as you can see in the following screenshot:
   
   ![Capture dā€™eĢcran 2023-03-31 aĢ€ 18 49 54](https://user-images.githubusercontent.com/1618116/229182037-4b15e572-ebea-494f-a9cb-07d5bdaae030.png)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1520344271

   I am testing this locally and I cannot see any deviation from what we expect when we run it in JVM mode:
   ```
   [2] 2023-04-24 14:41:25,734 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   [2] 2023-04-24 14:41:25,753 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   [2] 2023-04-24 14:41:25,756 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   [2] 2023-04-24 14:41:25,798 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='TestOne', language='java', type='source', location='file:/etc/camel/sources/TestOne.java', }
   [2] 2023-04-24 14:41:26,698 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='test-one-openapi', language='xml', type='source', location='file:/etc/camel/sources/test-one-openapi.xml', }
   [2] 2023-04-24 14:41:27,006 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   [2] 2023-04-24 14:41:27,023 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   [2] 2023-04-24 14:41:27,023 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertGet (direct://mertGet)
   [2] 2023-04-24 14:41:27,023 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertPost (direct://mertPost)
   [2] 2023-04-24 14:41:27,024 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/mert)
   [2] 2023-04-24 14:41:27,024 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/mert)
   [2] 2023-04-24 14:41:27,024 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 140ms (build:0ms init:123ms start:17ms)
   [2] 2023-04-24 14:41:27,117 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 3.159s. Listening on: http://0.0.0.0:8080
   [2] 2023-04-24 14:41:27,118 INFO  [io.quarkus] (main) Profile prod activated. 
   [2] 2023-04-24 14:41:27,118 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, vertx]
   ```
   However, something strange happens when I am running in native mode (which is what you may be experiencing):
   ```
   [2] 2023-04-24 14:43:36,452 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   [2] 2023-04-24 14:43:36,966 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   [2] 2023-04-24 14:43:37,056 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   [2] 2023-04-24 14:43:37,356 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='TestOne', language='java', type='source', location='file:/etc/camel/sources/TestOne.java', }
   [2] 2023-04-24 14:43:50,771 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='test-one-openapi', language='xml', type='source', location='file:/etc/camel/sources/test-one-openapi.xml', }
   [2] 2023-04-24 14:43:53,956 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   [2] 2023-04-24 14:43:54,052 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   [2] 2023-04-24 14:43:54,053 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertGet (direct://mertGet)
   [2] 2023-04-24 14:43:54,053 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertPost (direct://mertPost)
   [2] 2023-04-24 14:43:54,054 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/mert)
   [2] 2023-04-24 14:43:54,055 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/mert)
   [2] 2023-04-24 14:43:54,056 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 1s396ms (build:0ms init:1s297ms start:99ms)
   [2] 2023-04-24 14:43:54,858 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 42.794s. Listening on: http://0.0.0.0:8080
   [2] 2023-04-24 14:43:54,858 INFO  [io.quarkus] (main) Profile prod activated. 
   [2] 2023-04-24 14:43:54,859 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-microprofile-health, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, smallrye-health, vertx]
   [1] 2023-04-24 14:50:56,071 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   [1] 2023-04-24 14:50:56,072 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   [1] 2023-04-24 14:50:56,072 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   [1] 2023-04-24 14:50:56,076 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='test-one-openapi', language='xml', type='source', location='file:/etc/camel/sources/test-one-openapi.xml', }
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertGet (direct://mertGet)
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertPost (direct://mertPost)
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/mert)
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/mert)
   [1] 2023-04-24 14:50:56,091 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 2ms (build:0ms init:2ms start:0ms)
   [1] 2023-04-24 14:50:56,152 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 native (powered by Quarkus 2.16.0.Final) started in 0.174s. Listening on: http://0.0.0.0:8080
   [1] 2023-04-24 14:50:56,152 INFO  [io.quarkus] (main) Profile prod activated. 
   [1] 2023-04-24 14:50:56,152 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-microprofile-health, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, smallrye-health, vertx]
   [2] 2023-04-24 14:50:56,430 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread) Apache Camel 3.20.1 (camel-1) is shutting down (timeout:45s)
   [2] 2023-04-24 14:50:56,463 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread) Routes stopped (stopped:4)
   [2] 2023-04-24 14:50:56,463 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread)     Stopped route2 (rest://post:/mert)
   [2] 2023-04-24 14:50:56,463 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread)     Stopped route1 (rest://get:/mert)
   [2] 2023-04-24 14:50:56,464 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread)     Stopped mertPost (direct://mertPost)
   [2] 2023-04-24 14:50:56,464 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread)     Stopped mertGet (direct://mertGet)
   [2] 2023-04-24 14:50:56,467 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (Shutdown thread) Apache Camel 3.20.1 (camel-1) shutdown in 36ms (uptime:7m2s)
   [2] 2023-04-24 14:50:56,856 INFO  [io.quarkus] (Shutdown thread) camel-k-integration stopped in 0.473s
   ```
   For some reason, the JVM mode was enabled forcefully (although it was not really required by my execution with `-t quarkus.package-type=native`). And it seems that the native execution does not start until the other JVM mode was started. I think we may have some kind of bug.
   
   @mertdotcc while we keep having a look, you may keep working on JVM mode only.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1520375255

   I start having the feeling that the problem is that we do not include the openapi generated route in the sources required at build time. Wdyt @essobedo ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] christophd commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "christophd (via GitHub)" <gi...@apache.org>.
christophd commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1508121875

   thanks @mertdotcc for making an effort to report and analyze
   
   What comes to my mind is that we have had to switch to eclipse:temurin as a runtime base image. Maybe this has some effect. (see https://github.com/apache/camel-k/pull/4003)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] christophd commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "christophd (via GitHub)" <gi...@apache.org>.
christophd commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489814884

   Are you running on a MacOS environment? I am running on a Mac M1 arm64 based system and experienced similar behavior when running the amd64 based Camel K image in my Minikube. From time to time I get weird startup behavior because of that.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] github-actions[bot] closed issue #4192: Startup times take way longer than advertised numbers

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] closed issue #4192: Startup times take way longer than advertised numbers
URL: https://github.com/apache/camel-k/issues/4192


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1560949552

   I already tried that approach with different clusters in all 3 major cloud providers, with different types of machines and disk options, even on my local system.
   
   Can this be an OpenShift vs Kubernetes related issue? That's the only option I haven't ruled out.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] essobedo commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "essobedo (via GitHub)" <gi...@apache.org>.
essobedo commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1490278975

   The only way to know for sure is by using a profiler but if I had to bet, I would say that the runtime compilation of the `RouteBuilder` classes in JVM mode should have a clear impact on the overall startup time. One simple way to get more info is to change the log level to Debug https://camel.apache.org/camel-k/1.12.x/observability/logging/integration.html#integration-logging-level


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1521285609

   The strange thing is that I managed somehow to replicate the issue when running in native mode, but, running it straight it did not. I will have a further look to understand it better. In the while, you may have a look at the IO operation on the disk used in the cluster, as, it seems to me, that this slowness happens when doing some disk operation. You may also retry to reset all kits and start it from scratch. However, I think that the situation where I managed to reproduce the problem is the real root cause, although I cannot understand yet why it is happening.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1508108122

   I was able to test some simple Camel-K examples or even some pure Camel Quarkus examples as @squakez suggested [here](https://github.com/apache/camel-k/issues/4192#issuecomment-1489828392). But my startup times are still nowhere near the sub 1-2 second mark.
   
   Can this be an issue due to the specific version I am using? I am using `1.12.0` with all these tests where the startup time is slow. However, I have an old cluster with Camel-K version `1.10.2` installed and when I deploy the same simple integrations, my startup times are sub 1-1,5 seconds, less than 1/10th of those with `1.12.0`.
   
   I would appreciate any help immensely as I don't want to downgrade my Camel-K version back to `1.10.2` (if the issue is indeed caused by some change that comes with `1.12.0`) as I am using so many features that `1.12.0` has that `1.10.2` doesn't.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


Re: [I] Startup times take way longer than advertised numbers [camel-k]

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez closed issue #4192: Startup times take way longer than advertised numbers
URL: https://github.com/apache/camel-k/issues/4192


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] johnpoth commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "johnpoth (via GitHub)" <gi...@apache.org>.
johnpoth commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1561082674

   I wonder if the memory/cpu limits set on the container have a role in this:
   
   ```
   kamel run ...
   --trait container.enabled=true \
   --trait container.request-cpu="250m" \
   --trait container.request-memory="256Mi" \
   --trait container.limit-cpu="500m" \
   --trait container.limit-memory="512Mi" \
   ```
   
   As I recall Quarkus can a bit memory/cpu intensive at times ...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] github-actions[bot] commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1689082678

   This issue has been automatically marked as stale due to 90 days of inactivity.
   It will be closed if no further activity occurs within 15 days.
   If you think thatā€™s incorrect or the issue should never stale, please simply write any comment.
   Thanks for your contributions!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] christophd commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "christophd (via GitHub)" <gi...@apache.org>.
christophd commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489851895

   I am not saying that this is definitely the root cause of the problem that you have described in this issue, but it may cause some weird behavior


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1490963960

   Here you go @essobedo
   
   ```
   exec java -Xmx269M -cp ./resources:/etc/camel/application.properties:/etc/camel/conf.d/_resources:/etc/camel/resources:/etc/camel/resources/sample-error-response.json:/etc/camel/resources/simple-body.json:/etc/camel/sources/TestOne.java:/etc/camel/sources/test-one-openapi.xml:dependencies/app/camel-k-integration-1.12.0.jar:dependencies/lib/boot/io.github.crac.org-crac-0.1.3.jar:dependencies/lib/boot/io.quarkus.quarkus-bootstrap-runner-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-development-mode-spi-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-vertx-latebound-mdc-provider-2.16.0.Final.jar:dependencies/lib/boot/io.smallrye.common.smallrye-common-io-1.13.2.jar:dependencies/lib/boot/org.glassfish.jakarta.json-1.1.6.jar:dependencies/lib/boot/org.graalvm.sdk.graal-sdk-22.3.0.jar:dependencies/lib/boot/org.jboss.logging.jboss-logging-3.5.0.Final.jar:dependencies/lib/boot/org.jboss.logmanager.jboss-logmanager-embedded-1.0.11.jar:dependencies/lib/boot/org.wildfly.
 common.wildfly-common-1.5.4.Final-format-001.jar:dependencies/lib/main/com.aayushatharva.brotli4j.brotli4j-1.8.0.jar:dependencies/lib/main/com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-annotations-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-core-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-databind-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.module.jackson-module-parameter-names-2.14.1.jar:dependencies/lib/main/com.github.mifmif.generex-1.0.2.jar:dependencies/lib/main/com.squareup.okhttp3.logging-interceptor-3.14.9.jar:dependencies/lib/main/com.squareup.okhttp3.okhttp-3.14.9.jar:dependencies/lib/main
 /com.squareup.okio.okio-1.17.2.jar:dependencies/lib/main/com.sun.activation.jakarta.activation-1.2.1.jar:dependencies/lib/main/dk.brics.automaton.automaton-1.11-8.jar:dependencies/lib/main/io.fabric8.kubernetes-client-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-httpclient-okhttp-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-admissionregistration-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apiextensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apps-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-autoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-batch-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-certificates-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-common-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-coordination-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-core-6.3.1
 .jar:dependencies/lib/main/io.fabric8.kubernetes-model-discovery-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-events-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-extensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-flowcontrol-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-gatewayapi-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-metrics-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-networking-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-node-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-policy-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-rbac-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-scheduling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-storageclass-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.open
 shift-model-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-clusterautoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-config-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-console-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-hive-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-installer-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machine-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machineconfig-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-miscellaneous-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-monitoring-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operatorhub-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-storageversionmigrator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-tuned-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-whereabouts-6
 .3.1.jar:dependencies/lib/main/io.fabric8.zjsonpatch-0.3.0.jar:dependencies/lib/main/io.netty.netty-buffer-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-haproxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http2-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-socks-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-common-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-proxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-native-unix-common-4.1.86.Final.jar:dependencies/lib
 /main/io.quarkus.arc.arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-core-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-credentials-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-fs-util-0.0.9.jar:dependencies/lib/main/io.quarkus.quarkus-jackson-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-jsonp-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-internal-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-logging-json-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-mutiny-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-netty-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-context-propag
 ation-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-health-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.security.quarkus-security-1.1.4.Final.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-annotation-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-classloader-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-constraint-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-expression-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-function-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-vertx-context-1.13.2.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-confi
 g-common-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-core-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-source-yaml-2.13.1.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-smallrye-context-propagation-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-core-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.vertx-mutiny-generator-2.30.1.jar
 :dependencies/lib/main/io.smallrye.smallrye-context-propagation-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-api-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-storage-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-fault-tolerance-vertx-5.6.0.jar:dependencies/lib/main/io.smallrye.smallrye-health-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-api-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-provided-checks-3.3.1.jar:dependencies/lib/main/io.vertx.vertx-auth-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-bridge-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-codegen-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-core-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-uri-template-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-common-4.3.7.jar:dependencies/lib/main/jakarta.annotation.jakarta.annotation-api-1.3.5.jar:dependencies/lib/mai
 n/jakarta.el.jakarta.el-api-3.0.3.jar:dependencies/lib/main/jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.jar:dependencies/lib/main/jakarta.inject.jakarta.inject-api-1.0.jar:dependencies/lib/main/jakarta.interceptor.jakarta.interceptor-api-1.2.5.jar:dependencies/lib/main/jakarta.transaction.jakarta.transaction-api-1.3.3.jar:dependencies/lib/main/org.apache.camel.camel-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-attachments-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-bean-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cloud-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cluster-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-componentdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-catalog-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-engine-3.20.1.jar:dependencies/li
 b/main/org.apache.camel.camel-core-languages-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-processor-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-reifier-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-direct-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-dsl-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-endpointdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-java-joor-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-kubernetes-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-main-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-management-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-config-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platfo
 rm-http-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-vertx-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-rest-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-tooling-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-json-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-vertx-common-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-api-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-support-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-runtime-1.17.0.jar:dependencies/lib/main/org.apache.camel
 .quarkus.camel-quarkus-attachments-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-bean-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-cloud-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-direct-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-java-joor-dsl-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-kubernetes-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-microprofile-health-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-platform-http-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-rest-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-bouncycastle-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-commons-logging-2.16.0.jar:dependencies/lib/main/
 org.apache.camel.quarkus.camel-quarkus-xml-io-dsl-2.16.0.jar:dependencies/lib/main/org.apache.commons.commons-compress-1.22.jar:dependencies/lib/main/org.bouncycastle.bcpkix-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcprov-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcutil-jdk15on-1.70.jar:dependencies/lib/main/org.eclipse.microprofile.config.microprofile-config-api-2.0.1.jar:dependencies/lib/main/org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.jar:dependencies/lib/main/org.eclipse.microprofile.health.microprofile-health-api-3.1.jar:dependencies/lib/main/org.javassist.javassist-3.26.0-GA.jar:dependencies/lib/main/org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final.jar:dependencies/lib/main/org.jboss.logging.jboss-logging-annotations-2.2.1.Final.jar:dependencies/lib/main/org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final.jar:dependencies/lib/main/org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final.j
 ar:dependencies/lib/main/org.jboss.threads.jboss-threads-3.4.3.Final.jar:dependencies/lib/main/org.jooq.joor-0.9.14.jar:dependencies/lib/main/org.reactivestreams.reactive-streams-1.0.3.jar:dependencies/lib/main/org.slf4j.slf4j-api-1.7.36.jar:dependencies/lib/main/org.yaml.snakeyaml-1.33.jar:dependencies/quarkus-app-dependencies.txt:dependencies/quarkus-run.jar:dependencies/quarkus/generated-bytecode.jar:dependencies/quarkus/quarkus-application.dat:dependencies/quarkus/transformed-bytecode.jar io.quarkus.bootstrap.runner.QuarkusEntryPoint
   2023-03-30 20:59:36,499 DEBUG [org.jbo.logging] (main) Logging Provider: org.jboss.logging.JBossLogManagerProvider
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-secrets-component: org.apache.camel.component.kubernetes.secrets.KubernetesSecretsComponentConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ConsulServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.ConsulServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/model/ServiceCallDefinition: org.apache.camel.impl.cloud.ServiceCallProcessorFactory
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.CachingServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.CachingServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-nodes-endpoint: org.apache.camel.component.kubernetes.nodes.KubernetesNodesEndpointConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-deployments-endpoint: org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsEndpointConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/healthy-service-filter: org.apache.camel.impl.cloud.HealthyServiceFilterFactory
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-resources-quota-endpoint: org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaEndpointConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-builds-endpoint: org.apache.camel.component.openshift.builds.OpenshiftBuildsEndpointConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/openshift-builds-endpoint: org.apache.camel.component.openshift.builds.OpenshiftBuildsEndpointUriFactory
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.processor.errorhandler.RedeliveryPolicy: org.apache.camel.processor.errorhandler.RedeliveryPolicyConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/platform-http-component: org.apache.camel.component.platform.http.PlatformHttpComponentConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-nodes-component: org.apache.camel.component.kubernetes.nodes.KubernetesNodesComponentConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/platform-http-engine: org.apache.camel.component.platform.http.vertx.VertxPlatformHttpEngine
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.GcpVaultConfigurationProperties: org.apache.camel.main.GcpVaultConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallServiceLoadBalancerConfiguration: org.apache.camel.model.cloud.ServiceCallServiceLoadBalancerConfigurationConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/https: org.apache.camel.impl.engine.DefaultResourceResolvers$HttpsResolver
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.HealthConfigurationProperties: org.apache.camel.main.HealthConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,607 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.DefaultServiceCallServiceLoadBalancerConfiguration: org.apache.camel.model.cloud.DefaultServiceCallServiceLoadBalancerConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition: org.apache.camel.k.SourceDefinitionConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/properties-source-factory: org.apache.camel.component.microprofile.config.CamelMicroProfilePropertiesSource
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/bean-proxy-factory: org.apache.camel.component.bean.DefaultBeanProxyFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-events-component: org.apache.camel.component.kubernetes.events.KubernetesEventsComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-deploymentconfigs-component: org.apache.camel.component.openshift.deploymentconfigs.OpenshiftDeploymentConfigsComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-persistent-volumes-endpoint: org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/rest-endpoint: org.apache.camel.component.rest.RestEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/health-check/consumers-repository: org.apache.camel.impl.health.ConsumersHealthCheckRepository
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-persistent-volumes-component: org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/class-endpoint: org.apache.camel.component.beanclass.ClassEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.MainConfigurationProperties: org.apache.camel.main.MainConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.CustomServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.CustomServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/rest-component: org.apache.camel.component.rest.RestComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-replication-controllers-endpoint: org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-build-configs-endpoint: org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/properties-function/secret: org.apache.camel.component.kubernetes.properties.SecretPropertiesFunction
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/io.fabric8.kubernetes.client.ConfigBuilder: io.fabric8.kubernetes.client.ConfigFluentImplConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/health-check/routes-repository: org.apache.camel.impl.health.RoutesHealthCheckRepository
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallConfiguration: org.apache.camel.model.cloud.ServiceCallConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-resources-quota-endpoint: org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/combined-service-discovery: org.apache.camel.impl.cloud.CombinedServiceDiscoveryFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.DnsServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.DnsServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-secrets-endpoint: org.apache.camel.component.kubernetes.secrets.KubernetesSecretsEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-config-maps-component: org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/annotation-processor-factory: org.apache.camel.processor.DefaultAnnotationBasedProcessorFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.ThreadPoolProfileConfigurationProperties: org.apache.camel.main.ThreadPoolProfileConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.vault.GcpVaultConfiguration: org.apache.camel.main.GcpVaultConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/rest-registry-factory: org.apache.camel.component.rest.DefaultRestRegistryFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/rest-api-endpoint: org.apache.camel.component.rest.RestApiEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.Resilience4jConfigurationDefinition: org.apache.camel.model.Resilience4jConfigurationDefinitionConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/file: org.apache.camel.impl.engine.DefaultResourceResolvers$FileResolver
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-events-endpoint: org.apache.camel.component.kubernetes.events.KubernetesEventsEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/combined-service-filter: org.apache.camel.impl.cloud.CombinedServiceFilterFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/ref: org.apache.camel.impl.engine.DefaultResourceResolvers$RefResolver
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-namespaces-endpoint: org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.vault.HashicorpVaultConfiguration: org.apache.camel.main.HashicorpVaultConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/processor-factory: org.apache.camel.processor.DefaultProcessorFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/routes-loader/java: org.apache.camel.dsl.java.joor.JavaRoutesBuilderLoader
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/ref: org.apache.camel.language.ref.RefLanguage
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/openshift-build-configs-endpoint: org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-pods-endpoint: org.apache.camel.component.kubernetes.pods.KubernetesPodsEndpointUriFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-replication-controllers-component: org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersComponentConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.HealthyServiceFilterFactory: org.apache.camel.impl.cloud.HealthyServiceFilterFactoryConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/class-endpoint: org.apache.camel.component.beanclass.ClassEndpointConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/tokenize: org.apache.camel.language.tokenizer.TokenizeLanguage
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/base64: org.apache.camel.impl.engine.DefaultResourceResolvers$Base64Resolver
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/defer-service-factory: org.apache.camel.processor.DefaultDeferServiceFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallExpressionConfiguration: org.apache.camel.model.cloud.ServiceCallExpressionConfigurationConfigurer
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/routes-loader/class: org.apache.camel.dsl.java.joor.ClassRoutesBuilderLoader
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/static-service-discovery: org.apache.camel.impl.cloud.StaticServiceDiscoveryFactory
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/transient-resume-strategy: org.apache.camel.processor.resume.TransientResumeStrategy
   2023-03-30 20:59:44,608 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.AzureVaultConfigurationProperties: org.apache.camel.main.AzureVaultConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-job-component: org.apache.camel.component.kubernetes.job.KubernetesJobComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/gzip: org.apache.camel.impl.engine.DefaultResourceResolvers$GzipResolver
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-custom-resources-endpoint: org.apache.camel.component.kubernetes.customresources.KubernetesCustomResourcesEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.PassThroughServiceFilterFactory: org.apache.camel.impl.cloud.PassThroughServiceFilterFactoryConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.CombinedServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.CombinedServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/properties-component-factory: org.apache.camel.component.properties.PropertiesComponent
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/class-component: org.apache.camel.component.beanclass.ClassComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.FaultToleranceConfigurationDefinition: org.apache.camel.model.FaultToleranceConfigurationDefinitionConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/direct-component: org.apache.camel.component.direct.DirectComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/constant: org.apache.camel.language.constant.ConstantLanguage
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-custom-resources-endpoint: org.apache.camel.component.kubernetes.customresources.KubernetesCustomResourcesEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.vault.AwsVaultConfiguration: org.apache.camel.main.AwsVaultConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.spi.RestConfiguration: org.apache.camel.impl.RestConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-build-configs-component: org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-job-endpoint: org.apache.camel.component.kubernetes.job.KubernetesJobEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-pods-endpoint: org.apache.camel.component.kubernetes.pods.KubernetesPodsEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/pass-through-service-filter: org.apache.camel.impl.cloud.PassThroughServiceFilterFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/rest-api-component: org.apache.camel.component.rest.RestApiComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-resources-quota-component: org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-events-endpoint: org.apache.camel.component.kubernetes.events.KubernetesEventsEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/bean-endpoint: org.apache.camel.component.bean.BeanEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/default-service-load-balancer: org.apache.camel.impl.cloud.DefaultServiceLoadBalancerFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/simple: org.apache.camel.language.simple.SimpleLanguage
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-config-maps-endpoint: org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/direct-endpoint: org.apache.camel.component.direct.DirectEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-hpa-endpoint: org.apache.camel.component.kubernetes.hpa.KubernetesHPAEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/mem: org.apache.camel.impl.engine.DefaultResourceResolvers$MemResolver
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/health-check/components-repository: org.apache.camel.impl.health.ComponentsHealthCheckRepository
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.ServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.CombinedServiceFilterFactory: org.apache.camel.impl.cloud.CombinedServiceFilterFactoryConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallServiceChooserConfiguration: org.apache.camel.model.cloud.ServiceCallServiceChooserConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/rest-api-endpoint: org.apache.camel.component.rest.RestApiEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/bean: org.apache.camel.language.bean.BeanResourceResolver
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.LraConfigurationProperties: org.apache.camel.main.LraConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/classpath: org.apache.camel.impl.engine.DefaultResourceResolvers$ClasspathResolver
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.StaticServiceDiscoveryFactory: org.apache.camel.impl.cloud.StaticServiceDiscoveryFactoryConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.PassThroughServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.PassThroughServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/csimple: org.apache.camel.language.csimple.CSimpleLanguage
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-hpa-endpoint: org.apache.camel.component.kubernetes.hpa.KubernetesHPAEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/bean-processor-factory: org.apache.camel.component.bean.DefaultBeanProcessorFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-persistent-volumes-claims-component: org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsComponentConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.support.processor.DefaultExchangeFormatter: org.apache.camel.support.processor.DefaultExchangeFormatterConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/direct-endpoint: org.apache.camel.component.direct.DirectEndpointConfigurer
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-config-maps-endpoint: org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsEndpointUriFactory
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/adapter-factory: org.apache.camel.support.resume.ResumeActionAwareAdapter
   2023-03-30 20:59:44,609 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.CombinedServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.CombinedServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/platform-http-endpoint: org.apache.camel.component.platform.http.PlatformHttpEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-secrets-endpoint: org.apache.camel.component.kubernetes.secrets.KubernetesSecretsEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/platform-http-endpoint: org.apache.camel.component.platform.http.PlatformHttpEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.HashicorpVaultConfigurationProperties: org.apache.camel.main.HashicorpVaultConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/openshift-deploymentconfigs-endpoint: org.apache.camel.component.openshift.deploymentconfigs.OpenshiftDeploymentConfigsEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-deploymentconfigs-endpoint: org.apache.camel.component.openshift.deploymentconfigs.OpenshiftDeploymentConfigsEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/kubernetes-service-discovery: org.apache.camel.component.kubernetes.cloud.KubernetesServiceDiscoveryFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-pods-component: org.apache.camel.component.kubernetes.pods.KubernetesPodsComponentConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.AwsVaultConfigurationProperties: org.apache.camel.main.AwsVaultConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/resource-resolver/http: org.apache.camel.impl.engine.DefaultResourceResolvers$HttpResolver
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/file: org.apache.camel.language.simple.FileLanguage
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.StaticServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.StaticServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-persistent-volumes-claims-endpoint: org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-persistent-volumes-claims-endpoint: org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.KubernetesServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.KubernetesServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.RestConfigurationProperties: org.apache.camel.main.RestConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.CombinedServiceDiscoveryFactory: org.apache.camel.impl.cloud.CombinedServiceDiscoveryFactoryConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/header: org.apache.camel.language.header.HeaderLanguage
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/rest-endpoint: org.apache.camel.component.rest.RestEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.ThreadPoolConfigurationProperties: org.apache.camel.main.ThreadPoolConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.BlacklistServiceFilterFactory: org.apache.camel.impl.cloud.BlacklistServiceFilterFactoryConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.FaultToleranceConfigurationProperties: org.apache.camel.main.FaultToleranceConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-hpa-component: org.apache.camel.component.kubernetes.hpa.KubernetesHPAComponentConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-namespaces-endpoint: org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-replication-controllers-endpoint: org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-services-endpoint: org.apache.camel.component.kubernetes.services.KubernetesServicesEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-job-endpoint: org.apache.camel.component.kubernetes.job.KubernetesJobEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.ExtendedCamelContext: org.apache.camel.impl.ExtendedCamelContextConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.cloud.DefaultServiceLoadBalancerFactory: org.apache.camel.impl.cloud.DefaultServiceLoadBalancerFactoryConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.HealthyServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.HealthyServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.vault.AzureVaultConfiguration: org.apache.camel.main.AzureVaultConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/routes-loader/xml: org.apache.camel.dsl.xml.io.XmlRoutesBuilderLoader
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.BlacklistServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.BlacklistServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/runtime-camelcatalog: org.apache.camel.catalog.impl.DefaultRuntimeCamelCatalog
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ZooKeeperServiceCallServiceDiscoveryConfiguration: org.apache.camel.model.cloud.ZooKeeperServiceCallServiceDiscoveryConfigurationConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/properties-function/configmap: org.apache.camel.component.kubernetes.properties.ConfigMapPropertiesFunction
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/exchangeProperty: org.apache.camel.language.property.ExchangePropertyLanguage
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/openshift-builds-component: org.apache.camel.component.openshift.builds.OpenshiftBuildsComponentConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/bean-endpoint: org.apache.camel.component.bean.BeanEndpointConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.k.listener.SourcesConfigurer: org.apache.camel.k.listener.SourcesConfigurerConfigurer
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-services-endpoint: org.apache.camel.component.kubernetes.services.KubernetesServicesEndpointUriFactory
   2023-03-30 20:59:44,610 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-services-component: org.apache.camel.component.kubernetes.services.KubernetesServicesComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/xmlroutes-loader: org.apache.camel.dsl.xml.io.XmlRoutesDefinitionLoader
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/bean-component: org.apache.camel.component.bean.BeanComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-deployments-component: org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-nodes-endpoint: org.apache.camel.component.kubernetes.nodes.KubernetesNodesEndpointUriFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-deployments-endpoint: org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsEndpointUriFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/cloud/blacklist-service-filter: org.apache.camel.impl.cloud.BlacklistServiceFilterFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-persistent-volumes-endpoint: org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesEndpointUriFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-service-accounts-component: org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.main.Resilience4jConfigurationProperties: org.apache.camel.main.Resilience4jConfigurationPropertiesConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-custom-resources-component: org.apache.camel.component.kubernetes.customresources.KubernetesCustomResourcesComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.component.properties.PropertiesComponent: org.apache.camel.component.properties.PropertiesComponentConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-service-accounts-endpoint: org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsEndpointConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.model.cloud.ServiceCallServiceFilterConfiguration: org.apache.camel.model.cloud.ServiceCallServiceFilterConfigurationConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/language/bean: org.apache.camel.language.bean.BeanLanguage
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/org.apache.camel.component.kubernetes.cloud.KubernetesServiceDiscoveryFactory: org.apache.camel.component.kubernetes.cloud.KubernetesServiceDiscoveryFactoryConfigurer
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/internal-processor-factory: org.apache.camel.processor.DefaultInternalProcessorFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/health-check/context-check: org.apache.camel.impl.health.ContextHealthCheck
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/urifactory/kubernetes-service-accounts-endpoint: org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsEndpointUriFactory
   2023-03-30 20:59:44,611 DEBUG [org.apa.cam.qua.cor.FastFactoryFinderResolver] (main) FactoryFinder entry META-INF/services/org/apache/camel/configurer/kubernetes-namespaces-component: org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesComponentConfigurer
   2023-03-30 20:59:45,111 DEBUG [io.net.uti.int.log.InternalLoggerFactory] (main) Using SLF4J as the default logging framework
   2023-03-30 20:59:45,113 DEBUG [io.net.uti.int.InternalThreadLocalMap] (main) -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
   2023-03-30 20:59:45,113 DEBUG [io.net.uti.int.InternalThreadLocalMap] (main) -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
   2023-03-30 20:59:45,301 DEBUG [io.qua.arc.impl] (main) ArC DI container initialized [beans=58, observers=1]
   2023-03-30 20:59:45,715 DEBUG [org.apa.cam.imp.con.DefaultTypeConverter] (main) Loaded 32 type converters in 16ms
   2023-03-30 20:59:45,720 DEBUG [org.apa.cam.sup.LRUCacheFactory] (main) Creating DefaultLRUCacheFactory
   2023-03-30 20:59:45,798 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Setting up management with factory: org.apache.camel.impl.engine.DefaultManagementStrategyFactory@70e29e14
   2023-03-30 20:59:45,915 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) built in 87ms
   2023-03-30 20:59:46,018 DEBUG [org.apa.cam.imp.hea.DefaultHealthCheckRegistry] (main) HealthCheckRepository with id registry-health-check-repository successfully registered
   2023-03-30 20:59:46,038 DEBUG [org.apa.cam.qua.com.res.RestRecorder$RestCamelContextCustomizer] (main) Set platform-http as default component for Camel REST DSL
   2023-03-30 20:59:46,799 DEBUG [io.net.uti.int.PlatformDependent0] (Thread-0) -Dio.netty.noUnsafe: false
   2023-03-30 20:59:46,802 DEBUG [io.net.uti.int.PlatformDependent0] (Thread-0) Java version: 11
   2023-03-30 20:59:46,807 DEBUG [io.net.uti.int.PlatformDependent0] (Thread-0) java.nio.Buffer.address: available
   2023-03-30 20:59:46,808 DEBUG [io.net.uti.int.PlatformDependent0] (Thread-0) java.nio.Bits.unaligned: available, true
   2023-03-30 20:59:46,810 DEBUG [io.net.uti.int.PlatformDependent0] (Thread-0) java.nio.DirectByteBuffer.<init>(long, int): unavailable
   2023-03-30 20:59:46,810 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) sun.misc.Unsafe: available
   2023-03-30 20:59:47,303 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) maxDirectMemory: 273678336 bytes (maybe)
   2023-03-30 20:59:47,304 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
   2023-03-30 20:59:47,304 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) -Dio.netty.bitMode: 64 (sun.arch.data.model)
   2023-03-30 20:59:47,305 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) -Dio.netty.maxDirectMemory: -1 bytes
   2023-03-30 20:59:47,305 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) -Dio.netty.uninitializedArrayAllocationThreshold: -1
   2023-03-30 20:59:47,306 DEBUG [io.net.uti.int.CleanerJava9] (Thread-0) java.nio.ByteBuffer.cleaner(): available
   2023-03-30 20:59:47,306 DEBUG [io.net.uti.int.PlatformDependent] (Thread-0) -Dio.netty.noPreferDirect: false
   2023-03-30 20:59:47,402 DEBUG [io.net.cha.DefaultChannelId] (Thread-0) -Dio.netty.processId: 1 (auto-detected)
   2023-03-30 20:59:47,407 DEBUG [io.net.cha.DefaultChannelId] (Thread-0) -Dio.netty.machineId: 36:8e:e3:fa:08:4a:c2:6a (user-set)
   2023-03-30 20:59:49,502 DEBUG [io.ver.cor.log.LoggerFactory] (main) Using io.vertx.core.logging.SLF4JLogDelegateFactory
   2023-03-30 20:59:49,514 DEBUG [io.qua.ver.cor.run.VertxCoreRecorder] (main) Vert.x Cache configured to: /tmp/vertx-cache/7919722337337036797
   2023-03-30 20:59:49,611 DEBUG [io.net.uti.ResourceLeakDetector] (main) -Dio.netty.leakDetection.level: simple
   2023-03-30 20:59:49,611 DEBUG [io.net.uti.ResourceLeakDetector] (main) -Dio.netty.leakDetection.targetRecords: 4
   2023-03-30 20:59:49,710 DEBUG [io.net.cha.MultithreadEventLoopGroup] (main) -Dio.netty.eventLoopThreads: 2
   2023-03-30 20:59:49,816 DEBUG [io.net.cha.nio.NioEventLoop] (main) -Dio.netty.noKeySetOptimization: false
   2023-03-30 20:59:49,817 DEBUG [io.net.cha.nio.NioEventLoop] (main) -Dio.netty.selectorAutoRebuildThreshold: 512
   2023-03-30 20:59:49,900 DEBUG [io.net.uti.int.PlatformDependent] (main) org.jctools-core.MpscChunkedArrayQueue: available
   2023-03-30 20:59:50,099 DEBUG [io.qua.ver.cor.run.VertxCoreRecorder] (main) Vertx has Native Transport Enabled: false
   2023-03-30 20:59:51,802 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client from Kubernetes config...
   2023-03-30 20:59:51,809 DEBUG [io.fab.kub.cli.Config] (main) Did not find Kubernetes config at: [/.kube/config]. Ignoring.
   2023-03-30 20:59:51,810 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client from service account...
   2023-03-30 20:59:51,811 DEBUG [io.fab.kub.cli.Config] (main) Found service account host and port: 10.90.128.1:443
   2023-03-30 20:59:51,899 DEBUG [io.fab.kub.cli.Config] (main) Found service account ca cert at: [/var/run/secrets/kubernetes.io/serviceaccount/ca.crt}].
   2023-03-30 20:59:51,901 DEBUG [io.fab.kub.cli.Config] (main) Found service account token at: [/var/run/secrets/kubernetes.io/serviceaccount/token].
   2023-03-30 20:59:51,902 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client namespace from Kubernetes service account namespace path...
   2023-03-30 20:59:51,902 DEBUG [io.fab.kub.cli.Config] (main) Found service account namespace at: [/var/run/secrets/kubernetes.io/serviceaccount/namespace].
   2023-03-30 20:59:52,004 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client from Kubernetes config...
   2023-03-30 20:59:52,007 DEBUG [io.fab.kub.cli.Config] (main) Did not find Kubernetes config at: [/.kube/config]. Ignoring.
   2023-03-30 20:59:52,008 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client from service account...
   2023-03-30 20:59:52,011 DEBUG [io.fab.kub.cli.Config] (main) Found service account host and port: 10.90.128.1:443
   2023-03-30 20:59:52,013 DEBUG [io.fab.kub.cli.Config] (main) Found service account ca cert at: [/var/run/secrets/kubernetes.io/serviceaccount/ca.crt}].
   2023-03-30 20:59:52,014 DEBUG [io.fab.kub.cli.Config] (main) Found service account token at: [/var/run/secrets/kubernetes.io/serviceaccount/token].
   2023-03-30 20:59:52,015 DEBUG [io.fab.kub.cli.Config] (main) Trying to configure client namespace from Kubernetes service account namespace path...
   2023-03-30 20:59:52,097 DEBUG [io.fab.kub.cli.Config] (main) Found service account namespace at: [/var/run/secrets/kubernetes.io/serviceaccount/namespace].
   2023-03-30 20:59:56,904 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   2023-03-30 20:59:56,909 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   2023-03-30 20:59:56,998 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   2023-03-30 20:59:57,010 DEBUG [org.apa.cam.com.pro.PropertiesComponent] (main) PropertiesComponent added custom PropertiesSource (factory): camel-microprofile-config
   2023-03-30 20:59:57,213 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.listener.SourcesConfigurer via type: org.apache.camel.k.listener.SourcesConfigurerConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.listener.SourcesConfigurer
   2023-03-30 20:59:57,603 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,609 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,698 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,706 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,709 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,797 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.k.SourceDefinition via type: org.apache.camel.k.SourceDefinitionConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.k.SourceDefinition
   2023-03-30 20:59:57,907 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='TestOne', language='java', type='source', location='file:/etc/camel/sources/TestOne.java', }
   2023-03-30 20:59:58,001 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found RoutesBuilderLoader: org.apache.camel.dsl.java.joor.JavaRoutesBuilderLoader via: META-INF/services/org/apache/camel/java
   2023-03-30 20:59:58,001 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using RoutesBuilderLoader: org.apache.camel.dsl.java.joor.JavaRoutesBuilderLoader@44cffc25
   2023-03-30 20:59:58,003 DEBUG [org.apa.cam.dsl.jav.joo.JavaRoutesBuilderLoader] (main) Loading .java resources from: [org.apache.camel.k.support.Sources$2@3bd2af5b]
   2023-03-30 20:59:58,099 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found ResourceResolver: org.apache.camel.impl.engine.DefaultResourceResolvers$FileResolver via: META-INF/services/org/apache/camel/file
   2023-03-30 20:59:58,102 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using ResourceResolver: org.apache.camel.impl.engine.DefaultResourceResolvers$FileResolver@53cf9c99
   2023-03-30 20:59:58,107 DEBUG [org.apa.cam.dsl.jav.joo.JavaRoutesBuilderLoader] (main) Compiling unit: org.apache.camel.dsl.java.joor.CompilationUnit@76ad6715
   2023-03-30 20:59:58,998 DEBUG [org.apa.cam.dsl.jav.joo.MultiCompile] (main) Java JooR Compile -classpath: ./resources:/etc/camel/application.properties:/etc/camel/conf.d/_resources:/etc/camel/resources:/etc/camel/resources/sample-error-response.json:/etc/camel/resources/simple-body.json:/etc/camel/sources/TestOne.java:/etc/camel/sources/test-one-openapi.xml:dependencies/app/camel-k-integration-1.12.0.jar:dependencies/lib/boot/io.github.crac.org-crac-0.1.3.jar:dependencies/lib/boot/io.quarkus.quarkus-bootstrap-runner-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-development-mode-spi-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-vertx-latebound-mdc-provider-2.16.0.Final.jar:dependencies/lib/boot/io.smallrye.common.smallrye-common-io-1.13.2.jar:dependencies/lib/boot/org.glassfish.jakarta.json-1.1.6.jar:dependencies/lib/boot/org.graalvm.sdk.graal-sdk-22.3.0.jar:dependencies/lib/boot/org.jboss.logging.jboss-logging-3.5.0.Final.jar:dependencies/lib/boot/org.jboss
 .logmanager.jboss-logmanager-embedded-1.0.11.jar:dependencies/lib/boot/org.wildfly.common.wildfly-common-1.5.4.Final-format-001.jar:dependencies/lib/main/com.aayushatharva.brotli4j.brotli4j-1.8.0.jar:dependencies/lib/main/com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-annotations-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-core-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-databind-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.module.jackson-module-parameter-names-2.14.1.jar:dependencies/lib/main/com.github.mifmif.generex-1.0.2.jar:dependencies/lib/main/com.squareup.okhttp3.logging-interceptor-3.14.9.jar
 :dependencies/lib/main/com.squareup.okhttp3.okhttp-3.14.9.jar:dependencies/lib/main/com.squareup.okio.okio-1.17.2.jar:dependencies/lib/main/com.sun.activation.jakarta.activation-1.2.1.jar:dependencies/lib/main/dk.brics.automaton.automaton-1.11-8.jar:dependencies/lib/main/io.fabric8.kubernetes-client-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-httpclient-okhttp-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-admissionregistration-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apiextensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apps-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-autoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-batch-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-certificates-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-common-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-
 coordination-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-core-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-discovery-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-events-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-extensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-flowcontrol-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-gatewayapi-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-metrics-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-networking-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-node-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-policy-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-rbac-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-scheduling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-storageclass-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-6.3.1.jar:dependencies/lib/m
 ain/io.fabric8.openshift-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-clusterautoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-config-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-console-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-hive-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-installer-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machine-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machineconfig-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-miscellaneous-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-monitoring-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operatorhub-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-storageversionmigrator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-m
 odel-tuned-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-whereabouts-6.3.1.jar:dependencies/lib/main/io.fabric8.zjsonpatch-0.3.0.jar:dependencies/lib/main/io.netty.netty-buffer-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-haproxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http2-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-socks-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-common-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-proxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-4.1.86.Final.jar:dependencies/lib
 /main/io.netty.netty-transport-native-unix-common-4.1.86.Final.jar:dependencies/lib/main/io.quarkus.arc.arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-core-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-credentials-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-fs-util-0.0.9.jar:dependencies/lib/main/io.quarkus.quarkus-jackson-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-jsonp-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-internal-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-logging-json-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-mutiny-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-netty-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-runtime-sp
 i-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-context-propagation-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-health-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.security.quarkus-security-1.1.4.Final.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-annotation-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-classloader-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-constraint-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-expression-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-function-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-vertx-context-1.13.2.jar:dependencies/lib/main/io.smallrye.config
 .smallrye-config-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-common-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-core-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-source-yaml-2.13.1.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-smallrye-context-propagation-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-core-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.30
 .1.jar:dependencies/lib/main/io.smallrye.reactive.vertx-mutiny-generator-2.30.1.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-api-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-storage-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-fault-tolerance-vertx-5.6.0.jar:dependencies/lib/main/io.smallrye.smallrye-health-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-api-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-provided-checks-3.3.1.jar:dependencies/lib/main/io.vertx.vertx-auth-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-bridge-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-codegen-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-core-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-uri-template-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-common-4.3.7.jar:dependencie
 s/lib/main/jakarta.annotation.jakarta.annotation-api-1.3.5.jar:dependencies/lib/main/jakarta.el.jakarta.el-api-3.0.3.jar:dependencies/lib/main/jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.jar:dependencies/lib/main/jakarta.inject.jakarta.inject-api-1.0.jar:dependencies/lib/main/jakarta.interceptor.jakarta.interceptor-api-1.2.5.jar:dependencies/lib/main/jakarta.transaction.jakarta.transaction-api-1.3.3.jar:dependencies/lib/main/org.apache.camel.camel-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-attachments-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-bean-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cloud-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cluster-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-componentdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-catalog-3.20.1.jar:
 dependencies/lib/main/org.apache.camel.camel-core-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-languages-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-processor-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-reifier-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-direct-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-dsl-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-endpointdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-java-joor-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-kubernetes-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-main-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-management-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-config-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel
 -microprofile-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-vertx-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-rest-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-tooling-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-json-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-vertx-common-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-api-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-support-1.17.0.jar:dependencies/lib/main/o
 rg.apache.camel.k.camel-k-runtime-1.17.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-attachments-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-bean-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-cloud-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-direct-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-java-joor-dsl-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-kubernetes-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-microprofile-health-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-platform-http-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-rest-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-bouncycastle-2.16.0.jar:dependencies/lib/main/org.apache.ca
 mel.quarkus.camel-quarkus-support-commons-logging-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-xml-io-dsl-2.16.0.jar:dependencies/lib/main/org.apache.commons.commons-compress-1.22.jar:dependencies/lib/main/org.bouncycastle.bcpkix-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcprov-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcutil-jdk15on-1.70.jar:dependencies/lib/main/org.eclipse.microprofile.config.microprofile-config-api-2.0.1.jar:dependencies/lib/main/org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.jar:dependencies/lib/main/org.eclipse.microprofile.health.microprofile-health-api-3.1.jar:dependencies/lib/main/org.javassist.javassist-3.26.0-GA.jar:dependencies/lib/main/org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final.jar:dependencies/lib/main/org.jboss.logging.jboss-logging-annotations-2.2.1.Final.jar:dependencies/lib/main/org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final.jar:depend
 encies/lib/main/org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final.jar:dependencies/lib/main/org.jboss.threads.jboss-threads-3.4.3.Final.jar:dependencies/lib/main/org.jooq.joor-0.9.14.jar:dependencies/lib/main/org.reactivestreams.reactive-streams-1.0.3.jar:dependencies/lib/main/org.slf4j.slf4j-api-1.7.36.jar:dependencies/lib/main/org.yaml.snakeyaml-1.33.jar:dependencies/quarkus-app-dependencies.txt:dependencies/quarkus-run.jar:dependencies/quarkus/generated-bytecode.jar:dependencies/quarkus/quarkus-application.dat:dependencies/quarkus/transformed-bytecode.jar
   2023-03-30 21:00:14,797 DEBUG [org.apa.cam.dsl.jav.joo.JavaRoutesBuilderLoader] (main) Compiled: TestOne -> Routes: []
   2023-03-30 21:00:14,802 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='test-one-openapi', language='xml', type='source', location='file:/etc/camel/sources/test-one-openapi.xml', }
   2023-03-30 21:00:14,806 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found RoutesBuilderLoader: org.apache.camel.dsl.xml.io.XmlRoutesBuilderLoader via: META-INF/services/org/apache/camel/xml
   2023-03-30 21:00:14,811 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using RoutesBuilderLoader: org.apache.camel.dsl.xml.io.XmlRoutesBuilderLoader@202898d7
   2023-03-30 21:00:15,001 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Properties from Camel properties component:
   2023-03-30 21:00:15,002 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.configmaps=/etc/camel/conf.d/_configmaps
   2023-03-30 21:00:15,003 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].name=test-one-openapi
   2023-03-30 21:00:15,004 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.integration=test-one
   2023-03-30 21:00:15,006 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].name=TestOne
   2023-03-30 21:00:15,006 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.version=1.12.0
   2023-03-30 21:00:15,007 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.kubernetesConfig.clientEnabled=false
   2023-03-30 21:00:15,008 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].language=xml
   2023-03-30 21:00:15,008 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf=/etc/camel/application.properties
   2023-03-30 21:00:15,013 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.digest=v3SBYs1ftzBRB_X2-_K6E4id-FT63uf0_HzIwnKRPswA
   2023-03-30 21:00:15,013 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].location=file:/etc/camel/sources/TestOne.java
   2023-03-30 21:00:15,014 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.runtime.version=1.17.0
   2023-03-30 21:00:15,015 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.secrets=/etc/camel/conf.d/_secrets
   2023-03-30 21:00:15,015 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].location=file:/etc/camel/sources/test-one-openapi.xml
   2023-03-30 21:00:15,016 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf.d=/etc/camel/conf.d
   2023-03-30 21:00:15,016 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.operator.id=camel-k
   2023-03-30 21:00:15,096 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].language=java
   2023-03-30 21:00:15,209 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Properties from Camel properties component:
   2023-03-30 21:00:15,210 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.configmaps=/etc/camel/conf.d/_configmaps
   2023-03-30 21:00:15,297 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].name=test-one-openapi
   2023-03-30 21:00:15,297 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.integration=test-one
   2023-03-30 21:00:15,299 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].name=TestOne
   2023-03-30 21:00:15,300 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.version=1.12.0
   2023-03-30 21:00:15,300 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.kubernetesConfig.clientEnabled=false
   2023-03-30 21:00:15,302 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].language=xml
   2023-03-30 21:00:15,302 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf=/etc/camel/application.properties
   2023-03-30 21:00:15,303 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.digest=v3SBYs1ftzBRB_X2-_K6E4id-FT63uf0_HzIwnKRPswA
   2023-03-30 21:00:15,304 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].location=file:/etc/camel/sources/TestOne.java
   2023-03-30 21:00:15,304 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.runtime.version=1.17.0
   2023-03-30 21:00:15,305 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.secrets=/etc/camel/conf.d/_secrets
   2023-03-30 21:00:15,306 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].location=file:/etc/camel/sources/test-one-openapi.xml
   2023-03-30 21:00:15,306 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf.d=/etc/camel/conf.d
   2023-03-30 21:00:15,307 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.operator.id=camel-k
   2023-03-30 21:00:15,308 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].language=java
   2023-03-30 21:00:15,402 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Properties from Camel properties component:
   2023-03-30 21:00:15,403 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.configmaps=/etc/camel/conf.d/_configmaps
   2023-03-30 21:00:15,404 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].name=test-one-openapi
   2023-03-30 21:00:15,405 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.integration=test-one
   2023-03-30 21:00:15,406 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].name=TestOne
   2023-03-30 21:00:15,406 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.version=1.12.0
   2023-03-30 21:00:15,407 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.kubernetesConfig.clientEnabled=false
   2023-03-30 21:00:15,408 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].language=xml
   2023-03-30 21:00:15,408 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf=/etc/camel/application.properties
   2023-03-30 21:00:15,409 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.digest=v3SBYs1ftzBRB_X2-_K6E4id-FT63uf0_HzIwnKRPswA
   2023-03-30 21:00:15,410 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].location=file:/etc/camel/sources/TestOne.java
   2023-03-30 21:00:15,412 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.runtime.version=1.17.0
   2023-03-30 21:00:15,412 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.secrets=/etc/camel/conf.d/_secrets
   2023-03-30 21:00:15,412 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].location=file:/etc/camel/sources/test-one-openapi.xml
   2023-03-30 21:00:15,413 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf.d=/etc/camel/conf.d
   2023-03-30 21:00:15,413 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.operator.id=camel-k
   2023-03-30 21:00:15,413 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].language=java
   2023-03-30 21:00:15,501 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Properties from Camel properties component:
   2023-03-30 21:00:15,504 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.configmaps=/etc/camel/conf.d/_configmaps
   2023-03-30 21:00:15,505 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].name=test-one-openapi
   2023-03-30 21:00:15,505 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.integration=test-one
   2023-03-30 21:00:15,507 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].name=TestOne
   2023-03-30 21:00:15,507 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.version=1.12.0
   2023-03-30 21:00:15,508 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.kubernetesConfig.clientEnabled=false
   2023-03-30 21:00:15,508 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].language=xml
   2023-03-30 21:00:15,509 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf=/etc/camel/application.properties
   2023-03-30 21:00:15,510 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.digest=v3SBYs1ftzBRB_X2-_K6E4id-FT63uf0_HzIwnKRPswA
   2023-03-30 21:00:15,510 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].location=file:/etc/camel/sources/TestOne.java
   2023-03-30 21:00:15,511 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.runtime.version=1.17.0
   2023-03-30 21:00:15,513 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.mount.path.secrets=/etc/camel/conf.d/_secrets
   2023-03-30 21:00:15,514 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[1].location=file:/etc/camel/sources/test-one-openapi.xml
   2023-03-30 21:00:15,515 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.conf.d=/etc/camel/conf.d
   2023-03-30 21:00:15,515 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.operator.id=camel-k
   2023-03-30 21:00:15,515 DEBUG [org.apa.cam.mai.BaseMainSupport] (main)     camel.k.sources[0].language=java
   2023-03-30 21:00:15,906 DEBUG [org.apa.cam.imp.hea.DefaultHealthCheckRegistry] (main) HealthCheckRepository with id routes successfully registered
   2023-03-30 21:00:16,107 DEBUG [org.apa.cam.imp.hea.DefaultHealthCheckRegistry] (main) HealthCheckRepository with id consumers successfully registered
   2023-03-30 21:00:16,109 DEBUG [org.apa.cam.imp.hea.DefaultHealthCheckRegistry] (main) HealthCheckRepository with id components successfully registered
   2023-03-30 21:00:16,302 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Auto-configuring HealthCheck from loaded properties: 0
   2023-03-30 21:00:16,306 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: org.apache.camel.main.HealthConfigurationProperties via type: org.apache.camel.main.HealthConfigurationPropertiesConfigurer via: META-INF/services/org/apache/camel/configurer/org.apache.camel.main.HealthConfigurationProperties
   2023-03-30 21:00:16,505 DEBUG [org.apa.cam.mai.BaseMainSupport] (main) Gathered 0 ENV variables to configure components, dataformats, languages
   2023-03-30 21:00:16,604 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) RoutesCollectorEnabled: org.apache.camel.k.quarkus.Application$NoRoutesCollector@30c19bff
   2023-03-30 21:00:16,700 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) Adding routes configurations into CamelContext from RouteConfigurationsBuilder: Routes: []
   2023-03-30 21:00:16,701 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding route configurations from builder: Routes: []
   2023-03-30 21:00:17,400 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) Adding routes into CamelContext from RoutesBuilder: Routes: []
   2023-03-30 21:00:17,402 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding routes from builder: Routes: []
   2023-03-30 21:00:17,604 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) Adding routes into CamelContext from RoutesBuilder: Routes: []
   2023-03-30 21:00:17,604 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding route configurations from builder: Routes: []
   2023-03-30 21:00:17,607 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding routes from builder: Routes: []
   2023-03-30 21:00:18,600 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) Adding templated routes into CamelContext from RoutesBuilder: Routes: [Route(mertGet)[From[direct://mertGet] -> [OnException[[java.lang.Exception] -> [SetHeader[CamelHttpResponseCode, org.apache.camel.builder.ExpressionClause@2dba05b1], SetBody[org.apache.camel.builder.ExpressionClause@541afb85], Log[${exception}]]], Log[headers: ${headers}; body: ${body}], SetBody[org.apache.camel.builder.ExpressionClause@445bce9a]]], Route(mertPost)[From[direct://mertPost] -> [OnException[[java.lang.Exception] -> [SetHeader[CamelHttpResponseCode, org.apache.camel.builder.ExpressionClause@2dba05b1], SetBody[org.apache.camel.builder.ExpressionClause@541afb85], Log[${exception}]]], Log[headers: ${headers}; body: ${body}]]]]
   2023-03-30 21:00:18,602 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding templated routes from builder: Routes: [Route(mertGet)[From[direct://mertGet] -> [OnException[[java.lang.Exception] -> [SetHeader[CamelHttpResponseCode, org.apache.camel.builder.ExpressionClause@2dba05b1], SetBody[org.apache.camel.builder.ExpressionClause@541afb85], Log[${exception}]]], Log[headers: ${headers}; body: ${body}], SetBody[org.apache.camel.builder.ExpressionClause@445bce9a]]], Route(mertPost)[From[direct://mertPost] -> [OnException[[java.lang.Exception] -> [SetHeader[CamelHttpResponseCode, org.apache.camel.builder.ExpressionClause@2dba05b1], SetBody[org.apache.camel.builder.ExpressionClause@541afb85], Log[${exception}]]], Log[headers: ${headers}; body: ${body}]]]]
   2023-03-30 21:00:18,605 DEBUG [org.apa.cam.mai.RoutesConfigurer] (main) Adding templated routes into CamelContext from RoutesBuilder: Routes: [Route[From[rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson] -> [To[direct:mertGet]]], Route[From[rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson] -> [To[direct:mertPost]]]]
   2023-03-30 21:00:18,606 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Adding templated routes from builder: Routes: [Route[From[rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson] -> [To[direct:mertGet]]], Route[From[rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson] -> [To[direct:mertPost]]]]
   2023-03-30 21:00:18,809 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:18,897 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Lookup Language with name simple in registry. Found: org.apache.camel.language.simple.SimpleLanguage@4e4162bc
   2023-03-30 21:00:18,898 DEBUG [org.apa.cam.lan.sim.SimpleLanguage] (main) Simple language predicate/expression cache size: 1000
   2023-03-30 21:00:19,301 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ComponentResolver: org.apache.camel.quarkus.core.FastCamelContext$$Lambda$539/0x0000000840520c40@6c742b84 to resolve component with name: direct
   2023-03-30 21:00:19,306 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Lookup Component with name direct in registry. Found: org.apache.camel.component.direct.DirectComponent@5db3d57c
   2023-03-30 21:00:19,311 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: direct-component via type: org.apache.camel.component.direct.DirectComponentConfigurer via: META-INF/services/org/apache/camel/configurer/direct-component
   2023-03-30 21:00:19,313 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: direct-endpoint via type: org.apache.camel.component.direct.DirectEndpointConfigurer via: META-INF/services/org/apache/camel/configurer/direct-endpoint
   2023-03-30 21:00:19,399 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: direct-component via type: org.apache.camel.component.direct.DirectComponentConfigurer via: META-INF/services/org/apache/camel/configurer/direct-component
   2023-03-30 21:00:19,402 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[direct://mertGet], path=[mertGet]
   2023-03-30 21:00:19,501 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) direct://mertGet converted to endpoint: direct://mertGet by component: org.apache.camel.component.direct.DirectComponent@5db3d57c
   2023-03-30 21:00:19,604 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found ProcessorFactory: org.apache.camel.processor.DefaultProcessorFactory via: META-INF/services/org/apache/camel/processor-factory
   2023-03-30 21:00:19,609 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using ProcessorFactory: org.apache.camel.processor.DefaultProcessorFactory@6cc64028
   2023-03-30 21:00:19,697 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: constant
   2023-03-30 21:00:19,697 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Lookup Language with name constant in registry. Found: org.apache.camel.language.constant.ConstantLanguage@5b0dbfb
   2023-03-30 21:00:19,701 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: constant
   2023-03-30 21:00:19,703 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found InternalProcessorFactory: org.apache.camel.processor.DefaultInternalProcessorFactory via: META-INF/services/org/apache/camel/internal-processor-factory
   2023-03-30 21:00:19,704 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using InternalProcessorFactory: org.apache.camel.processor.DefaultInternalProcessorFactory@46b2dcc5
   2023-03-30 21:00:19,798 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,104 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,201 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,401 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: constant
   2023-03-30 21:00:20,501 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[direct://mertPost], path=[mertPost]
   2023-03-30 21:00:20,502 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) direct://mertPost converted to endpoint: direct://mertPost by component: org.apache.camel.component.direct.DirectComponent@5db3d57c
   2023-03-30 21:00:20,505 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: constant
   2023-03-30 21:00:20,506 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: constant
   2023-03-30 21:00:20,507 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,511 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,515 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:20,520 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ComponentResolver: org.apache.camel.quarkus.core.FastCamelContext$$Lambda$539/0x0000000840520c40@6c742b84 to resolve component with name: rest
   2023-03-30 21:00:20,520 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Lookup Component with name rest in registry. Found: org.apache.camel.component.rest.RestComponent@34279b8a
   2023-03-30 21:00:20,603 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: rest-component via type: org.apache.camel.component.rest.RestComponentConfigurer via: META-INF/services/org/apache/camel/configurer/rest-component
   2023-03-30 21:00:20,605 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: rest-endpoint via type: org.apache.camel.component.rest.RestEndpointConfigurer via: META-INF/services/org/apache/camel/configurer/rest-endpoint
   2023-03-30 21:00:20,608 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: rest-component via type: org.apache.camel.component.rest.RestComponentConfigurer via: META-INF/services/org/apache/camel/configurer/rest-component
   2023-03-30 21:00:20,610 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route1], path=[get:/mert]
   2023-03-30 21:00:20,700 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route1 converted to endpoint: rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route1 by component: org.apache.camel.component.rest.RestComponent@34279b8a
   2023-03-30 21:00:20,802 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route2], path=[post:/mert]
   2023-03-30 21:00:20,807 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route2 converted to endpoint: rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route2 by component: org.apache.camel.component.rest.RestComponent@34279b8a
   2023-03-30 21:00:20,810 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Initializing route id: mertGet
   2023-03-30 21:00:20,902 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Initializing route id: mertPost
   2023-03-30 21:00:20,904 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Initializing route id: route1
   2023-03-30 21:00:21,004 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ComponentResolver: org.apache.camel.quarkus.core.FastCamelContext$$Lambda$539/0x0000000840520c40@6c742b84 to resolve component with name: platform-http
   2023-03-30 21:00:21,006 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Lookup Component with name platform-http in registry. Found: org.apache.camel.component.platform.http.PlatformHttpComponent@6b4a4e40
   2023-03-30 21:00:21,008 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: platform-http-component via type: org.apache.camel.component.platform.http.PlatformHttpComponentConfigurer via: META-INF/services/org/apache/camel/configurer/platform-http-component
   2023-03-30 21:00:21,010 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: platform-http-endpoint via type: org.apache.camel.component.platform.http.PlatformHttpEndpointConfigurer via: META-INF/services/org/apache/camel/configurer/platform-http-endpoint
   2023-03-30 21:00:21,012 DEBUG [org.apa.cam.imp.eng.DefaultConfigurerResolver] (main) Found configurer: platform-http-component via type: org.apache.camel.component.platform.http.PlatformHttpComponentConfigurer via: META-INF/services/org/apache/camel/configurer/platform-http-component
   2023-03-30 21:00:21,097 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[platform-http:///mert?httpMethodRestrict=GET], path=[/mert]
   2023-03-30 21:00:21,103 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) platform-http:///mert?httpMethodRestrict=GET converted to endpoint: platform-http:///mert?httpMethodRestrict=GET by component: org.apache.camel.component.platform.http.PlatformHttpComponent@6b4a4e40
   2023-03-30 21:00:21,107 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Found RestRegistryFactory: org.apache.camel.component.rest.DefaultRestRegistryFactory via: META-INF/services/org/apache/camel/rest-registry-factory
   2023-03-30 21:00:21,109 DEBUG [org.apa.cam.sup.ResolverHelper] (main) Detected and using RestRegistryFactory: org.apache.camel.component.rest.DefaultRestRegistryFactory@546ed2a0
   2023-03-30 21:00:21,197 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Initializing route id: route2
   2023-03-30 21:00:21,198 DEBUG [org.apa.cam.sup.DefaultComponent] (main) Creating endpoint uri=[platform-http:///mert?httpMethodRestrict=POST], path=[/mert]
   2023-03-30 21:00:21,199 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) platform-http:///mert?httpMethodRestrict=POST converted to endpoint: platform-http:///mert?httpMethodRestrict=POST by component: org.apache.camel.component.platform.http.PlatformHttpComponent@6b4a4e40
   2023-03-30 21:00:21,201 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) initialized in 2s402ms
   2023-03-30 21:00:21,201 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Resolving language: simple
   2023-03-30 21:00:21,201 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   2023-03-30 21:00:21,201 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ClassResolver=org.apache.camel.quarkus.core.CamelQuarkusClassResolver@34a6d9db, PackageScanClassResolver=org.apache.camel.quarkus.core.CamelQuarkusPackageScanClassResolver@52ecc989, ApplicationContextClassLoader=io.quarkus.bootstrap.runner.RunnerClassLoader@7dc5e7b4, RouteController=org.apache.camel.impl.engine.DefaultRouteController@756808cc
   2023-03-30 21:00:21,201 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) StreamCaching is disabled on CamelContext: camel-1
   2023-03-30 21:00:21,205 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using HeadersMapFactory: org.apache.camel.impl.engine.DefaultHeadersMapFactory@63d677f5
   2023-03-30 21:00:21,206 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ReactiveExecutor: org.apache.camel.impl.engine.DefaultReactiveExecutor@71d55b7e
   2023-03-30 21:00:21,206 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using ThreadPoolFactory: org.apache.camel.support.DefaultThreadPoolFactory@2997ddfc
   2023-03-30 21:00:21,206 DEBUG [org.apa.cam.imp.eng.AbstractCamelContext] (main) Using HealthCheck: camel-microprofile-health
   2023-03-30 21:00:21,207 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Warming up route id: mertGet having autoStartup=true
   2023-03-30 21:00:21,210 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Warming up route id: mertPost having autoStartup=true
   2023-03-30 21:00:21,211 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Warming up route id: route1 having autoStartup=true
   2023-03-30 21:00:21,299 DEBUG [org.apa.cam.sup.DefaultProducer] (main) Starting producer: Producer[direct://mertGet]
   2023-03-30 21:00:21,299 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Warming up route id: route2 having autoStartup=true
   2023-03-30 21:00:21,299 DEBUG [org.apa.cam.sup.DefaultProducer] (main) Starting producer: Producer[direct://mertPost]
   2023-03-30 21:00:21,505 DEBUG [org.apa.cam.imp.eng.DefaultStreamCachingStrategy] (main) StreamCaching configuration DefaultStreamCachingStrategy[spoolDirectoryEnabled=false, spoolDirectory=null, spoolCipher=null, spoolThreshold=131072, spoolUsedHeapMemoryThreshold=0, bufferSize=0, anySpoolRules=false]
   2023-03-30 21:00:21,505 DEBUG [org.apa.cam.imp.eng.DefaultStreamCachingStrategy] (main) StreamCaching in use
   2023-03-30 21:00:21,509 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: mertGet >>> Route[direct://mertGet -> null]
   2023-03-30 21:00:21,596 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Starting consumer (order: 1000) on route: mertGet
   2023-03-30 21:00:21,603 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[direct://mertGet]
   2023-03-30 21:00:21,699 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[direct://mertGet]
   2023-03-30 21:00:21,699 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[direct://mertGet]
   2023-03-30 21:00:21,702 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: mertGet started and consuming from: direct://mertGet
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: mertPost >>> Route[direct://mertPost -> null]
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Starting consumer (order: 1001) on route: mertPost
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[direct://mertPost]
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[direct://mertPost]
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[direct://mertPost]
   2023-03-30 21:00:21,703 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: mertPost started and consuming from: direct://mertPost
   2023-03-30 21:00:21,704 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: route1 >>> Route[rest://get:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route1 -> null]
   2023-03-30 21:00:21,704 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Starting consumer (order: 1002) on route: route1
   2023-03-30 21:00:21,705 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,705 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,708 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,797 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,798 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,799 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[platform-http:///mert?httpMethodRestrict=GET]
   2023-03-30 21:00:21,801 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: route1 started and consuming from: platform-http:///mert
   2023-03-30 21:00:21,801 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: route2 >>> Route[rest://post:/mert?consumerComponentName=platform-http&produces=application%2Fjson&routeId=route2 -> null]
   2023-03-30 21:00:21,801 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Starting consumer (order: 1003) on route: route2
   2023-03-30 21:00:21,802 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,802 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,802 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,803 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Build consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,803 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Init consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,805 DEBUG [org.apa.cam.sup.DefaultConsumer] (main) Starting consumer: Consumer[platform-http:///mert?httpMethodRestrict=POST]
   2023-03-30 21:00:21,805 DEBUG [org.apa.cam.imp.eng.InternalRouteStartupManager] (main) Route: route2 started and consuming from: platform-http:///mert
   2023-03-30 21:00:21,898 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:4)
   2023-03-30 21:00:21,898 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertGet (direct://mertGet)
   2023-03-30 21:00:21,898 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started mertPost (direct://mertPost)
   2023-03-30 21:00:21,898 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (rest://get:/mert)
   2023-03-30 21:00:21,899 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route2 (rest://post:/mert)
   2023-03-30 21:00:21,899 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 3s99ms (build:0ms init:2s402ms start:697ms)
   2023-03-30 21:00:21,907 DEBUG [org.apa.cam.imp.DefaultCamelContext] (main) start() took 3108 millis
   2023-03-30 21:00:22,003 DEBUG [org.apa.cam.mai.SimpleMainShutdownStrategy] (camel-main) Await shutdown to complete
   2023-03-30 21:00:22,306 DEBUG [io.net.uti.NetUtil] (vert.x-eventloop-thread-1) -Djava.net.preferIPv4Stack: false
   2023-03-30 21:00:22,307 DEBUG [io.net.uti.NetUtil] (vert.x-eventloop-thread-1) -Djava.net.preferIPv6Addresses: false
   2023-03-30 21:00:22,397 DEBUG [io.net.uti.NetUtilInitializations] (vert.x-eventloop-thread-1) Loopback interface: lo (lo, 127.0.0.1)
   2023-03-30 21:00:22,401 DEBUG [io.net.uti.NetUtil] (vert.x-eventloop-thread-1) /proc/sys/net/core/somaxconn: 1024
   2023-03-30 21:00:22,799 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.numHeapArenas: 2
   2023-03-30 21:00:22,799 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.numDirectArenas: 2
   2023-03-30 21:00:22,799 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.pageSize: 8192
   2023-03-30 21:00:22,799 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.maxOrder: 3
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.chunkSize: 65536
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.smallCacheSize: 256
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.normalCacheSize: 64
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.maxCachedBufferCapacity: 32768
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.cacheTrimInterval: 8192
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.cacheTrimIntervalMillis: 0
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.useCacheForAllThreads: false
   2023-03-30 21:00:22,800 DEBUG [io.net.buf.PooledByteBufAllocator] (vert.x-eventloop-thread-1) -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
   2023-03-30 21:00:23,110 DEBUG [io.net.buf.ByteBufUtil] (vert.x-eventloop-thread-1) -Dio.netty.allocator.type: pooled
   2023-03-30 21:00:23,110 DEBUG [io.net.buf.ByteBufUtil] (vert.x-eventloop-thread-1) -Dio.netty.threadLocalDirectBufferSize: 0
   2023-03-30 21:00:23,110 DEBUG [io.net.buf.ByteBufUtil] (vert.x-eventloop-thread-1) -Dio.netty.maxThreadLocalCharBufferSize: 16384
   2023-03-30 21:00:23,505 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 54.597s. Listening on: http://0.0.0.0:8080
   2023-03-30 21:00:23,506 INFO  [io.quarkus] (main) Profile prod activated. 
   2023-03-30 21:00:23,506 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-java-joor-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-microprofile-health, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, smallrye-health, vertx]
   2023-03-30 21:00:24,297 DEBUG [io.net.uti.Recycler] (vert.x-eventloop-thread-1) -Dio.netty.recycler.maxCapacityPerThread: 4096
   2023-03-30 21:00:24,298 DEBUG [io.net.uti.Recycler] (vert.x-eventloop-thread-1) -Dio.netty.recycler.ratio: 8
   2023-03-30 21:00:24,299 DEBUG [io.net.uti.Recycler] (vert.x-eventloop-thread-1) -Dio.netty.recycler.chunkSize: 32
   2023-03-30 21:00:24,301 DEBUG [io.net.uti.Recycler] (vert.x-eventloop-thread-1) -Dio.netty.recycler.blocking: false
   2023-03-30 21:00:24,313 DEBUG [io.net.buf.AbstractByteBuf] (vert.x-eventloop-thread-1) -Dio.netty.buffer.checkAccessible: true
   2023-03-30 21:00:24,397 DEBUG [io.net.buf.AbstractByteBuf] (vert.x-eventloop-thread-1) -Dio.netty.buffer.checkBounds: true
   2023-03-30 21:00:24,398 DEBUG [io.net.uti.ResourceLeakDetectorFactory] (vert.x-eventloop-thread-1) Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@7e8849c9
   2023-03-30 21:00:26,502 DEBUG [org.apa.cam.imp.hea.AbstractHealthCheck] (executor-thread-1) Invoke health-check (READINESS) camel/context
   2023-03-30 21:00:26,699 DEBUG [org.apa.cam.imp.hea.AbstractHealthCheck] (executor-thread-1) Invoke health-check (READINESS) camel/consumer:mertGet
   2023-03-30 21:00:26,702 DEBUG [org.apa.cam.imp.hea.AbstractHealthCheck] (executor-thread-1) Invoke health-check (READINESS) camel/consumer:mertPost
   2023-03-30 21:00:26,711 DEBUG [org.apa.cam.imp.hea.AbstractHealthCheck] (executor-thread-1) Invoke health-check (READINESS) camel/consumer:route1
   2023-03-30 21:00:26,797 DEBUG [org.apa.cam.imp.hea.AbstractHealthCheck] (executor-thread-1) Invoke health-check (READINESS) camel/consumer:route2
   2023-03-30 21:01:13,010 DEBUG [org.apa.cam.pro.SendProcessor] (executor-thread-1) >>>> direct://mertGet Exchange[]
   2023-03-30 21:01:13,098 INFO Ā [log-mertGet] (executor-thread-1) headers: {Accept=*/*, Accept-Encoding=gzip, deflate, br, CamelHttpMethod=GET, CamelHttpPath=/mert, CamelHttpQuery=null, CamelHttpRawQuery=null, CamelHttpUri=/mert, CamelHttpUrl=http://localhost:8080/mert, CamelVertxPlatformHttpAuthenticatedUser=io.quarkus.vertx.http.runtime.security.QuarkusHttpUser@3d3b74cb, Connection=keep-alive, Host=localhost:8080, Postman-Token=3866d1a5-e040-44fa-9832-1306e6c55ad1, User-Agent=PostmanRuntime/7.31.3}; body:
   2023-03-30 21:01:13,754 DEBUG [org.apa.cam.pro.SendProcessor] (executor-thread-1) >>>> direct://mertGet Exchange[]
   2023-03-30 21:01:13,756 INFO Ā [log-mertGet] (executor-thread-1) headers: {Accept=*/*, Accept-Encoding=gzip, deflate, br, CamelHttpMethod=GET, CamelHttpPath=/mert, CamelHttpQuery=null, CamelHttpRawQuery=null, CamelHttpUri=/mert, CamelHttpUrl=http://localhost:8080/mert, CamelVertxPlatformHttpAuthenticatedUser=io.quarkus.vertx.http.runtime.security.QuarkusHttpUser@29874f37, Connection=keep-alive, Host=localhost:8080, Postman-Token=f1aa0562-dd2c-4721-b15e-fb43a7fa34d9, User-Agent=PostmanRuntime/7.31.3}; body:
   ```
   
   Any help is appreciated. This is just simply way too slow for us atm. We are considering not using native images for some of our integrations where there is a lot of development activity and just use JVM instead. We basically want to unlock the sub 2-3 second JVM cold-start time and sub second native cold-start time.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1521544924

   Thanks for the reply!
   
   I tested this same flow with the same integration specs in two different brand-new clusters; one on GKE, and the other on Azure. Both clusters have the default disk type chosen when the cluster was set up. I don't see why & how this could have an effect but I am happy to dive into it if you could give me some concrete steps to follow.
   
   Resetting all integrations and kits is something I already tried but I'll give it another go and keep you posted.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1561105011

   Let's make a step back, so we can understand with a simpler reproducer what could be going on. I've tested a generic openapi route [1] which we can use as a benchmark. This one is running in my local cluster like:
   ```
   [1] 2023-05-24 12:53:49,106 INFO  [org.apa.cam.k.Runtime] (main) Apache Camel K Runtime 1.17.0
   [1] 2023-05-24 12:53:49,124 INFO  [org.apa.cam.qua.cor.CamelBootstrapRecorder] (main) Bootstrap runtime: org.apache.camel.quarkus.main.CamelMainRuntime
   [1] 2023-05-24 12:53:49,126 INFO  [org.apa.cam.mai.MainSupport] (main) Apache Camel (Main) 3.20.1 is starting
   [1] 2023-05-24 12:53:49,170 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='greetings', language='groovy', type='source', location='file:/etc/camel/sources/greetings.groovy', }
   [1] 2023-05-24 12:53:49,284 INFO  [org.apa.cam.k.lis.SourcesConfigurer] (main) Loading routes from: SourceDefinition{name='greetings-api', language='xml', type='source', location='file:/etc/camel/sources/greetings-api.xml', }
   [1] 2023-05-24 12:53:50,639 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) is starting
   [1] 2023-05-24 12:53:50,653 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Routes startup (started:2)
   [1] 2023-05-24 12:53:50,654 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started route1 (direct://greeting-api)
   [1] 2023-05-24 12:53:50,654 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main)     Started greeting-api (rest://get:/camel/:/greetings/%7Bname%7D)
   [1] 2023-05-24 12:53:50,654 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 116ms (build:0ms init:102ms start:14ms)
   [1] 2023-05-24 12:53:50,761 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 3.266s. Listening on: http://0.0.0.0:8080
   [1] 2023-05-24 12:53:50,762 INFO  [io.quarkus] (main) Profile prod activated. 
   [1] 2023-05-24 12:53:50,762 INFO  [io.quarkus] (main) Installed features: [camel-attachments, camel-bean, camel-core, camel-direct, camel-groovy-dsl, camel-k-core, camel-k-runtime, camel-kubernetes, camel-log, camel-platform-http, camel-rest, camel-xml-io-dsl, cdi, kubernetes-client, security, smallrye-context-propagation, vertx]
   ```
   We should not look at the elapsed time shown in the trace log, but to the trace log instead. So, the application starts at `2023-05-24 12:53:49,106` and finishes at `2023-05-24 12:53:50,762`, around. 1.5 seconds in JVM mode.
   
   @mertdotcc could you please run this very same example in your cluster so we can look at performance differences? according to the first information of this issue, the problem was about some delay when loading routes. 
   
   [1] https://github.com/apache/camel-k-examples/tree/main/generic-examples/openapi


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489822009

   @christophd Yes, I am also running on a Mac M1, but I donā€™t see how thatā€™s relevant. The routes get built, deployed, and then run in the cluster anyway. Why would my local environment have any affect on this?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1508228780

   What was the runtime base image we were using before eclipse:temurin? Maybe I can try deploying the same integrations with that base image to see whether it is actually due to that.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] essobedo commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "essobedo (via GitHub)" <gi...@apache.org>.
essobedo commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1520415463

   AFAIU this ticket is about the JVM mode


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1520585220

   Thanks for the replies!
   
   Yes, @essobedo, you are right. I have been using the JVM mode all along.
   
   @squakez This is super strange... What might be causing me to have 39 seconds of startup time while you have 3.15 seconds? Camel startup time in your example output is also much faster at 140ms while mine is 1.8 seconds.
   
   I want to get to the bottom of this and if there is anything (any difference between our clusters, etc) you think might be causing this discrepancy please let me know and I'll try it on my end.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1491428055

   ```
   2023-03-30 20:59:58,998 DEBUG [org.apa.cam.dsl.jav.joo.MultiCompile] (main) Java JooR Compile -classpath: ./resources:/etc/camel/application.properties:/etc/camel/conf.d/_resources:/etc/camel/resources:/etc/camel/resources/sample-error-response.json:/etc/camel/resources/simple-body.json:/etc/camel/sources/TestOne.java:/etc/camel/sources/test-one-openapi.xml:dependencies/app/camel-k-integration-1.12.0.jar:dependencies/lib/boot/io.github.crac.org-crac-0.1.3.jar:dependencies/lib/boot/io.quarkus.quarkus-bootstrap-runner-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-development-mode-spi-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-vertx-latebound-mdc-provider-2.16.0.Final.jar:dependencies/lib/boot/io.smallrye.common.smallrye-common-io-1.13.2.jar:dependencies/lib/boot/org.glassfish.jakarta.json-1.1.6.jar:dependencies/lib/boot/org.graalvm.sdk.graal-sdk-22.3.0.jar:dependencies/lib/boot/org.jboss.logging.jboss-logging-3.5.0.Final.jar:dependencies/lib/boot/org.jboss
 .logmanager.jboss-logmanager-embedded-1.0.11.jar:dependencies/lib/boot/org.wildfly.common.wildfly-common-1.5.4.Final-format-001.jar:dependencies/lib/main/com.aayushatharva.brotli4j.brotli4j-1.8.0.jar:dependencies/lib/main/com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-annotations-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-core-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-databind-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.module.jackson-module-parameter-names-2.14.1.jar:dependencies/lib/main/com.github.mifmif.generex-1.0.2.jar:dependencies/lib/main/com.squareup.okhttp3.logging-interceptor-3.14.9.jar
 :dependencies/lib/main/com.squareup.okhttp3.okhttp-3.14.9.jar:dependencies/lib/main/com.squareup.okio.okio-1.17.2.jar:dependencies/lib/main/com.sun.activation.jakarta.activation-1.2.1.jar:dependencies/lib/main/dk.brics.automaton.automaton-1.11-8.jar:dependencies/lib/main/io.fabric8.kubernetes-client-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-httpclient-okhttp-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-admissionregistration-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apiextensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apps-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-autoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-batch-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-certificates-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-common-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-
 coordination-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-core-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-discovery-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-events-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-extensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-flowcontrol-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-gatewayapi-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-metrics-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-networking-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-node-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-policy-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-rbac-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-scheduling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-storageclass-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-6.3.1.jar:dependencies/lib/m
 ain/io.fabric8.openshift-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-clusterautoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-config-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-console-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-hive-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-installer-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machine-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machineconfig-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-miscellaneous-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-monitoring-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operatorhub-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-storageversionmigrator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-m
 odel-tuned-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-whereabouts-6.3.1.jar:dependencies/lib/main/io.fabric8.zjsonpatch-0.3.0.jar:dependencies/lib/main/io.netty.netty-buffer-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-haproxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http2-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-socks-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-common-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-proxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-4.1.86.Final.jar:dependencies/lib
 /main/io.netty.netty-transport-native-unix-common-4.1.86.Final.jar:dependencies/lib/main/io.quarkus.arc.arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-core-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-credentials-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-fs-util-0.0.9.jar:dependencies/lib/main/io.quarkus.quarkus-jackson-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-jsonp-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-internal-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-logging-json-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-mutiny-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-netty-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-runtime-sp
 i-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-context-propagation-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-health-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.security.quarkus-security-1.1.4.Final.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-annotation-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-classloader-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-constraint-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-expression-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-function-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-vertx-context-1.13.2.jar:dependencies/lib/main/io.smallrye.config
 .smallrye-config-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-common-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-core-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-source-yaml-2.13.1.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-smallrye-context-propagation-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-core-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.30
 .1.jar:dependencies/lib/main/io.smallrye.reactive.vertx-mutiny-generator-2.30.1.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-api-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-storage-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-fault-tolerance-vertx-5.6.0.jar:dependencies/lib/main/io.smallrye.smallrye-health-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-api-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-provided-checks-3.3.1.jar:dependencies/lib/main/io.vertx.vertx-auth-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-bridge-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-codegen-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-core-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-uri-template-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-common-4.3.7.jar:dependencie
 s/lib/main/jakarta.annotation.jakarta.annotation-api-1.3.5.jar:dependencies/lib/main/jakarta.el.jakarta.el-api-3.0.3.jar:dependencies/lib/main/jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.jar:dependencies/lib/main/jakarta.inject.jakarta.inject-api-1.0.jar:dependencies/lib/main/jakarta.interceptor.jakarta.interceptor-api-1.2.5.jar:dependencies/lib/main/jakarta.transaction.jakarta.transaction-api-1.3.3.jar:dependencies/lib/main/org.apache.camel.camel-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-attachments-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-bean-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cloud-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cluster-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-componentdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-catalog-3.20.1.jar:
 dependencies/lib/main/org.apache.camel.camel-core-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-languages-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-processor-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-reifier-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-direct-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-dsl-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-endpointdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-java-joor-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-kubernetes-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-main-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-management-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-config-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel
 -microprofile-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-vertx-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-rest-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-tooling-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-json-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-vertx-common-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-api-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-support-1.17.0.jar:dependencies/lib/main/o
 rg.apache.camel.k.camel-k-runtime-1.17.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-attachments-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-bean-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-cloud-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-direct-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-java-joor-dsl-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-kubernetes-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-microprofile-health-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-platform-http-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-rest-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-bouncycastle-2.16.0.jar:dependencies/lib/main/org.apache.ca
 mel.quarkus.camel-quarkus-support-commons-logging-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-xml-io-dsl-2.16.0.jar:dependencies/lib/main/org.apache.commons.commons-compress-1.22.jar:dependencies/lib/main/org.bouncycastle.bcpkix-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcprov-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcutil-jdk15on-1.70.jar:dependencies/lib/main/org.eclipse.microprofile.config.microprofile-config-api-2.0.1.jar:dependencies/lib/main/org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.jar:dependencies/lib/main/org.eclipse.microprofile.health.microprofile-health-api-3.1.jar:dependencies/lib/main/org.javassist.javassist-3.26.0-GA.jar:dependencies/lib/main/org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final.jar:dependencies/lib/main/org.jboss.logging.jboss-logging-annotations-2.2.1.Final.jar:dependencies/lib/main/org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final.jar:depend
 encies/lib/main/org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final.jar:dependencies/lib/main/org.jboss.threads.jboss-threads-3.4.3.Final.jar:dependencies/lib/main/org.jooq.joor-0.9.14.jar:dependencies/lib/main/org.reactivestreams.reactive-streams-1.0.3.jar:dependencies/lib/main/org.slf4j.slf4j-api-1.7.36.jar:dependencies/lib/main/org.yaml.snakeyaml-1.33.jar:dependencies/quarkus-app-dependencies.txt:dependencies/quarkus-run.jar:dependencies/quarkus/generated-bytecode.jar:dependencies/quarkus/quarkus-application.dat:dependencies/quarkus/transformed-bytecode.jar
   2023-03-30 21:00:14,797 DEBUG [org.apa.cam.dsl.jav.joo.JavaRoutesBuilderLoader] (main) Compiled: TestOne -> Routes: []
   ```
   this one looks suspiciously time consuming...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


Re: [I] Startup times take way longer than advertised numbers [camel-k]

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-2064113658

   Probably no longer relevant after such a long time. Please, create a new issue tested against latest version if it is required.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1560932586

   Do you happen to have any updates about this issue? 
   
   @squakez I tried resetting all kits and starting from scratch. Multiple times actually, in different clusters and environments. I can't seem to achieve fast startup times...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] squakez commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "squakez (via GitHub)" <gi...@apache.org>.
squakez commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1560947069

   I don't have any update about this one, sorry. I can suggest you try on different clusters to figure it out if the problem is related somehow to the cluster/hardware used.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1489822713

   @squakez Will do that! Do we have any readily-available examples somewhere?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] mertdotcc commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "mertdotcc (via GitHub)" <gi...@apache.org>.
mertdotcc commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1490965586

   ```
   2023-03-30 21:00:21,899 INFO  [org.apa.cam.imp.eng.AbstractCamelContext] (main) Apache Camel 3.20.1 (camel-1) started in 3s99ms (build:0ms init:2s402ms start:697ms)
   ```
   
   ```
   2023-03-30 21:00:23,505 INFO  [io.quarkus] (main) camel-k-integration 1.12.0 on JVM (powered by Quarkus 2.16.0.Final) started in 54.597s. Listening on: http://0.0.0.0:8080
   ```
   
   Why such big differences?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] essobedo commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "essobedo (via GitHub)" <gi...@apache.org>.
essobedo commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1491450185

   > ```
   > 2023-03-30 20:59:58,998 DEBUG [org.apa.cam.dsl.jav.joo.MultiCompile] (main) Java JooR Compile -classpath: ./resources:/etc/camel/application.properties:/etc/camel/conf.d/_resources:/etc/camel/resources:/etc/camel/resources/sample-error-response.json:/etc/camel/resources/simple-body.json:/etc/camel/sources/TestOne.java:/etc/camel/sources/test-one-openapi.xml:dependencies/app/camel-k-integration-1.12.0.jar:dependencies/lib/boot/io.github.crac.org-crac-0.1.3.jar:dependencies/lib/boot/io.quarkus.quarkus-bootstrap-runner-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-development-mode-spi-2.16.0.Final.jar:dependencies/lib/boot/io.quarkus.quarkus-vertx-latebound-mdc-provider-2.16.0.Final.jar:dependencies/lib/boot/io.smallrye.common.smallrye-common-io-1.13.2.jar:dependencies/lib/boot/org.glassfish.jakarta.json-1.1.6.jar:dependencies/lib/boot/org.graalvm.sdk.graal-sdk-22.3.0.jar:dependencies/lib/boot/org.jboss.logging.jboss-logging-3.5.0.Final.jar:dependencies/lib/boot/org.jbo
 ss.logmanager.jboss-logmanager-embedded-1.0.11.jar:dependencies/lib/boot/org.wildfly.common.wildfly-common-1.5.4.Final-format-001.jar:dependencies/lib/main/com.aayushatharva.brotli4j.brotli4j-1.8.0.jar:dependencies/lib/main/com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-annotations-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-core-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.core.jackson-databind-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.14.1.jar:dependencies/lib/main/com.fasterxml.jackson.module.jackson-module-parameter-names-2.14.1.jar:dependencies/lib/main/com.github.mifmif.generex-1.0.2.jar:dependencies/lib/main/com.squareup.okhttp3.logging-interceptor-3.14.9.j
 ar:dependencies/lib/main/com.squareup.okhttp3.okhttp-3.14.9.jar:dependencies/lib/main/com.squareup.okio.okio-1.17.2.jar:dependencies/lib/main/com.sun.activation.jakarta.activation-1.2.1.jar:dependencies/lib/main/dk.brics.automaton.automaton-1.11-8.jar:dependencies/lib/main/io.fabric8.kubernetes-client-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-httpclient-okhttp-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-admissionregistration-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apiextensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-apps-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-autoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-batch-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-certificates-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-common-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-mode
 l-coordination-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-core-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-discovery-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-events-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-extensions-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-flowcontrol-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-gatewayapi-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-metrics-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-networking-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-node-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-policy-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-rbac-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-scheduling-6.3.1.jar:dependencies/lib/main/io.fabric8.kubernetes-model-storageclass-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-client-6.3.1.jar:dependencies/lib
 /main/io.fabric8.openshift-client-api-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-clusterautoscaling-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-config-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-console-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-hive-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-installer-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machine-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-machineconfig-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-miscellaneous-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-monitoring-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-operatorhub-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-storageversionmigrator-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift
 -model-tuned-6.3.1.jar:dependencies/lib/main/io.fabric8.openshift-model-whereabouts-6.3.1.jar:dependencies/lib/main/io.fabric8.zjsonpatch-0.3.0.jar:dependencies/lib/main/io.netty.netty-buffer-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-haproxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-http2-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-codec-socks-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-common-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-handler-proxy-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-resolver-dns-4.1.86.Final.jar:dependencies/lib/main/io.netty.netty-transport-4.1.86.Final.jar:dependencies/l
 ib/main/io.netty.netty-transport-native-unix-common-4.1.86.Final.jar:dependencies/lib/main/io.quarkus.arc.arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-arc-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-core-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-credentials-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-fs-util-0.0.9.jar:dependencies/lib/main/io.quarkus.quarkus-jackson-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-jsonp-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-kubernetes-client-internal-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-logging-json-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-mutiny-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-netty-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-security-runtime-
 spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-context-propagation-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-smallrye-health-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.16.0.Final.jar:dependencies/lib/main/io.quarkus.security.quarkus-security-1.1.4.Final.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-annotation-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-classloader-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-constraint-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-expression-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-function-1.13.2.jar:dependencies/lib/main/io.smallrye.common.smallrye-common-vertx-context-1.13.2.jar:dependencies/lib/main/io.smallrye.conf
 ig.smallrye-config-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-common-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-core-2.13.1.jar:dependencies/lib/main/io.smallrye.config.smallrye-config-source-yaml-2.13.1.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.mutiny-smallrye-context-propagation-1.8.0.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-core-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-2.30.1.jar:dependencies/lib/main/io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.
 30.1.jar:dependencies/lib/main/io.smallrye.reactive.vertx-mutiny-generator-2.30.1.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-api-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-context-propagation-storage-1.2.2.jar:dependencies/lib/main/io.smallrye.smallrye-fault-tolerance-vertx-5.6.0.jar:dependencies/lib/main/io.smallrye.smallrye-health-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-api-3.3.1.jar:dependencies/lib/main/io.smallrye.smallrye-health-provided-checks-3.3.1.jar:dependencies/lib/main/io.vertx.vertx-auth-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-bridge-common-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-codegen-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-core-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-uri-template-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-4.3.7.jar:dependencies/lib/main/io.vertx.vertx-web-common-4.3.7.jar:dependenc
 ies/lib/main/jakarta.annotation.jakarta.annotation-api-1.3.5.jar:dependencies/lib/main/jakarta.el.jakarta.el-api-3.0.3.jar:dependencies/lib/main/jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.jar:dependencies/lib/main/jakarta.inject.jakarta.inject-api-1.0.jar:dependencies/lib/main/jakarta.interceptor.jakarta.interceptor-api-1.2.5.jar:dependencies/lib/main/jakarta.transaction.jakarta.transaction-api-1.3.3.jar:dependencies/lib/main/org.apache.camel.camel-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-attachments-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-base-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-bean-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cloud-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-cluster-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-componentdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-catalog-3.20.1.ja
 r:dependencies/lib/main/org.apache.camel.camel-core-engine-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-languages-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-processor-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-core-reifier-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-direct-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-dsl-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-endpointdsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-java-joor-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-kubernetes-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-main-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-management-api-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-microprofile-config-3.20.1.jar:dependencies/lib/main/org.apache.camel.cam
 el-microprofile-health-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-platform-http-vertx-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-rest-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-support-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-tooling-model-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-util-json-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-vertx-common-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-dsl-3.20.1.jar:dependencies/lib/main/org.apache.camel.camel-xml-io-util-3.20.1.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-api-1.17.0.jar:dependencies/lib/main/org.apache.camel.k.camel-k-core-support-1.17.0.jar:dependencies/lib/main
 /org.apache.camel.k.camel-k-runtime-1.17.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-attachments-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-bean-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-core-cloud-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-direct-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-java-joor-dsl-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-kubernetes-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-microprofile-health-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-platform-http-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-rest-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-support-bouncycastle-2.16.0.jar:dependencies/lib/main/org.apache.
 camel.quarkus.camel-quarkus-support-commons-logging-2.16.0.jar:dependencies/lib/main/org.apache.camel.quarkus.camel-quarkus-xml-io-dsl-2.16.0.jar:dependencies/lib/main/org.apache.commons.commons-compress-1.22.jar:dependencies/lib/main/org.bouncycastle.bcpkix-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcprov-jdk15on-1.70.jar:dependencies/lib/main/org.bouncycastle.bcutil-jdk15on-1.70.jar:dependencies/lib/main/org.eclipse.microprofile.config.microprofile-config-api-2.0.1.jar:dependencies/lib/main/org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.jar:dependencies/lib/main/org.eclipse.microprofile.health.microprofile-health-api-3.1.jar:dependencies/lib/main/org.javassist.javassist-3.26.0-GA.jar:dependencies/lib/main/org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final.jar:dependencies/lib/main/org.jboss.logging.jboss-logging-annotations-2.2.1.Final.jar:dependencies/lib/main/org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final.jar:depe
 ndencies/lib/main/org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final.jar:dependencies/lib/main/org.jboss.threads.jboss-threads-3.4.3.Final.jar:dependencies/lib/main/org.jooq.joor-0.9.14.jar:dependencies/lib/main/org.reactivestreams.reactive-streams-1.0.3.jar:dependencies/lib/main/org.slf4j.slf4j-api-1.7.36.jar:dependencies/lib/main/org.yaml.snakeyaml-1.33.jar:dependencies/quarkus-app-dependencies.txt:dependencies/quarkus-run.jar:dependencies/quarkus/generated-bytecode.jar:dependencies/quarkus/quarkus-application.dat:dependencies/quarkus/transformed-bytecode.jar
   > 2023-03-30 21:00:14,797 DEBUG [org.apa.cam.dsl.jav.joo.JavaRoutesBuilderLoader] (main) Compiled: TestOne -> Routes: []
   > ```
   > 
   > this one looks suspiciously time consuming...
   
   That is exactly what I suspected, 17 seconds only for the runtime compilation of the `RouteBuilder` class


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] lburgazzoli commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "lburgazzoli (via GitHub)" <gi...@apache.org>.
lburgazzoli commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1492630178

   The camel-quarkus-kubernetes is included because camel-k relies on the property function shipped by camel-kubernetes to read from secrets and configmaps, 
   I don't recall the reason of camel-bean but I believe it has to do with properties to object mapping.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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


[GitHub] [camel-k] claudio4j commented on issue #4192: Startup times take way longer than advertised numbers

Posted by "claudio4j (via GitHub)" <gi...@apache.org>.
claudio4j commented on issue #4192:
URL: https://github.com/apache/camel-k/issues/4192#issuecomment-1714627213

   Reopen as it deserves more investigation.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

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