Skip to content

Commit 5810730

Browse files
committed
fixing old urls to blog.iron.io
1 parent c6afec1 commit 5810730

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

_posts/2012-06-13-solutions-notifications.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ notification headers, preparing and sending the notification, and signaling
4747
exceptions and recording the status.
4848

4949
For a detailed example using SendGrid, IronWorker, and ActionMailer, check
50-
out our [blog post](http://blog.iron.io/2012/06/powerful-email-infrastructure-with.html).
50+
out our [blog post](https://blog.iron.io/powerful-email-infrastructure-with).
5151

5252
### Preparing the Headers
5353

@@ -86,7 +86,7 @@ are often not impressed with 9 hour delays between an event and receiving a
8686
notification of it. As your usage and user base grow, a single task that
8787
processes notifications one at a time will quickly become inadequate.
8888

89-
As with the [transformation of a 9-hour job to a 9-minute job](http://blog.iron.io/2012/03/how-to-reduce-9-hour-job-into-10-minute.html),
89+
As with the [transformation of a 9-hour job to a 9-minute job](https://blog.iron.io/how-to-reduce-9-hour-job-into-10-minute),
9090
the solution to this lies in massive parallelisation. By queuing tens, hundreds,
9191
or thousands of tasks to manage your queue, you can process a staggering
9292
amount of notifications and emails in a brief time period. Many hands makes

mq/3/reference/push_queues/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ breadcrumbs:
4040

4141
<h2 id="overview">Overview</h2>
4242

43-
[Blog Post for Overview](http://blog.iron.io/2013/01/ironmq-push-queues-reliable-message.html). You should also review
43+
[Blog Post for Overview](https://blog.iron.io/ironmq-push-queues-reliable-message). You should also review
4444
the [MQ API for push queue related endpoints](http://dev.iron.io/mq/reference/api/).
4545

4646
<h2 id="subscribers">Subscribers</h2>

search.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"categories": [],
143143
"summary": null,
144144
"short": "Celery is a task queue for Python. Originally developed as part of the Django framework, it was split off into its own project and has quickly become the standard for task processing in Python. Celery supports multiple technologies for its queue broker including RabbitMQ, Redis, and IronMQ. There are many advantages to choosing IronMQ over the others. To name a",
145-
"body": "Celery is a task queue for Python. Originally developed as part of the Django framework, it was split off into its own project and has quickly become the standard for task processing in Python. Celery supports multiple technologies for its queue broker including RabbitMQ, Redis, and IronMQ. There are many advantages to choosing IronMQ over the others. To name a few: Instant high availability No servers, maintenance, or scaling to worry about Greater job visibility with IronMQ dashboards For more information, visit Iron.io/celery Getting Started Celery was designed to easily change your broker which makes changing to IronMQ as easy as 1-2-3. Install iron_celery: pip install iron_celery add import iron_celery set BROKER_URL = 'ironmq://project_id:token@' We expand on these steps in the integration libary docs . Further Reading iron_celery Module: https://github.com/iron-io/iron_celery Getting Started Blog Post: http://blog.iron.io/2013/02/using-ironmq-as-celery-broker.html Getting Started Video (2 mins): Iron.io/celery Celery on Heroku: https://github.com/iron-io/heroku-iron-celery-demo "
145+
"body": "Celery is a task queue for Python. Originally developed as part of the Django framework, it was split off into its own project and has quickly become the standard for task processing in Python. Celery supports multiple technologies for its queue broker including RabbitMQ, Redis, and IronMQ. There are many advantages to choosing IronMQ over the others. To name a few: Instant high availability No servers, maintenance, or scaling to worry about Greater job visibility with IronMQ dashboards For more information, visit Iron.io/celery Getting Started Celery was designed to easily change your broker which makes changing to IronMQ as easy as 1-2-3. Install iron_celery: pip install iron_celery add import iron_celery set BROKER_URL = 'ironmq://project_id:token@' We expand on these steps in the integration libary docs . Further Reading iron_celery Module: https://github.com/iron-io/iron_celery Getting Started Blog Post: https://blog.iron.io/using-ironmq-as-celery-broker Getting Started Video (2 mins): Iron.io/celery Celery on Heroku: https://github.com/iron-io/heroku-iron-celery-demo "
146146
}, {
147147
"title": "Delayed Job on IronMQ",
148148
"url": "/mq/integrations/delayed_job/index.html",

worker/cli/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ iron worker upload --zip $WORKER.zip --name $WORKER_NAME $IMAGE $COMMAND
8282
Where `$WORKER` is replaced by the name of your packaged worker zip and `$COMMAND` is the command you want executed, the same
8383
one you used with `docker run`.
8484

85-
Sometimes, you want to limit the number of parallel workers for any given task, to prevent external resources like databases or APIs from crashing under the weight of your workers' requests. We have a [max_concurrency](http://blog.iron.io/2012/08/ironworkers-most-requested-feature-is.html) feature that lets you do just this. To use it, simply use the `--max-concurrency` option when uploading a worker, with the maximum number of workers that can be run in parallel:
85+
Sometimes, you want to limit the number of parallel workers for any given task, to prevent external resources like databases or APIs from crashing under the weight of your workers' requests. We have a [max_concurrency](https://blog.iron.io/ironworkers-most-requested-feature-is) feature that lets you do just this. To use it, simply use the `--max-concurrency` option when uploading a worker, with the maximum number of workers that can be run in parallel:
8686

8787
```sh
8888
iron worker upload --max-concurrency 10 ...

worker/examples/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ git clone https://github.com/iron-io/dockerworker.git
1919
```
2020

2121
<div class="alert">
22-
<p>Check out our Post on Top 10 Use Cases for IronWorker <a href="http://blog.iron.io/2014/02/top-10-uses-of-ironworker.html">Here!</a></p>
22+
<p>Check out our Post on Top 10 Use Cases for IronWorker <a href="https://blog.iron.io/top-10-uses-of-ironworker">Here!</a></p>
2323
</div>
2424

2525

worker/iron_casts/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ breadcrumbs:
88

99
This page lists past IronCasts series. The screencasts are intended to be short and focused on some of the most commonly asked questions.
1010

11-
## [IronCast Series 1 - Introduction to IronWorker](http://blog.iron.io/search/label/Introduction%20to%20IronWorker)
11+
## [IronCast Series 1 - Introduction to IronWorker](https://blog.iron.io/ironcast-1-introduction-to-ironworker)
1212

1313
In a series of four IronCasts, we will provide a high-level introduction to using IronWorker. IronWorker is an easy-to-use scalable task queue that gives cloud developers a simple way to offload front-end tasks, run scheduled jobs, and process tasks in the background and at scale.
1414

1515
These videocasts will cover core concepts including:
16-
- [Deploying a worker](http://blog.iron.io/2013/09/ironcast-1-introduction-to-ironworker.html)
16+
- Deploying a worker
1717
- Writing worker files to declare dependencies
1818
- Test and prototype workers rapidly locally
1919
- Connecting to a cloud development database

worker/languages/ruby/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,5 +252,5 @@ Your workers should be independent, discrete parts of an application, a mini-app
252252
framework usage in workers, in general, is frowned upon.
253253

254254

255-
Check out [this blog post](http://blog.iron.io/2012/06/powerful-email-infrastructure-with.html)
255+
Check out [this blog post](https://blog.iron.io/powerful-email-infrastructure-with)
256256
for step-by-step instructions on including and using the Rails stack including some models, ActionMailers, etc.

worker/reference/cli/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The same applies to the `IRON_TOKEN` environment variable.
5858
Where `$WORKER` is replaced by the name of your packaged worker zip and `$COMMAND` is the command you want executed, the same
5959
one you used with `docker run`.
6060

61-
Sometimes, you want to limit the number of parallel workers for any given task, to prevent external resources like databases or APIs from crashing under the weight of your workers' requests. We have a [max_concurrency](http://blog.iron.io/2012/08/ironworkers-most-requested-feature-is.html) feature that lets you do just this. To use it, simply use the `--max-concurrency` option when uploading a worker, with the maximum number of workers that can be run in parallel:
61+
Sometimes, you want to limit the number of parallel workers for any given task, to prevent external resources like databases or APIs from crashing under the weight of your workers' requests. We have a [max_concurrency](https://blog.iron.io/ironworkers-most-requested-feature-is) feature that lets you do just this. To use it, simply use the `--max-concurrency` option when uploading a worker, with the maximum number of workers that can be run in parallel:
6262

6363
```sh
6464
iron worker upload --max-concurrency 10 ...

worker/scheduling/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ See <a href="/worker/reference/api/#schedule_a_task">Scheduling API reference</a
3636
<p>Many Tasks To Run in Future - If you have lots of the same individual tasks to run in the future (sending emails to users, for example), we suggest <strong>not</strong> creating individual scheduled tasks (or queuing lots of tasks with delays). It's better to create a scheduled task that repeats on a regular basis. This scheduled task should then query a data base or datastore for the users to email (or actions to take). It can then spin up one or more sub-tasks to execute the work (creating one task per action or better yet, allocating a certain number of data slices to each task to better amortize the setup cost of a task).</p>
3737
<p>Here are a few posts on the topic:</p>
3838
<ul>
39-
<li><a href="http://blog.iron.io/2011/06/worker-patterns-creating-task-level.html">Pattern: Creating Task-Level Workers at Runtime</a></li>
40-
<li><a href="http://blog.iron.io/2011/07/anti-pattern-lots-of-scheduled-jobs.html">Anti-Pattern: Lots of Scheduled Jobs</a></li>
39+
<li><a href="https://blog.iron.io/worker-patterns-creating-task-level">Pattern: Creating Task-Level Workers at Runtime</a></li>
40+
<li><a href="https://blog.iron.io/anti-pattern-lots-of-scheduled-jobs">Anti-Pattern: Lots of Scheduled Jobs</a></li>
4141
</ul>
4242
</li>
4343

worker/turnkey/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The basic usage for all of these is:
1515
1. iron_worker upload http://github.com/PATH_TO_WORKER_FILE
1616
2. Queue up tasks for the worker or schedule it.
1717

18-
That's it! Super easy, super powerful. [See this blog post on shareable workers for more background.](http://blog.iron.io/2012/11/sharable-open-source-workers-for.html)
18+
That's it! Super easy, super powerful. [See this blog post on shareable workers for more background.](https://blog.iron.io/sharable-open-source-workers-for)
1919

2020
## Turnkey Worker List
2121

0 commit comments

Comments
 (0)