[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-04-06 Thread taggat
unfortunatly not, I tried alot of messageing services to try and get the load 
levels that we wanted, and i couldn't get jboss to handle the loads correctly.

Our load levels are in the order of 

300 Queue Receivers
150 Queue Writers
400 messages a second read and write.

I know jboss has now fully released jboss messaging now, but unfortunatly we 
could not wait for a stable release to continue our development cycle and have 
had to go for a commercial product as all the open source jms servers could not 
handle the concurrent load and restart with 1 million messages enqueued.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935330#3935330

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935330


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-04-05 Thread jaink
Hi,

I was curiously to find out if upgrade to newer version worked for you. I have 
just looking into Jboss MQ and will appreciate it you could reply.

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3935266#3935266

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3935266


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-02-28 Thread taggat
thanks for that, I will try that out.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3926723#3926723

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3926723


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-02-27 Thread [EMAIL PROTECTED]
As stated in the wiki page, RecoverMessagesChunk is only available in 
4.0.4/3.2.8 and higher. 4.0.4RC1 also has the change.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3926615#3926615

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3926615


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-02-26 Thread taggat
Scott, thanks for the links, I went through them and made the changes, however 
the documented settings don't seem to work on the build that i have.

I am using jboss 4.0.3SP1

my configuration file for postgres is 

  | ?xml version=1.0 encoding=UTF-8?
  | !-- $Id: postgres-jdbc2-service.xml,v 1.8.2.3 2005/08/13 20:47:52 adrian 
Exp $ --
  | server
  |   mbean code=org.jboss.mq.server.jmx.DestinationManager 
name=jboss.mq:service=DestinationManager
  | depends 
optional-attribute-name=MessageCachejboss.mq:service=MessageCache/depends
  | depends 
optional-attribute-name=PersistenceManagerjboss.mq:service=PersistenceManager/depends
  | depends 
optional-attribute-name=StateManagerjboss.mq:service=StateManager/depends
  |   /mbean
  |   mbean code=org.jboss.mq.server.MessageCache
  |  name=jboss.mq:service=MessageCache
  | attribute name=HighMemoryMark50/attribute
  | attribute name=MaxMemoryMark60/attribute
  | attribute 
name=CacheStorejboss.mq:service=PersistenceManager/attribute
  |   /mbean
  |   mbean code=org.jboss.mq.pm.jdbc2.PersistenceManager
  |  name=jboss.mq:service=PersistenceManager
  | depends 
optional-attribute-name=ConnectionManagerjboss.jca:service=DataSourceBinding,name=PostgresDS/depends
  | attribute name=SqlProperties
  |   BLOB_TYPE=BYTES_BLOB
  |   INSERT_TX = INSERT INTO JMS_TRANSACTIONS (TXID) values(?)
  |   INSERT_MESSAGE = INSERT INTO JMS_MESSAGES (MESSAGEID, DESTINATION, 
MESSAGEBLOB, TXID, TXOP) VALUES(?,?,?,?,?)
  |   SELECT_ALL_UNCOMMITED_TXS = SELECT TXID FROM JMS_TRANSACTIONS
  |   SELECT_MAX_TX = SELECT MAX(TXID) FROM (SELECT MAX(TXID) AS TXID FROM 
JMS_TRANSACTIONS UNION SELECT MAX(TXID) AS TXID FROM JMS_MESSAGES)
  |   DELETE_ALL_TX = DELETE FROM JMS_TRANSACTIONS
  |   SELECT_MESSAGES_IN_DEST = SELECT MESSAGEID, MESSAGEBLOB FROM 
JMS_MESSAGES WHERE DESTINATION=?
  |   SELECT_MESSAGE = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGES 
WHERE MESSAGEID=? AND DESTINATION=?
  |   MARK_MESSAGE = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE 
MESSAGEID=? AND DESTINATION=?
  |   UPDATE_MESSAGE = UPDATE JMS_MESSAGES SET MESSAGEBLOB=? WHERE 
MESSAGEID=? AND DESTINATION=?
  |   UPDATE_MARKED_MESSAGES = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE 
TXOP=?
  |   UPDATE_MARKED_MESSAGES_WITH_TX = UPDATE JMS_MESSAGES SET TXID=?, 
TXOP=? WHERE TXOP=? AND TXID=?
  |   UPDATE_MESSAGE = UPDATE JMS_MESSAGES SET MESSAGEBLOB=? WHERE 
MESSAGEID=? AND DESTINATION=?
  |   UPDATE_MARKED_MESSAGES = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE 
TXOP=?
  |   UPDATE_MARKED_MESSAGES_WITH_TX = UPDATE JMS_MESSAGES SET TXID=?, 
TXOP=? WHERE TXOP=? AND TXID=?
  |   DELETE_MARKED_MESSAGES_WITH_TX = DELETE FROM JMS_MESSAGES WHERE TXID 
IN (SELECT TXID FROM JMS_TRANSACTIONS) AND TXOP=?
  |   DELETE_TX = DELETE FROM JMS_TRANSACTIONS WHERE TXID = ?
  |   DELETE_MARKED_MESSAGES = DELETE FROM JMS_MESSAGES WHERE TXID=? AND 
TXOP=?
  |   DELETE_TEMPORARY_MESSAGES = DELETE FROM JMS_MESSAGES WHERE TXOP='T'
  |   DELETE_MESSAGE = DELETE FROM JMS_MESSAGES WHERE MESSAGEID=? AND 
DESTINATION=?
  |   CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGES (MESSAGEID INTEGER 
NOT NULL, DESTINATION VARCHAR(150) NOT NULL, TXID INTEGER, TXOP CHAR(1), 
MESSAGEBLOB BYTEA, PRIMARY KEY (MESSAGEID, DESTINATION))
  |   CREATE_IDX_MESSAGE_TXOP_TXID = CREATE INDEX JMS_MESSAGES_TXOP_TXID ON 
JMS_MESSAGES (TXOP, TXID)
  |   CREATE_IDX_MESSAGE_DESTINATION = CREATE INDEX 
JMS_MESSAGES_DESTINATION ON JMS_MESSAGES (DESTINATION)
  |   CREATE_TX_TABLE = CREATE TABLE JMS_TRANSACTIONS ( TXID INTEGER, 
PRIMARY KEY (TXID) )
  |   CREATE_TABLES_ON_STARTUP = TRUE
  | /attribute
  | attribute name=RecoverMessagesChunk1/attribute
  |   /mbean
  | 
  | /server
  | 

when i run with this version, of which the attribute 
name=RecoverMessagesChunk1/attribute is the only new line from the 
configuration, i get the following error on startup.


  | 2006-02-27 07:20:21,439 DEBUG [org.jboss.system.ServiceCreator] Created 
bean: jboss.mq:service=MessageCache
  | 2006-02-27 07:20:21,439 DEBUG [org.jboss.system.ServiceConfigurator] 
HighMemoryMark set to 50 in jboss.mq:service=MessageCache
  | 2006-02-27 07:20:21,481 DEBUG [org.jboss.system.ServiceConfigurator] 
MaxMemoryMark set to 60 in jboss.mq:service=MessageCache
  | 2006-02-27 07:20:21,483 DEBUG [org.jboss.system.ServiceConfigurator] 
CacheStore set to jboss.mq:service=PersistenceManager in 
jboss.mq:service=MessageCache
  | 2006-02-27 07:20:21,484 DEBUG [org.jboss.system.ServiceCreator] About to 
create bean: jboss.mq:service=PersistenceManager with code: 
org.jboss.mq.pm.jdbc2.PersistenceManager
  | 2006-02-27 07:20:21,535 DEBUG [org.jboss.system.ServiceCreator] Created 
bean: jboss.mq:service=PersistenceManager
  | 2006-02-27 07:20:21,535 DEBUG [org.jboss.system.ServiceController] 
recording that jboss.mq:service=PersistenceManager depends on 

[JBoss-user] [Messaging, JMS JBossMQ] - Re: out of memory error loading large queue

2006-02-23 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigJBossMQJDBC2Persistence
4.0.4 has more options for recovering large msg stores.

http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925883#3925883

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925883


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user