Faktory. Simplified.

Deploy production-ready Faktory job queue servers in seconds. No infrastructure headaches, just reliable background job processing.

Why Prole?

Lightning Fast Setup

Provision a fully configured Faktory server in under 3 minutes. No Docker, no cloud console, no complexity.

Production Ready

Every server comes pre-configured with best practices, secure passwords, and automated health checks.

Simple Pricing

Pay only for the cloud resources you use. No markup, no hidden fees, no surprises.

Three Steps to Background Jobs

1

Create Your Account

Sign up in seconds. We'll handle all the cloud infrastructure setup for you.

2

Deploy in Minutes

Name your server, click deploy, and grab a coffee. Your Faktory instance will be ready before you finish it.

3

Start Processing Jobs

Get your connection URL, configure your workers, and start processing background jobs at scale.

Simple, Transparent Pricing

Pay only for what you use. No surprises.

$10/month

per Faktory server

  • Fully managed cloud infrastructure
  • Automatic updates and security patches
  • Production-ready configuration
  • Prorated billing - only pay for what you use
  • Cancel anytime, no commitments

Simple Integration

Get your connection details and start processing jobs in minutes

What You Get

Connection URL

tcp://:password@ip:7419

Web UI

http://ip:7420

Secure Password

Auto-generated 24-char

1. Create a Worker

// worker.js
const faktory = require('faktory-worker');

// Register job handler
faktory.register(
  'SendEmail',
  async (args) => {
    // Process the job
    console.log(args);
  }
);

// Start processing
faktory.work({
  url: 'YOUR_PROLE_URL',
  concurrency: 5
});

2. Enqueue Jobs

// app.js
const faktory = require('faktory-worker');

// Push a job
const client = await faktory
  .connect({url: 'YOUR_PROLE_URL'});

await client
  .job('SendEmail', {
    to: 'user@example.com',
    subject: 'Hello'
  })
  .push();

await client.close();

Ready to simplify your job queues?

Join developers who've ditched complex infrastructure for simple, managed Faktory.

Get Started Now