Re: [Asterisk-java-users] Startup Script & Massive Usage
Brought to you by:
srt
From: Stefan R. <sr...@re...> - 2005-09-29 23:24:10
|
> Hi to all, there are implementations of unix systme V startup/shutdown > script, for debian or Redhat ? > (or use it us xinetd service...) no there are no startup/shutdown scripts for now. Asterisk-Java is most often used as a library for custom applications that provide their own startup/shutdown or are deployed to some container. Nevertheless it is of course possible to run the FastAGI server standalone. > Was veri intersting add this feature, if none is done someone can show = me > how to relize it ? to support proper shutdown you have to write a small java wrapper that starts and stops the DefaultAGIServer and provides a shutdown hook (e.g. via a TCP/IP management connection). > I have another question, someone use Asterisk-Java on high volume calls= ? > (about 30/50 concurrent calls), > there are some benchmarks, how much is roboust FastAgi Server (0.2) > implementation, is suitable for production > use. Asterisk-Java is already in production use at several sites. As for the fastagi part simulations (i.e. using a mocked asterisk server) show that it can easily handle hundreds of concurrent connections. Be sure to tune the connection pool accordingly (poolSize property in fastagi.properties)= . See the tutorial for details. =3DStefan |