Tech Blog
Behind the scenes
-
Feb 9, 2018
Reboot randomly your distributed services
In mediasmart we are running a distributed system with more than 60 machines (and increasing over time) across three regions. Of course, we log all the services running in the machines and the logs created grow very fast each day. For that reason, we need to rotate our...
-
Jan 2, 2018
Async-await in Javascript and Node.js
As you probably know, Javascript is a language that was designed following a continuation-passing style (CPS). This means that functions are first-class citizens and can be used as continuation points when passed to another function call as an argument.