Questions tagged [iron.io]

iron.io is a cloud-based message queueing and task processing service

iron.io is a cloud-based message queueing (IronMQ) and task processing (IronWorker) service with client libraries for many popular programming languages such as ruby, php, go, java, node and .net.

Their documentation is available at http://www.iron.io/developers.

83 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

What are the Docker RUN params for mimicking IronWorker memory constraints?

In the past I've run into trouble when hosting my workers in a cloud infrastructure because of memory constraints that weren't faithfully reproduced when testing the code locally on my overpowered machine. IronWorker is one such cloud provider that…
pulkitsinghal
  • 3,855
  • 13
  • 45
  • 84
0
votes
1 answer

How to re-link files in iron.io?

I'm trying to upload the following files and linksto iron.io: After downloading the files from iron.io that were originally uploaded, I can see that the links are turned into these files How do I maintain the links so that they are not turned…
Chris
  • 5,444
  • 16
  • 63
  • 119
0
votes
1 answer

How to use MongoDB driver of PHP in an iron worker task?

I'm using iron.io and its worker tasks for a background process. My code is fairly simple, just like:
Norio Akagi
  • 705
  • 1
  • 8
  • 22
0
votes
2 answers

Laravel 4 Queue Taking Long Time

I'm using iron.io for Queues in Laravel. They were working great until recently. Now a line of code like this one takes an eternity: $sec = 5*60; Queue::later($sec, 'MyClass@fire', ['id' => 1]); MyClass->fire sends a bunch of emails so it's almost…
sterfry68
  • 1,063
  • 2
  • 14
  • 30
0
votes
1 answer

Iron.io Workers PHP error Class 'PDO' not found

I've got this error when launching a php worker on Iron.io : PHP Fatal error: Class 'PDO' not found in /mnt/task/... My PHP script just call the native PDO extension like this : $db = new PDO (...); Anybody know if there's a known problem with…
0
votes
1 answer

Use Ruby Bundler to build only non-development, non-test gems?

I'm building an Iron.IO Ruby-only application and as part of their new docker workflow, I need to run bundler to build the bundled gems into ./bundle locally. However, it builds all the gems, including the group 'development' and group 'test' gems.…
Dan Sharp
  • 1,209
  • 2
  • 12
  • 31
0
votes
2 answers

iron.io queue system sends emails infinitely

I'm using Laravel 5.1 and the iron.io version 4 , I use the queue to send emails and also I configured a supervisor to avoid typing php artisan queue:listen now the problem is in the log file (storage/logs) I get an error message …
khaleader
  • 183
  • 2
  • 15
0
votes
2 answers

Mail::queue Closure serialization error Laravel 5.1

I promise this is not just another Mail::queue newbie question. I had Laravel 4.2 app working with Iron.io Push queues Then, I upgraded to Laravel 5.1 and my Mails just stopped working. I have UserController from which I send user account…
NileshBhise
  • 41
  • 2
  • 6
0
votes
1 answer

ironWorker not inserting to my database

How to connect iron.io to my UserController.php? Im using app/views. My code in app/views/iron/hello_worker.php
Marlon Buendia
  • 342
  • 1
  • 6
  • 19
0
votes
1 answer

Can I view raw message in iron.io webpage?

I'm learning to use iron.io MQ push queues. I'm pushing some messages with Laravel php framework and everything works. However, just to round up my knowledge, I would like to see the raw contents of these messages. In my iron.io account I can see…
0
votes
1 answer

Laravel 4 & IronMQ queue - Exception handling architecture for push failures?

There should be an architecture in place to not have any push queue tasks lost while Laravel fails to communicate with IronIO servers. For example there is IronIO service outages, or DNS hiccups along the way. Or as in our case, it seems our…
ux.engineer
  • 10,082
  • 13
  • 67
  • 112
0
votes
1 answer

GhostScript on Iron.io Workers

Does anyone know how to get GhostScript working in Iron.io workers? I am using the ffmpeg stack with node.js and need to convert a pdf to a series of jpegs using imagemagic and GhostScript is required for this.
Ross J
  • 282
  • 7
  • 21
0
votes
1 answer

Laravel - Push queue task with a custom handling method and deleting job

Consider this kind of code which pushes a task to queue to run a custom handler method that is located within the same class:
ux.engineer
  • 10,082
  • 13
  • 67
  • 112
0
votes
1 answer

Using .NET dependencies with Iron.io IronWorker

I'm brand new to Iron.io's IronWorker, and I'm attempting to interface with it via C#.NET. I have managed to get the sample on the site to work, which utilizes the System.Web.Script.Serialization library. However, I want to use Newtonsoft.Json…
Aaron Jessen
  • 404
  • 5
  • 14