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
1
vote
0 answers

IronMQ With Laravel 5.1

Am trying to implement a mail queue on my godaddy shared hosting using IronMQ but am confused on how to go about creating the queues and linking it with IronMQ. Anybody who has done something similar should help me out. Note: am new to queues and…
ammezie
  • 355
  • 5
  • 20
1
vote
0 answers

iron.io queue implementaion in laravel 4

I am using the Iron.mq. I have pushed the messages in the iron.io queue with this code public function reminder(){ $section_url = Input::get('section_url'); $selectdate = Input::get('selectdate'); $email = Auth::user()->email; …
Anup Suri
  • 21
  • 3
1
vote
1 answer

Laravel Pull Queue

I have been using the Laravel framework and have just recently gotten into implementing queue's with Laravel's built in support for IronMQ. From the Laravel documentation its easy enough to see how to push messages to a queue and then on Iron.io…
Vigs
  • 1,286
  • 3
  • 13
  • 30
1
vote
0 answers

IronMq + Laravel4: Job submitted but Queue not working

I am trying to add a new user to a group and send an activation email. It was working earlier when I implemented it without queues. Here's my (relevant) code in app/routes.php: Queue::getIron()->ssl_verifypeer = false; Route::post('queue/demo',…
greatmj
  • 36
  • 4
1
vote
2 answers

How do I handle push messages from IronMQ when my endpoint is an IronWorker?

The documentation for IronMQ push queues describes how endpoints should handle/respond to push messages. However, I get the impression this is for normal webhooks and I can't find any documentation or examples of what to do when the endpoint for a…
Bryan
  • 2,205
  • 1
  • 23
  • 43
1
vote
1 answer

Queue with multiple columns?

I am looking for a library or a service that lets me push data, and each time there will be several other columns. Right now, I am currently using IronMQ to push json to the queue and then parsing the json and grabbing the attributes. However, I am…
user299709
  • 4,922
  • 10
  • 56
  • 88
1
vote
1 answer

Are alerts created for messages that have a reservation expire in IronMQ?

I am using the alerts feature of IronMQ service provided by IronIO to start workers. I have things setup so that a message is pushed onto the push queue. The push queue sends an alert that starts a worker. The worker pulls off the message on the…
codingFoo
  • 916
  • 12
  • 23
1
vote
1 answer

Load testing ironmq

I'm doing some load testing of ironmq sending 500 messages and afterwards consuming them. So far I'm able to send 16 msg's pr. sec and consume (read/delete) about 5 msg's pr. sec. using ironAWSEUWest on my local machine. I use the v. 0.0.18 java…
Preben
  • 63
  • 2
  • 9
1
vote
1 answer

Heroku: Testing IronMQ Messaging With Worker Locally Using Foreman

I am new to Heroku and I am trying to bootstrap a local development environment. Using Foreman, or another tool, can someone please point me to docs that illustrate sending and consuming a message with a worker. Key being setting up the MQ and the…
Chris
  • 469
  • 12
  • 25
1
vote
1 answer

Can't access queue from IronWorker with .NET

I just started experimenting with Iron.io, using .NET and IronTools. I'm able to Push and Get a message to a queue from a desktop app just fine. Now I want to create a worker to Get a message from a queue, process it, and Push it to another queue.…
MikeBr59
  • 284
  • 2
  • 12
1
vote
2 answers

IronMQ push queue sending unknown HTTP requests

I setup my push queue endpoint as POST /iron, which works fine. But I'm getting a bunch of other requests too. Are these from Iron.io? What's the point of them? They're just filling up my Apache log. My server is returning 500 errors for all of them…
Farzher
  • 13,934
  • 21
  • 69
  • 100
1
vote
1 answer

Using Iron.mq push queue with PHP

I'm attempting to use the iron.mq push queue, but am having difficulty figuring out how to properly respond to the queue after receiving a message. I realize that I might also not fully understand how the queue system behaves, but my understanding…
Anti-Dentite
  • 551
  • 1
  • 6
  • 11
1
vote
1 answer

Error on using IronMQ as celery broker in Heroku

Currently we have a Python Django application hosted in Heroku cloud that uses Celery workers for background processing. Celery workers were using django DB as the broker. Recently we decided to use IronMq as the broker since it’s an enterprise…
SkariaArun
  • 219
  • 1
  • 13
1
vote
1 answer

Create a user in IronMQ via API

I'm trying to set up a message queue service for an application I am developing. I already tried AWS SQS, but it doesn't really fit for our needs, mainly for the issues with the FIFO and the limited message persistence. So I turned to IronMQ, to see…
Eugenio Laghi
  • 681
  • 2
  • 11
  • 22
1
vote
1 answer

Http exception code 0 using IronMQ PHP Client

I am trying out the php client for IronMQ. I'm trying to make work the example provided with the library but for all requests i get the http exception with code 0 and no message. The client is configured ok, with the right token and project id. For…