Yonghui Ye
Yonghui Ye
Hi @oscerd, will these changes be merged, and if so I will create a new PR to replace this one.
Hi @oscerd, I create a new PR to replace this PR. https://github.com/apache/camel-spring-boot-examples/pull/87
When using two applications to connect to the Service Bus, the requests are close to 250/min. For each additional application, the requests increase by about 120. As shown below: 
Add the following properties to the configuration: ```properties spring.jms.listener.receive-timeout= ``` Timeout to use for receiving calls. Use -1 for a no-wait receive or 0 for no timeout at all. The...
Use [arthas ](https://arthas.aliyun.com/doc/quick-start.html)to monitor the number of executions of the method [schedule](https://github.com/apache/qpid-jms/blob/main/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpConsumer.java#L202) which is the same as the number of requests on the Service Bus.
> So far trying to get `PooledConnectionFactory` working I have added the following dependencies to the project: `com.azure.spring:spring-cloud-azure-autoconfigure` to get the `AzureServiceBusJmsProperties` and `org.apache.activemq:activemq-pool` to get `PooledConnectionFactory`. > > The...
> Hi, using spring-cloud-azure-starter-servicebus-jms:4.0.0 or a later version 4.3.0 with the `pool:enabled: true` setting makes the factory class `org.messaginghub.pooled.jms.JmsPoolConnectionFactory`. Can you confirm if the solution above is referring to the...
@craigblackman2 Can you tell us about your usage scenarios, or have error logs? In this [PR ](https://github.com/Azure/azure-sdk-for-java/pull/26159)we have provided `serviceBusJmsConnectionFactoryFactory`. You can refer to [ConnectionStringResolver](https://github.com/Azure-Samples/spring-jms-service-bus/blob/master/spring-jms-service-bus-topic-sample/src/main/java/sample/ConnectionStringResolver.java) and [ServiceBusKey](https://github.com/Azure-Samples/spring-jms-service-bus/blob/master/spring-jms-service-bus-topic-sample/src/main/java/sample/ServiceBusKey.java) to try.
> @hui1110 Yonghui Ye (CSI Interfusion Inc) Vendor Our usage scenario is receiving a JMS message via a method annotated with `@JmsListener`to trigger a Spring Batch Job, once that Job...
@craigblackman2 Can you provide a sample that reproduces the problem, I run it locally for about 50 minutes and send and receive messages normally. Here is the log: ```text 2022-09-28...