Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
S

smoothmq

> 编程语言
Open source

An improved drop-in replacement for SQS

2.3K stars0 likes0 views
WebsiteGitHub

About

An improved drop-in replacement for SQS

SmoothMQ

SmoothMQ is a drop-in replacement for SQS with a much smoother developer experience. It has a functional UI, observability, tracing, message scheduling, and rate-limiting. SmoothMQ lets you run a private SQS instance on any cloud.

Survey!

I'd love your feedback on the direction of this project! https://forms.gle/m5iMjcA5Xvp685Yw8

Getting Started

SmoothMQ deploys as a single go binary and can be used by any existing SQS client.

Running

This will run a UI on :3000 and an SQS-compatible server on :3001.

$ go run . server

Connecting

This works with any SQS client in any language.

Python

import boto3

# Simply change the endpoint_url
sqs = boto3.client("sqs", ..., endpoint_url="http://localhost:3001")
sqs.send_message(QueueUrl="...", MessageBody="hello world")

Celery works seamlessly:

app = Celery("tasks", broker_url="sqs://...@localhost:3001")

UI

The UI lets you manage queues and search individual messages.

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •Go
  • •message-queue
  • •messaging
  • •queue
  • •sqs

> Tags

Gomessage-queuemessagingqueuesqs

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言