HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rabysh

no profile record

comments

rabysh
·5 mesi fa·discuss
That was an amazing read, thanks for sharing!
rabysh
·anno scorso·discuss
gzip/gunzip might also be redundant if using ssh compression with -oCompression=on or -C on the ssh call
rabysh
·anno scorso·discuss
I think this could be a single pipeline?

ssh username@server "sqlite3 my_remote_database.db .dump | gzip -c" | gunzip -c | sqlite3 my_local_database.db
rabysh
·anno scorso·discuss
This looks like a very good opportunity for explaining how fast computers are and how spinning up infra doesn't always make sense.

I'd try to show how much a single process could scale by writing a simple benchmark, and comparing the performance, cost and latency of the alternative.

The results should speak for themselves at that point.

(But also, spinning up a lambda to wait for a db request? Wat? Must be missing some more context/details)