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
1 answer

Can only install one of: iron-io/iron_mq[2.0.0, 1.5.3] -- Laraworker vs ironQueue

I am having a problem while trying to use two wonderful packages iron-io/laraworker and laracollective/iron-queue at same project. The prior package requires version (max) 1.5.3 of iron-io/iron_mq whereas the later one (v5.2) requires that the…
Himel Nag Rana
  • 744
  • 1
  • 11
  • 19
0
votes
1 answer

How to pass IronMQ Token Through Query String

I am trying to retrieve the Messages from IronMQ, For that i am sending one request, I also include my ProjectID and Token, Still i am getting a response of Token is required. Can you please help?? Thanks in Advance: Here is my code :
Anand Deshmukh
  • 169
  • 3
  • 20
0
votes
0 answers

How to Push a Message in IronMQ Through JAVA

I am trying to push some message in IronMQ through JAVA program, I have written the following code but I am stuck with an Exception please help, Thanks in Advance: package com.iron; import java.io.IOException; import io.iron.ironmq.*; …
Anand Deshmukh
  • 169
  • 3
  • 20
0
votes
1 answer

How to Catch Message Through IronMQ in java

I am trying to fetch some message from IronMQ as well as put some message there through Java program. I have written the following code but I get a exception, please help. Thanks in Advance: package com.iron; import java.io.IOException; import…
Anand Deshmukh
  • 169
  • 3
  • 20
0
votes
0 answers

Azure Marketplace and IronMQ unable to purchase

I'm following along with these instructions http://dev.iron.io/worker/azure/ and I keep getting a generic error that it didn't complete. Has anyone tried this recently and gotten it to work? I tried the first time last week and again today. Thank…
0
votes
1 answer

Dockerized app throws read operation timed out error and exits

I've an express application that takes data from an IronMQ push queue. I've Dockerized this app and on running the application in a Docker Container, after some idle time say 20-30 mins, the App throws an error and exits out: Error: read tcp…
riser101
  • 610
  • 6
  • 23
0
votes
1 answer

Passing Exception Message to Queue::failing() in Laravel 5.1?

Using Laravel 5.1's Queues, I'm throwing an exception when a job fails. throw new \Exception('No luck'); As Laravel recommends when dealing with failed jobs, I'm "catching" the exception in the AppServiceProvider, and using that to send our team an…
Marty Thomas
  • 857
  • 2
  • 9
  • 18
0
votes
1 answer

http endpoint for a heroku worker

I would like to start a process in a worker upon a payload I receive through a message queue power by ironMQ. With ironMQ it's possible to create a push queue but that requires an http endpoint. Is it possible to set up an http endpoint for a heroku…
0
votes
1 answer

How do I need to configure my Java project to make a connection with IronMQ?

I downloaded the libraries and the json file with the connection settings. I put the file in the same level that Mensajes's class, where I try to make the connection. In the class I didn't know how to call the settings on the json file so I found…
Mel
  • 1
  • 3
0
votes
1 answer

Json with field of string(containing a string of JSON) crashes when Restkit tries to map it

I am sending a json blob wrapped in a iron mq message. It comes to Restkit as a: { id:"2837409187409328", delay:60, body:"{ myJson:{ "hey":true}}" } Im using a rkrelationship to map a child object with the body: as type CustomObject. However when…
theprojectabot
  • 1,163
  • 12
  • 19
0
votes
1 answer

using Beanstalkd on IronMQ

I am migrating beanstalkd server to ironmq it's said here in http://dev.iron.io/mq/reference/beanstalk/#authentication Authentication Because IronMQ requires authentication, the first command you send must put a message onto the queue with the…
qoyyim
  • 131
  • 1
  • 8
0
votes
1 answer

io.iron.ironmq.HTTPException: Not found (IronMQ JAVA)

I'm trying to do a simple aplication in java, that send and recive messages from IronMQ, but when I try to push a message or get a message or clear the queue, java show me this error: Exception in thread "main" io.iron.ironmq.HTTPException: Not…
Peche
  • 13
  • 2
0
votes
1 answer

Fortrabbit Worker + IronMq + Symfony2

I'm looking at the example of the Worker+IronMq. http://fortrabbit.com/docs/in-depth/workers/scheduler-example The question is how can I call a specific service in Symfony2 from the worker?
Websirnik
  • 1,372
  • 3
  • 21
  • 35
0
votes
2 answers

Iron.io Push Queue and Laravel 4 - preventing the queue request from running multiple times

I have a push queue set up to dial quite a few phone numbers and play back a recording - a blast announcement system powered by Twilio. It takes time to iterate through each number and place the call, so I am hoping to use a push queue to speed up…
NightMICU
  • 9,000
  • 30
  • 89
  • 121
0
votes
1 answer

composer now throwing an error after attempting to setup IronMQ

I ran composer self-update then I added this in my composer.json "iron-io/iron_mq": "*" the ran composer update and composer install But now no matter what I do I'm getting this error C:\Project>composer install Loading composer repositories…
user391986
  • 29,536
  • 39
  • 126
  • 205