Repository: stratos Updated Branches: refs/heads/master dd6c34756 -> b40452988
copying latest autoscaler xml to stratos-installer Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/b4045298 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/b4045298 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/b4045298 Branch: refs/heads/master Commit: b40452988048d0c111d981fb2ff8142c9a9874d9 Parents: dd6c347 Author: R-Rajkumar <[email protected]> Authored: Mon Oct 27 10:09:51 2014 +0530 Committer: R-Rajkumar <[email protected]> Committed: Mon Oct 27 10:09:51 2014 +0530 ---------------------------------------------------------------------- .../config/all/repository/conf/autoscaler.xml | 56 +++++++++++++------- 1 file changed, 37 insertions(+), 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/b4045298/tools/stratos-installer/config/all/repository/conf/autoscaler.xml ---------------------------------------------------------------------- diff --git a/tools/stratos-installer/config/all/repository/conf/autoscaler.xml b/tools/stratos-installer/config/all/repository/conf/autoscaler.xml index 196e0a8..f074ff1 100755 --- a/tools/stratos-installer/config/all/repository/conf/autoscaler.xml +++ b/tools/stratos-installer/config/all/repository/conf/autoscaler.xml @@ -19,24 +19,42 @@ --> <configuration> <autoscaler> - <rulesEvaluator> - <schedule> - <initialDelay>30</initialDelay> - <period>15</period> - </schedule> - </rulesEvaluator> - <cloudController> - <hostname>CC_HOSTNAME</hostname> - <port>CC_LISTEN_PORT</port> - <clientTimeout>300000</clientTimeout> - </cloudController> - <stratosManager> - <hostname>SM_HOSTNAME</hostname> - <port>SM_LISTEN_PORT</port> - <clientTimeout>300000</clientTimeout> - </stratosManager> - <member> - <expiryTimeout>900000</expiryTimeout> - </member> + <rulesEvaluator> + <schedule> + <initialDelay>30</initialDelay> + <period>15</period> + </schedule> + </rulesEvaluator> + <cloudController> + <hostname>CC_HOSTNAME</hostname> + <port>CC_LISTEN_PORT</port> + <!-->CC client timout in ms<--> + <clientTimeout>300000</clientTimeout> + </cloudController> + <stratosManager> + <hostname>SM_HOSTNAME</hostname> + <port>SM_LISTEN_PORT</port> + <!--SM client timeout in ms--> + <clientTimeout>300000</clientTimeout> + </stratosManager> + <member> + <!-- this is the maximum time(ms) a member can be in pending member state --> + <pendingMemberExpiryTimeout>900000</pendingMemberExpiryTimeout> + <!-- this is the maximum time(ms) a member can be in obsoleted member state --> + <obsoletedMemberExpiryTimeout>86400000</obsoletedMemberExpiryTimeout> + </member> + <!-- cluster monitoring interval --> + <monitorInterval> + <vm> + <!-- VM Service cluster monitoring interval(ms) --> + <service>90000</service> + <!-- VM LB cluster monitoring interval(ms) --> + <lb>90000</lb> + </vm> + <kubernetes> + <!-- Kubernetes Service cluster monitoring interval(ms) --> + <service>60000</service> + </kubernetes> + </monitorInterval> </autoscaler> </configuration>
