You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2008/06/17 06:59:00 UTC

[jira] Commented: (CAMEL-604) New JMS connection being created for every message

    [ https://issues.apache.org/activemq/browse/CAMEL-604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43497#action_43497 ] 

Claus Ibsen commented on CAMEL-604:
-----------------------------------

And I had to add this to your pom.xml to enable JDK1.5
{code}
  <build>
    <defaultGoal>install</defaultGoal>

    <pluginManagement>
      <plugins>

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.0.2</version>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
            <maxmem>256M</maxmem>
            <fork>${compiler.fork}</fork>
          </configuration>
        </plugin>

      </plugins>
    </pluginManagement>
{code}

> New JMS connection being created for every message
> --------------------------------------------------
>
>                 Key: CAMEL-604
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-604
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-jms
>    Affects Versions: 1.3.0
>            Reporter: Eric Levin
>         Attachments: ActiveMQ-Camel-Test.zip, after 130 messages being sent.jpg
>
>
> A new connection is being created / shutdown for every message that is sent through my ActiveMQ JMSComponent.  I thought this issue had been resolved for Camel 1.3; however, as shown within the example project, it doesn't seem to be.  This is very concerning for rapidly produced messages as there is alot of overhead with creating a new connection.
> Forum posting on this issue: http://www.nabble.com/New-connection-being-created-for-every-message-(post-1.3-camel)-td17684874s22882.html
> Steps to running the attached sample:
> -Have an instance of ActiveMQ running (localhost to the test app) with openwire exposed on port 61616 (the default port)
> -After extracting the example project, simply run 'mvn test' and it will begin sending messages through Camel
> -Open JConsole and look under the Connections for localhost broker - you will notice the suffix on connections increasing very quickly as connections are being opened/torn down for every message sent from the test app.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.