Author |
Message
|
nik_iway |
Posted: Tue Apr 04, 2006 9:07 pm Post subject: Queue Manager Log File Problem |
|
|
Centurion
Joined: 21 Jul 2005 Posts: 115
|
Hi
I am getting the Following error
The log for queue manager TEST is full.
---------This message is issued when an attempt to write a log record is rejected because the log is full. The queue manager will attempt to resolve the problem.
This situation may be encountered during a period of unusually high message traffic. However, if you persistently fill the log, you may have to consider enlarging the size of the log. You can either increase the number of log files by changing the values in the queue manager configuration file. You will then have to stop and restart the queue manager. Alternatively, if you need to make the log files themselves bigger, you will have to delete and recreate the queue manager.---------------
I am using java API to connect to the MQ Server. I need to send .PDF files of Size 5.35 mb. I am putting Persistent Messages & Syncpoint. There will be around 200 put at the same time. How to handle the configuration of log files of the Queue manager while creation
Is there any possibility that the previous log files are overwritten or erased.
Eagerly in need of Help
Regards
Nik |
|
Back to top |
|
 |
Vitor |
Posted: Tue Apr 04, 2006 11:27 pm Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
What are the current log settings for this queue manager?
(size, circular / linear, etc, etc, etc)
Also, how much space is free on the drive where the log is being written? _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
oz1ccg |
Posted: Wed Apr 05, 2006 12:51 am Post subject: |
|
|
 Yatiri
Joined: 10 Feb 2002 Posts: 628 Location: Denmark
|
|
Back to top |
|
 |
nik_iway |
Posted: Wed Apr 05, 2006 4:09 am Post subject: |
|
|
Centurion
Joined: 21 Jul 2005 Posts: 115
|
Hi Vitor,
Following is the setting of the Queue Manager
Circular logging
Log File Size : 256
log primary files : 10
log secondary files : 20
log buffer : none
Do i need to do any other configurations......... I am doing this in the development, in the production i have to handle 50,000 MQPUT /day
wat are the configurations that needs to be done so as not face any problems
Waiting for ur valuable advice
Regards
Nik |
|
Back to top |
|
 |
nik_iway |
Posted: Wed Apr 05, 2006 4:11 am Post subject: |
|
|
Centurion
Joined: 21 Jul 2005 Posts: 115
|
Hi,
the size of the file may vary from 1 to 100 mb. how to handle during those circumstances...........
Regards
Nik |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Apr 05, 2006 4:14 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Log file Size is the number of 4Kb pages in an individual log file.
You have LogFile Size = 256
So each one of your log files is 1024Kb, or 1Mb.
You have 30 log files. So your active log is taking up 30Mb of space.
You need to send a persistant message that is 100Mb in size.
You are not able to increase the log file size without recreating your queue manager. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Apr 05, 2006 4:14 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Log file Size is the number of 4Kb pages in an individual log file.
You have LogFile Size = 256
So each one of your log files is 1024Kb, or 1Mb.
You have 30 log files. So your active log is taking up 30Mb of space.
You need to send a persistant message that is 100Mb in size.
You are not able to increase the log file size without recreating your queue manager. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
Vitor |
Posted: Wed Apr 05, 2006 4:20 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
I agree with jefflowery (and I hope the stutter clears up soon!) - the reason you're getting log full messages is probably because your log is full!
You need to read up on logging strategies; there's a lot of useful stuff and (if memory serves me) some formulas for calculating log sizes. Like the man said, these settings can only be changed by recreating the queue manager so research ahead of time will save trouble after the event (especially in your production system). _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|