| Author | 
		  Message
		 | 
		
		  | mqsi | 
		  
		    
			  
				 Posted: Tue Feb 01, 2005 3:13 am    Post subject: Max SVRCONN channels in QMGR | 
				     | 
			   
			 
		   | 
		
		
		   Apprentice
 
 Joined: 11 Jun 2004 Posts: 33
  
  | 
		  
		    
			  
				what is the max number of SYSTEM.DEF.SVRCONN channels that can be run simultaneously in a Queue Manager. 
 
How is this affects the MQ performance from QMGR perspecitve. 
 
 
Also, how to check the count of channels running at any point. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | csmith28 | 
		  
		    
			  
				 Posted: Tue Feb 01, 2005 7:37 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Grand Master
 
 Joined: 15 Jul 2003 Posts: 1196 Location: Arizona 
  | 
		  
		    
			  
				From the WMQ System Administration Guide
 
   
	| Quote: | 
   
  
	Channels
 
Use the Channels queue manager properties page, or the CHANNELS stanza in the
 
qm.ini file, to specify information about channels.
 
MaxChannels=100|number
 
The maximum number of channels allowed. The default is 100.
 
MaxActiveChannels=MaxChannels_value
 
The maximum number of channels allowed to be active at any time. The
 
default is the value specified on the MaxChannels attribute. | 
   
 
 
 
I am not sure what the Max is but per above the default is 100 unless you edit your qm.ini file.  I have about 900 channels running on one of my MQManagers right now. _________________ Yes, I am an agent of Satan but my duties are largely ceremonial. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | vennela | 
		  
		    
			  
				 Posted: Tue Feb 01, 2005 12:14 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Jedi Knight
 
 Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India 
  | 
		  
		    
			  
				
   
	| Quote: | 
   
  
	| Also, how to check the count of channels running at any point. | 
   
 
 
Under runmqsc of a QMGR do
 
 | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | csmith28 | 
		  
		    
			  
				 Posted: Tue Feb 01, 2005 2:45 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Grand Master
 
 Joined: 15 Jul 2003 Posts: 1196 Location: Arizona 
  | 
		  
		    
			  
				
   
	| vennela wrote: | 
   
  
	
   
	| Quote: | 
   
  
	| Also, how to check the count of channels running at any point. | 
   
 
 
Under runmqsc of a QMGR do
 
 | 
   
 
 
 
Oh yeah, sorry. _________________ Yes, I am an agent of Satan but my duties are largely ceremonial. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | mqsi | 
		  
		    
			  
				 Posted: Tue Feb 01, 2005 10:16 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		   Apprentice
 
 Joined: 11 Jun 2004 Posts: 33
  
  | 
		  
		    
			  
				DIS CHS(*) will list the channels running... 
 
one has to count manually.. is there any command to get the count of a  specific channel running. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | Nigelg | 
		  
		    
			  
				 Posted: Wed Feb 02, 2005 12:37 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		   Grand Master
 
 Joined: 02 Aug 2004 Posts: 1046
  
  | 
		  
		    
			  
				| No. You will have to filter the output with grep and wc (on UNIX). On Windows filter the output with grep, dump it to a file, and count the lines in the file. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | csmith28 | 
		  
		    
			  
				 Posted: Fri Feb 04, 2005 2:58 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Grand Master
 
 Joined: 15 Jul 2003 Posts: 1196 Location: Arizona 
  | 
		  
		    
			  
				
   
	| mqsi wrote: | 
   
  
	DIS CHS(*) will list the channels running... 
 
one has to count manually.. is there any command to get the count of a  specific channel running. | 
   
 
 
 
Unix
 
 
   
	| Code: | 
   
  
	| # echo "dis chs(*)" | runmqsc | grep RUNNING | wc -l | 
   
 
 
 
DOS
 
 
   
	| Code: | 
   
  
	| C:\WINNT\system32>echo dis chs(*) | runmqsc | find "RUNNING" > dischs.txt | 
   
 
 
 
If you want to know about a specific Channel replace (*) with (CHANNEL.NAME). _________________ Yes, I am an agent of Satan but my duties are largely ceremonial. | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | 
		    
		   |