Re: RE: Is it possible to limit the storage in ActiveMQ ?

2020-03-07 Thread Martin Lichtin
rg Subject: Re: Is it possible to limit the storage in ActiveMQ ? Hi, the System will perform scans on the disk to determine if the disk is beyond a configured limit. These are configured through `max-disk-usage` in percentage. Once that limit is reached any message will be blocked. (unless th

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-03 Thread Jean-Baptiste Onofre
t mean that if we set this value it will not create new >>>> db-xxx.log files if the number of db-xxx.log files * 32 Mb >= >> storeUsage value ? >>> >>> Best Regards. >>> >>> -----Original Message- >>> From: Jonathan Gallimore

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-03 Thread Tim Bain
ore [mailto:jonathan.gallim...@gmail.com] > > Sent: lundi 2 mars 2020 14:14 > > To: users@activemq.apache.org > > Subject: Re: Is it possible to limit the storage in ActiveMQ ? > > > > I don't know if you can specify the store size via the URL - I suspect > not.

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread Jean-Baptiste Onofre
if the number of db-xxx.log files * 32 Mb >= storeUsage >> value ? > > Best Regards. > > -Original Message- > From: Jonathan Gallimore [mailto:jonathan.gallim...@gmail.com] > Sent: lundi 2 mars 2020 14:14 > To: users@activemq.apache.org > Subject: Re: Is i

RE: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread COURTAULT Francois
..@gmail.com] Sent: lundi 2 mars 2020 14:14 To: users@activemq.apache.org Subject: Re: Is it possible to limit the storage in ActiveMQ ? I don't know if you can specify the store size via the URL - I suspect not. You can provide an activemq.xml config file for ActiveMQ running in To

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread Jonathan Gallimore
localhost:61616)?usekahadb=true&kahadb.directory= ? > > Best Regards. > > -Original Message- > From: Jean-Baptiste Onofre [mailto:j...@nanthrax.net] > Sent: lundi 2 mars 2020 12:30 > To: users@activemq.apache.org > Subject: Re: Is it possible to limit the st

RE: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread COURTAULT Francois
Onofre [mailto:j...@nanthrax.net] Sent: lundi 2 mars 2020 12:30 To: users@activemq.apache.org Subject: Re: Is it possible to limit the storage in ActiveMQ ? Hi, You can setup the storeUsage in activemq.xml. It will limit the data store. Regarding the db-xxx.log, it’s the transactional log files, a

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread Jean-Baptiste Onofre
Hi, You can setup the storeUsage in activemq.xml. It will limit the data store. Regarding the db-xxx.log, it’s the transactional log files, and they should be removed when a transaction is done. If you see a lot of db-xxx.log, it means that you have lot of pending persistent messages. A classic

RE: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread COURTAULT Francois
users@activemq.apache.org Subject: Re: Is it possible to limit the storage in ActiveMQ ? Hi, the System will perform scans on the disk to determine if the disk is beyond a configured limit. These are configured through `max-disk-usage` in percentage. Once that limit is reached any message will be bl

Re: Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread brusdev
Hi, the System will perform scans on the disk to determine if the disk is beyond a configured limit. These are configured through `max-disk-usage` in percentage. Once that limit is reached any message will be blocked. (unless the protocol doesn't support flow control on which case there will be an

Is it possible to limit the storage in ActiveMQ ?

2020-03-02 Thread COURTAULT Francois
Hello everyone, In case we have slow consumer and fast producer, for persistent messages, those ones are stored in db-x.log files. In order to avoid a file system full, is there a way to limit the number of files or the number of messages or something else ? Best Regards.