Questions tagged [ironmq]

An easy-to-use, highly-available message queuing service built for distributed cloud applications with critical messaging needs. Provides on-demand message queuing with advanced features and cloud-optimized performance.

From Wikipedia: [modified]

IronMQ is a cloud-based message queuing service provided by Iron.io. It is used for connecting systems via a messaging gateway, buffering webhook events and creating loosely coupled distributed cloud applications.

Some IronMQ features:

  • Implemented via HTTP/REST
  • Supports JSON messages up to 64k in size
  • Guarantees ordered (FIFO) delivery
  • Guarantees once only delivery
  • No delays retrieving messages
  • Supports the Beanstalk'd open source protocol

IronMQ is available on multiple cloud platforms including AWS and Rackspace and provides high availability and message persistence by distributing and replicating components across multiple cloud zones to eliminate single points of failure. Can be used as a message service broker for popular task queues such as Celery and Delayed Job.

Similar/comparable technologies include:

  • RabbitMQ (an implementation of AMQP with on-premise as well as cloud-based implementation such as CloudAMQP)
  • Microsoft's Message Queuing implementation MSMQ
48 questions
0
votes
3 answers

File upload and store, then proccessing with remote worker

My question is about web application architecture. I have a website, my users can upload files and from this files I need to create some kind of reports for users. When user upload file it stored on my server where website hosted. File path stored…
xelblch
  • 699
  • 3
  • 11
-1
votes
2 answers

What solution can be used to insert a javascript in clients websites to track various statistics?

I want to insert a piece of javascript in the clients websites to track various statistics (like crazyegg, intercom.io), but traffic related. I was thinking of using IronMQ but I don't know how to call it from Javascript directly and I am affraid…
-4
votes
1 answer

IronQueue sending jobs twice

I am using Laravel 4.2 and IronMQ2. For some reason, it's randomly sending jobs twice. In my mailer, I have: Queue::push('MailController@fire', ['email' => $email, 'subject' => $subject, 'view' => $view, 'data' => $data, 'attachment' =>…
aynber
  • 22,380
  • 8
  • 50
  • 63
1 2 3
4