background threads
Alexandre Riveira
alexandre at objectdata.com.br
Mon Jun 18 19:08:16 UTC 2012
Em 18-06-2012 21:55, Eric Wong escreveu:
What kind of problems?
The application consumes 100% cpu after reload
Is preload_app true or false? (default is false)
preload_app is true
I changed my code as below and got a result in small servers
Thread.new(log) do |rotina_log|
loop do
log.info("rotina automatica") {"waiting process before end"}
sleep(5)
break unless File.exists? Dir.pwd + '/tmp/pids/rainbows.pid.oldbin'
end
loop do
#rotina_log.info("rotina automatica") { "waiting 60 secs #{Process.pid}" }
sleep(60)
if $0.include? "old"
rotina_log.info("rotina automatica") { "exit..... #{Process.pid}" }
Thread.exit
end
begin
#rotina_log.info("rotina automatica") { "exec #{Process.pid}" }
empresas = Empresa::Base.find_all_by_cancelado(false)
#sleep(180)
empresas.invoke(:rotinas_automaticas, :usuario_id => Auth::Configuracao.instance.usuario_sistema_id)
#rotina_log.info("rotina automatica") { "exec ok #{Process.pid}" }
rescue Exception => e
rotina_log.fatal("rotina automatica") { e.to_s + e.backtrace.inspect }
end
end
end
Tanks,
Alexandre Riveira
Brazil
More information about the rainbows-talk
mailing list