Version Differences for Increasing Timeouts

Line 1:
    + Every command that is sent to an agent and ran, are based on a timeout. If no timely response is received from the agent, anthill will timeout the step. Sometimes these timeouts need to be extended when there are cases such as '''an agent being overloaded with work''' or even when '''a network is too saturated'''. Luckily, the timeout can be modified to a larger number to allow more time to pass, before a job is marked 'dead'.  
       
  =Server installed.properties=    =Server installed.properties= 
       
    + Update these properties in the installed.properties file in server/conf  
       
  <pre>install.server.maxCmdResultRetries=10    <pre>install.server.maxCmdResultRetries=10 
  install.server.defaultTimeout=10000</pre>    install.server.defaultTimeout=10000</pre> 
Line 6:
- Update these properties in the installed.properties file in server/conf      
       
       
Line 10:
  =Server system properties=    =Server system properties= 
       
    + Add these to ah3server script in your server's bin directory. Edit the script, find the variable JAVA_OPTS, add options like this:  
       
    + '''-Dcom.urbancode.anthill3.maxMissedAnnouncements=10'''  
       
       
  <pre>com.urbancode.anthill3.announceIntervalMillis=30000    <pre>com.urbancode.anthill3.announceIntervalMillis=30000 
  com.urbancode.anthill3.maxMissedAnnouncements=2</pre>    com.urbancode.anthill3.maxMissedAnnouncements=2</pre> 
Line 15:
- Add these to ah3server script in your server's bin directory. Edit the script, find the variable JAVA_OPTS, add options like this: <pre>-Dcom.urbancode.anthill3.maxMissedAnnouncements=10</pre>      
       
       
Line 19:
  =Agent system properties=    =Agent system properties= 
       
    + Add these to the worker-args.conf file in your agent bin directory, one per line like this:  
       
    + '''-Dcom.urbancode.anthill3.maxMissedAnnouncements=10'''  
       
  <pre>com.urbancode.anthill3.announceIntervalMillis=30000    <pre>com.urbancode.anthill3.announceIntervalMillis=30000 
  com.urbancode.anthill3.maxMissedAnnouncements=2</pre>    com.urbancode.anthill3.maxMissedAnnouncements=2</pre> 
       
- Add these to the worker-args.conf file in your agent bin directory, one per line like this:      
- <pre>-Dcom.urbancode.anthill3.maxMissedAnnouncements=10</pre>