11,729 questions
0
votes
0
answers
64
views
Apache Camel 4 Timeout Parameters passed on the URI and timeout is not enforced
I am doing this on a Quarkus app using Camel 4:
.toD("https://endpoint?connectionsPerRoute=10&connectTimeout=2000&connectionRequestTimeout=2000%soTimeout=2000&responseTimeout=2000&...
0
votes
0
answers
43
views
How to log information indicating that the camel JpaComponent started
I am using a camel route defined in xml. The route starts from this step:
<camel:route id="jpaRoute" routePolicyRef="startPolicy">
<camel:from uri="jpa://?...
1
vote
0
answers
60
views
Is there any documentation on how idle time is calculated/tracked by Apache Camel?
I have an Camel application (not Spring) with a route that polls an AWS SQS queue.
I want the application to terminate when there are no messages for a period.
I'm not getting the expected behavior ...
0
votes
0
answers
48
views
Camel Kafka Connect Connector for Jira results in "no endpoint could be found"
For exchanging data between ServiceNow and Jira, I'd really like to use the according Camel Kafka Connect connectors. (I'm aware that there exist other connectors on the market as well like for ...
0
votes
1
answer
70
views
Camel JMS component does not cache the connection
We are currently using apache camel to build routes between an IBM Mq broker and some other ones (basically : a messaging bridge)
As an input component, we use the JMS one.
It is performing.... quite ...
0
votes
0
answers
63
views
Apache Camel Route Coverage report shows an unrealistically high number of routes
I am using Apache Camel 4.10.6 with the route coverage plugin enabled.
When I run the report, the overall summary looks like this:
[INFO] Overall coverage summary:
Coverage: 54 out of 1509950778 (0.0%...
0
votes
1
answer
65
views
Camel 4.10.5 on Karaf 4.47: Error No language could be found for: simple when starting CamelContext
I have to run a Camel route on Karaf. I'm using Camel 4.10.5 and Karaf 4.4.7.
**Java **version: 17.0.15
**Maven **version: 3.9.11
Additional I use the Apache camel-karaf 4.10.5 Release camel-karaf 4....
0
votes
0
answers
51
views
Apache Camel OpenTelemetry creates duplicate log events in ELK Stack
I'm experiencing duplicate log events in my ELK Stack when using Apache Camel with OpenTelemetry. The logs appear correctly in the console (no duplicates), but in Elasticsearch/Kibana, each log ...
0
votes
2
answers
79
views
Creating a camel route that can describe the camel context
Is there some sort of way to convert the camel context into a visual thing so people can see the Camel "context" in visual format?
I thought maybe there would be something like "...
0
votes
1
answer
31
views
A message consumed from AMQ even when Camel route fails
I am building a "bridge" between two AMQ7 brokers using Camel routes. When delivery of the message to the second broker fails (e.g the destination broker is offline) the message goes into ...
0
votes
0
answers
83
views
Unable to read the File from Network share using apache camel SMB
I am using springboot-smb-starter component to read a file from a Network share directory.
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-...
1
vote
2
answers
66
views
Does apach camel 4.x not support opcua component any more?
I checked the doc about camel component 4.10.x. There is not component tag about opcua, which is shown in 3.22.x doc. Does apach camel 4.x not support opcua component any more? If so, how to integrate ...
1
vote
0
answers
102
views
Camel Quarkus Micrometer metrics cannot be viewed in Dynatrace
I have a Camel Quarkus application, and I can successfully view the Camel metrics at http://localhost:8080/metrics.
I’m using the Prometheus extension to expose the /metrics endpoint, and Micrometer ...
0
votes
2
answers
66
views
Time Based File Availability Check in Apache Camel - Spring boot
I am implementing a service where my source directory is continously monitored and files will be pulled and pushed to destination. I want to acheive one functionlaity where time based file availablity ...
0
votes
0
answers
35
views
With Apache Camel Large File Processing, Can I Recover at The Last Line Processed
I am using Apache Camel mainly to process large volumes of messages on MQ, reading from one queue and writing to another. We now need to process .gz files which contain up to 1 million lines. Each ...