Atlanta Code Camp 2017: Serverless .NET
Recap of presentation about leveraging Azure Functions, Logic Apps, and Application Insights for .NET Serverless applications.
The Atlanta Code Camp is an event I’ve attended for several years now. My past three companies have all sponsored the event. It’s held on the Kennesaw State University Marietta campus, a great venue with free parking, plenty of space for gathering, and good facilities for presenters. Although there are no official tracks, there are often groups of similar sessions that cover topics ranging from soft skills, open source software and JavaScript frameworks to cloud and DevOps. I spoke in a room that had several talks that covered serverless.
Although the presentation was scheduled for early afternoon (the second presentation after lunch) we had a packed room full of enthusiastic developers who were kind enough to consent to this 360° capture:
The slide deck (linked at the end of this story) covers the evolution of deployment options from on-premises architecture through Infrastructure-as-a-Service (IaaS) and Platform-as-a-Service (PaaS) to Servless (and I emphasize that the same way NoSQL means “not only” SQL, Serverless really means “less server.”).
Awesome sessions on Superman at #atlcodecamp with @jeremylikness!
— Serverless Superman (@serverlesssuper) September 16, 2017
#atlcodecamp session of Jeremy Likness rocks
— Ozgur Ozturk (@DrOzgur) September 16, 2017
It also includes several business cases and examples for leveraging serverless functions.
The following (silent) video demonstrates how to set up a simple serverless Azure Function that listens to an HTTP endpoint and echoes back the name that is passed to it.
Next, I walked through the same experience starting using Visual Studio 2017. In this example, the echo service is enhanced to also store the name in a queue for later processing.
After the names are gathered in a queue, I show how easy it is to set up a trigger that listens to the queue, pulls the name from the queue, then uses Azure Table Storage to count the names.
The audience submitted a few samples to process, and I highlighted my favorite.
After demonstrating function apps, I moved on to share the power of Logic Apps. These are cloud-based integrations and workflows that literally enable you to connect hundreds of end points ranging from web-hooks to APIs and more. Logic Apps support integrations with Office 365, Salesforce.com, Twilio, and many more third party platforms as well as Microsoft’s own Azure APIs like Cognitive Services. This video shows how easy it is to set up a trigger that listens for a Twitter hashtag then posts the content to a Slack channel.
The last part I covered is an important but often overlooked aspect of serverless: logging and analytics. Fortunately, this is extremely easy to add to your services with Azure Application Insights. This feature has so much functionality that I wrote a separate blog post to cover it all:
🔗 Real-Time Insights with Real-Low Effort
Here is the related video:
This is the full deck that I presented:
View the presentation on Slideshare.net
Thanks to everyone who attended. I had a great time and enjoyed networking with the developers there!
Related articles:
- Introducing Durable Entities for Serverless State (Azure Functions)
- Moving From Lambda ƛ to Azure Functions <⚡> (Azure Functions)
- Serverless application architecture, patterns, and implementation (Logic Apps)
- Serverless HTTP With Durable Functions (Azure Functions)
- Serverless Video: Less Servers, More Code (Logic Apps)
- The Year of Angular on .NET Core, WebAssembly, and Blazor: 2019 in Review (Azure)