logoalt Hacker News

matt_callmannyesterday at 7:35 PM8 repliesview on HN

What are the alternatives? I primarily used it for S3 and SQS emulation.


Replies

bytK7yesterday at 8:05 PM

I haven't used this yet, but there's also https://github.com/robotocore/robotocore. It came up on HN a few days ago: https://news.ycombinator.com/item?id=47420619.

atlsyesterday at 8:08 PM

It's not a complete replacement, but if you're in a Python ecosystem, you might find Moto to be of interest.

https://github.com/getmoto/moto

show 1 reply
kadobanyesterday at 7:38 PM

I haven't evaluated it deeply yet, but I saw https://github.com/hectorvent/floci

show 1 reply
pfixyesterday at 7:46 PM

I've fiddled around with https://docs.getmoto.org/en/latest/docs/server_mode.html

It didn't support the one thing I wanted but it was so easy to find the right place in the code, I was happy. Never got to continue it though or turn it into a PR

strickjb9yesterday at 8:13 PM

MinIO is a drop in replacement for S3. I plan on switching to this as soon as I can. For now, I just pinned localstack to 4.14.0

show 3 replies
cyberaxyesterday at 7:52 PM

For S3 emulation, I'm using rustfs. It's very compact and fast to run, and you can just start it with `docker run` inside tests if you don't want to set up a full integration test harness.

I used an SQS-on-top-of-Redis emulation before, but I can't recommended it now (no updates for 6 years).

peytongreen_devtoday at 10:11 AM

[dead]