Category: Azure Functions

Azure Functions and Serverless Architecture: A Solutions Architect’s Guide to Event-Driven Computing

Posted on 5 min read

After two decades of building enterprise applications, I’ve witnessed the evolution from monolithic deployments to microservices, and now to serverless architectures. Azure Functions represents a fundamental shift in how we think about compute—moving from “always-on” infrastructure to truly event-driven, pay-per-execution models. This transformation isn’t just about cost savings; it’s about building systems that scale automatically… Continue reading

Azure Cosmos DB – TTL (Time to Live) – Reference Usecase

Posted on 2 min read

TTL capability within Azure Cosmos DB is a live saver, as it would take necessary steps to purge redudent data based on the configurations you may.  Let us think in terms of an Industrial IoT scenario, devices can produce vast amounts of telemetry information, logs and user session information that is only useful until we… Continue reading

Azure Functions App–Run OnDemand Serverless code – a path way to Serverless Computing

Posted on 3 min read

Azure Functions is a new cloud solution from Azure that would let you execute small pieces code or “functions” in the cloud.  This means you do not have to worry about the infrastructure or environment to execute your little piece of code to solve any of your business problems. Functions can make development even more… Continue reading