hi, im new to backgroundjobs etc. a quick look revealed a lot of options. is there any kind of comparsion out there? im looking into this coz i have a lot ''notification emails'' triggered by observers which i kinda want to exclude from the workflow and pass it on into a ''mail'' queue or similar. any ideas if there is a comparison etc out there? thx tom -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
You can follow engine yard recomendations: http://www.engineyard.com/products/technology/stack explore: http://github.com/ezmobius/nanite or use raw cron I advice that EngineYard recomendation against backgroundrb is realy true. I had to remove backgroundrb from a production app (not hosted in EngineYard) and use raw crons because the background server failed a lot. Regards 2010/12/10 tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> hi, im new to backgroundjobs etc. a quick look revealed a lot of options. > is there any kind of comparsion out there? im looking into this coz i have > a lot ''notification emails'' triggered by observers which i kinda want to > exclude from the workflow and pass it on into a ''mail'' queue or similar. > > any ideas if there is a comparison etc out there? > > thx > tom > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- ------------------------------------ Oliver Hernàndez Valls http://www.negocis.cat http://wiki.tramuntanal.cat http://sourceforge.net/projects/windsofscrum/ -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I''m using Background Job to send emails with the same objective. It''s working well., HTH, Bill On Sun, Dec 12, 2010 at 8:50 AM, tramuntanal <tramuntanal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> You can follow engine yard > recomendations: http://www.engineyard.com/products/technology/stack > explore: http://github.com/ezmobius/nanite > or use raw cron > I advice that EngineYard recomendation against backgroundrb is realy true. I > had to remove backgroundrb from a production app (not hosted in EngineYard) > and use raw crons because the background server failed a lot. > Regards > > 2010/12/10 tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> >> hi, im new to backgroundjobs etc. a quick look revealed a lot of options. >> is there any kind of comparsion out there? im looking into this coz i have >> a lot ''notification emails'' triggered by observers which i kinda want to >> exclude from the workflow and pass it on into a ''mail'' queue or similar. >> >> any ideas if there is a comparison etc out there? >> >> thx >> tom >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > -- > ------------------------------------ > Oliver Hernàndez Valls > > http://www.negocis.cat > http://wiki.tramuntanal.cat > http://sourceforge.net/projects/windsofscrum/ > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Vladimir Rybas
2010-Dec-12 17:11 UTC
Re: background jobs , comparison esp for sending emails
I usually use Delayed Job, but it seems like not a best solution for highload apps. Here is nice article about Resque http://rubylearning.com/blog/2010/11/08/do-you-know-resque/ but haven''t tried it yet. On Sun, Dec 12, 2010 at 4:57 PM, Bill Walton <bwalton.im-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I''m using Background Job to send emails with the same objective. It''s > working well., > > HTH, > Bill > > On Sun, Dec 12, 2010 at 8:50 AM, tramuntanal <tramuntanal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> You can follow engine yard >> recomendations: http://www.engineyard.com/products/technology/stack >> explore: http://github.com/ezmobius/nanite >> or use raw cron >> I advice that EngineYard recomendation against backgroundrb is realy true. I >> had to remove backgroundrb from a production app (not hosted in EngineYard) >> and use raw crons because the background server failed a lot. >> Regards >> >> 2010/12/10 tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >>> >>> hi, im new to backgroundjobs etc. a quick look revealed a lot of options. >>> is there any kind of comparsion out there? im looking into this coz i have >>> a lot ''notification emails'' triggered by observers which i kinda want to >>> exclude from the workflow and pass it on into a ''mail'' queue or similar. >>> >>> any ideas if there is a comparison etc out there? >>> >>> thx >>> tom >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit this group at >>> http://groups.google.com/group/rubyonrails-talk?hl=en. >> >> >> >> -- >> ------------------------------------ >> Oliver Hernàndez Valls >> >> http://www.negocis.cat >> http://wiki.tramuntanal.cat >> http://sourceforge.net/projects/windsofscrum/ >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Peter De Berdt
2010-Dec-13 08:05 UTC
Re: background jobs , comparison esp for sending emails
We are using Nanite, amongst other things to generate complex mails and send them off. Works brilliantly and we don''t even load the Rails environment into the nanite workers, making every worker a nicely contained, very memory-friendly entity. Nanite is very scalable. On 12 Dec 2010, at 18:11, Vladimir Rybas wrote:> I usually use Delayed Job, but it seems like not a best solution for > highload apps. Here is nice article about Resque > http://rubylearning.com/blog/2010/11/08/do-you-know-resque/ > but haven''t tried it yet. > > On Sun, Dec 12, 2010 at 4:57 PM, Bill Walton <bwalton.im-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: >> I''m using Background Job to send emails with the same objective. >> It''s >> working well., >> >> HTH, >> Bill >> >> On Sun, Dec 12, 2010 at 8:50 AM, tramuntanal >> <tramuntanal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> You can follow engine yard >>> recomendations: http://www.engineyard.com/products/technology/stack >>> explore: http://github.com/ezmobius/nanite >>> or use raw cron >>> I advice that EngineYard recomendation against backgroundrb is >>> realy true. I >>> had to remove backgroundrb from a production app (not hosted in >>> EngineYard) >>> and use raw crons because the background server failed a lot.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.