Live data from Hacker News

Ask HN: What do you use to move (copy) data between systems?

news.ycombinator.com

1–9 of 9 posts

Ask HN: What do you use to move (copy) data between systems?

#1
Do you centralize your data? Do you run an iPaaS of some kind? Do you like it?

Context: I'm currently in the middle of a project where I'm hooking up an ERP system (SalesPad) to an eCommerce website (WooCommerce) and I've found I need to move many different kinds of data between them (Inventory/Orders/CustomPricing/etc), and I haven't found a good tool so I started building one.

Has anyone else run into this? How did you solve it? Did you like your solution?

Re: Ask HN: What do you use to move (copy) data between systems?

#2
Many of these sorts of things we will push to an S3 bucket, and have other parts of the system pull from that bucket. We also use "rsync" with SSH keys to copy some data. Some of our vendors provide data to us via FTP, similarly it could be provided via HTTP

Maybe Zapier can help?

Re: Ask HN: What do you use to move (copy) data between systems?

#5
rsync, rclone

really depends on what formats the data is in, how it will be used, how long it needs to last, how long the code that reads and writes the data will last, how much out of band information vs inband information will be sent along with the data.

You talked about movement, movement is the last of your worries, formats and provenance should rank higher on your list of concerns.

My gotos are sqlite, xml and avro. Try to keep things under 2GB so you don't run into lame data transfer issues.