-
15. Re: Migrating JBoss Messaging 1.4 to HornetQ
nitinkhekare Dec 5, 2011 4:55 AM (in response to gaohoward)Hi
Can you tell me the examples for JMX Bridge for JBM to HornetQ ?
Thanks
-
16. Re: Migrating JBoss Messaging 1.4 to HornetQ
gaohoward Dec 5, 2011 5:58 AM (in response to nitinkhekare)I'm not sure what do you mean by "JMX Bridge". If you want to replace a JBM bridge with HornetQ one, you need to read the user manual. There isn't an example as far as I know.
-
17. Re: Migrating JBoss Messaging 1.4 to HornetQ
nitinkhekare Dec 9, 2011 12:20 AM (in response to gaohoward)Hi
Can you please tell me how we can configure multiple queues and topics with the JMS Bridge?
It is working with single queue.
Thanks
-
18. Re: Migrating JBoss Messaging 1.4 to HornetQ
gaohoward Dec 9, 2011 2:25 AM (in response to nitinkhekare)I think you are going to need to deploy multiple bridge services.
Howard
-
19. Re: Migrating JBoss Messaging 1.4 to HornetQ
nitinkhekare Dec 9, 2011 10:58 AM (in response to gaohoward)Yes, thats right, I did the same thing, deployed multiple bridges and its working fine.
Thanks
-
20. Re: Migrating JBoss Messaging 1.4 to HornetQ
newway Apr 4, 2012 11:05 AM (in response to gaohoward)Hi,
you wrote here
Yong Hao Gao wrote:
An update. It is still a work in progress. No need for everyone to waste time review now. But a quick scan to make sure I'm on the right track will be appreciated.
...
8. Migrating Existing Messages
Here gives the mapping between the database table and the HornetQ's bindings/journal
The main data should be remainging messages and binding informations, and possible long-running transactions.
There should be some tools/scripts to help on this.
Using bridge is also a convenient way.
...
I wasn't using bridges so far, and I need to migrate from JBOSS 4.2.3 that uses messaging 1.4.5 to 7.1.1 - can you point me to where I can find information on - what is a bridge? how do I set it up? ...
thanks,
Noa
-
21. Re: Migrating JBoss Messaging 1.4 to HornetQ
jbertram Apr 4, 2012 11:21 AM (in response to newway)Check out this. Set up a bridge on the JBoss AS 4.2.3 side and push the messages from that server to the AS 7.1.1 server. I think you'll just need the <AS7_HOME>/bin/client/jboss-client.jar on the classpath of the 4.2.3 instance.
-
22. Re: Migrating JBoss Messaging 1.4 to HornetQ
clebert.suconic Apr 4, 2012 3:10 PM (in response to jbertram)One thing that could be done is someone developing an exporter and import with the Importer with XML formater.
Something exports XML on JBM and the importer imports it.
-
23. Re: Migrating JBoss Messaging 1.4 to HornetQ
gaohoward Apr 10, 2012 1:55 AM (in response to clebert.suconic)nice idea. I'll keep this in mind...
-
24. Re: Migrating JBoss Messaging 1.4 to HornetQ
gaohoward Apr 16, 2012 3:41 AM (in response to clebert.suconic)Here is what I'm going to do it:
Write a tool that perform the following tasks:
1. read the JBM server config (messaging-service.xml, xxx-persistence-service and remoting-service.xml) and converts it to hornetq server config (based on what target user wants, it will generate server configuration suitable for AS5, AS7 or standalone).
2. read the JBM destinations and factories configures and converts them to HornetQ destinations and factories.
3. read the JBM messages and converts them to HornetQ ones.
Eash task will be divided into two steps.
Step 1. Reading JBM stuff and outputs the result into a XML file.
Step 2. Reading the XML file and generate HornetQ stuff.
Ideas?
Howard