Migrating 400K Users Without Downtime
Replaced a decade-old Magento-based e-learning platform with a modern cloud-native architecture, migrating 400,000+ students with zero downtime and 99.99% accuracy.
From clients, leaders, and teammates I've worked with.
“In my 15+ years at 3Pillar, across nine countries and 2,500+ individuals, Ashish stood out. I foresee him having tremendous impact in whatever he chooses to do.”
“One of the brightest and most dependable people on the project. I fully trust Ashish and would gladly work with him again.”
Real projects with measurable results.
Replaced a decade-old Magento-based e-learning platform with a modern cloud-native architecture, migrating 400,000+ students with zero downtime and 99.99% accuracy.
Think you can spot the memory leak in this Node.js stream implementation? It survived code review, but it will crash the server under load.
const server = http.createServer((req, res) => {const stream = fs.createReadStream(filepath);stream.pipe(res);// This code passed code review.// It will crash your server under load.// Can you spot why?});