|
|
|
|
|
by jchavannes
4352 days ago
|
|
I built an ETL that uses a Go stream for the transform. Once the data has been processed it's written to disk on our analytics servers. Since it can keep up with the stream, memory footprint is very small (which also means we never have to hit disk on ETL servers). Go outperformed our previous solution by over 60x, making our new bottleneck disk I/O instead of CPU. |
|