Fivetran is $1/mo per MAR (credit). Wrangler is a self-hosted alternative at $1.99/mo. Here's when each makes sense.
| Wrangler | Fivetran | |
|---|---|---|
| Hosting | Self-hosted, your infra | Managed SaaS (cloud only) |
| Data location | Your server, your disk | Fivetran's cloud |
| Free tier | 2 pipelines | Paid only |
| Pro pricing | $1.99/mo | $1/mo per MAR (credit) |
| Dependencies | None (single binary + SQLite) | N/A (managed) |
| Setup time | ~30 seconds | Account signup |
| Dashboard | Built-in at /ui | Cloud dashboard |
| License | BSL 1.1 | Proprietary SaaS |
Wrangler is a single Go binary with embedded SQLite. Install it with one command, and you are running in under a minute. Your data stays on your server.
curl -fsSL https://stockyard.dev/wrangler/install.sh | sh
Before choosing between Wrangler and Fivetran, consider what happens when you need to leave. Fivetran exports vary in completeness — some fields, some history, some metadata may not come with you. Wrangler stores everything in a single SQLite file. Leaving means copying that file. This is not a hypothetical concern: the average team changes tools every 18 to 24 months.
Architecturally, Wrangler and Fivetran could not be more different. Fivetran runs on distributed cloud infrastructure with load balancers, managed databases, CDNs, and redundancy across availability zones. Wrangler is a single process writing to a single file on a single disk. That sounds fragile until you realize that SQLite handles more concurrent readers than most web applications will ever need, and WAL mode means reads never block writes.
Switching from Fivetran to Wrangler is straightforward for most teams. Export your data from Fivetran (most services offer CSV or JSON export), then POST each record to Wrangler's API. A migration script that reads the export and writes to /api/ endpoints typically takes less than 50 lines of code. The reverse migration is equally simple — Wrangler's SQLite database is a standard file you can query with any SQLite client.
Single binary. Free to start. $1.99/mo for Pro.