Re: Activate Some Services

2009-07-08 Thread Jose Luna
> using only one queue can block consumers , besides i think that a queue can't > support 30 million of messages Again, it's not clear to me what you want to do with these messages after they're persisted. I don't think you'll be able to get any useful help without providing more details.

Re: Activate Some Services

2009-07-08 Thread Roland Thomas Lichti
James Strachan schrieb: > 2009/7/8 Gabriel1982 : > >> besides i think that a queue can't >> support 30 million of >> messages >> > It should be able to Having a broker with Oracle SQL backend I'm able to tell that a startup with 210 messages in one queue takes about 35 minutes (local or

Re: Activate Some Services

2009-07-08 Thread James Strachan
2009/7/8 Gabriel1982 : > > using only one queue can block consumers In what way? > besides i think that a queue can't > support 30 million of > messages It should be able to. -- James --- http://macstrac.blogspot.com/ Open Source Integration http://fusesource.com/

Re: Activate Some Services

2009-07-08 Thread Gabriel1982
using only one queue can block consumers , besides i think that a queue can't support 30 million of messages Jose Luna-2 wrote: > > > > >> This is the problem , because i need 30 millions queue and i can't use >> topics >> instead >> >> Thanks a lot Mr James for you help >> > > > It

Re: Activate Some Services

2009-07-08 Thread Jose Luna
> This is the problem , because i need 30 millions queue and i can't use topics > instead > > Thanks a lot Mr James for you help > It's not clear to me what you want to do with them after you persist them, but you can send them all to a single queue then have a service that consumes from

Re: Activate Some Services

2009-07-08 Thread Gabriel1982
This is the problem , because i need 30 millions queue and i can't use topics instead Thanks a lot Mr James for you help James.Strachan wrote: > > 2009/7/8 Gabriel1982 : >> >> yes but the brokerService is essentially used to manage messages in the >> Queues or Topics >> >> but for me i don't

Re: Activate Some Services

2009-07-08 Thread James Strachan
2009/7/8 Gabriel1982 : > > yes but the brokerService is essentially used to manage messages in the > Queues or Topics > > but for me i don't need even to create any Queues or Topics in the memory . > > i just want to persist them in the disk and then get them from the disk . > > you think it's poss

Re: Activate Some Services

2009-07-08 Thread Gabriel1982
yes but the brokerService is essentially used to manage messages in the Queues or Topics but for me i don't need even to create any Queues or Topics in the memory . i just want to persist them in the disk and then get them from the disk . you think it's possible ? Tanks a lot Mr James for you

Re: Activate Some Services

2009-07-08 Thread James Strachan
2009/7/8 Gabriel1982 : > > Thanks a lot Mr James > > but i don't need the broker service . > > i would like to use the stomp interface listener to intercept messages and > than persist them in a database without using cache memory . in other words > i want to use just the server of socket of active

Re: Activate Some Services

2009-07-08 Thread Gabriel1982
Thanks a lot Mr James but i don't need the broker service . i would like to use the stomp interface listener to intercept messages and than persist them in a database without using cache memory . in other words i want to use just the server of socket of activemq through to it's stomp interface .

Re: Activate Some Services

2009-07-08 Thread James Strachan
2009/7/8 Gabriel1982 : > > Hello , > > > i want to know if it's possible to activate just one service for the > activemq. > > for example just activate the TransportServer service. To do what BTW? The TransportServer is designed to work with a Broker; so you need the BrokerService. You can choos