With Azure Functions Succinctly Author Ed Freitas | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (172).NET Core  (29).NET MAUI  (192)Angular  (107)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (209)BoldSign  (12)DocIO  (24)Essential JS 2  (106)Essential Studio  (200)File Formats  (63)Flutter  (131)JavaScript  (219)Microsoft  (118)PDF  (80)Python  (1)React  (98)Streamlit  (1)Succinctly series  (131)Syncfusion  (882)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (49)Windows Forms  (61)WinUI  (68)WPF  (157)Xamarin  (161)XlsIO  (35)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (146)Chart  (125)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (62)Development  (613)Doc  (7)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (37)Extensions  (22)File Manager  (6)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (488)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (41)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (368)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (30)Visual Studio Code  (17)Web  (577)What's new  (313)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)

Interview with Azure Functions Succinctly Author Ed Freitas

The following is an in-depth interview with Succinctly series author Ed Freitas, whose book Azure Functions Succinctly was published recently. You can download the book from the Succinctly library.

Azure Functions Succinctly by Ed Freitas

What should people know about Azure Functions? Why is it important?

I’ll refer to Nir Mashkowski, who defined the importance of Azure Functions in the announcement blog: “Data is everywhere. It’s in the cloud, on-premises, and is increasingly proliferating across internet-connected devices. Organizations are working to unlock the value in that data, and are asking their developers to respond with highly-scalable solutions built on ever-compressed timetables. Solutions which often require developers implement on demand or scheduled batch jobs to reconcile transactions, ingest and process data, or react to events in real-time. “

Azure Functions is important for people to know and use because it is an event-driven, compute-on-demand experience that extends the existing Azure application platform to implement code triggered by events that occur in Azure or third-party services, as well as on-premises systems, allowing developers to quickly develop these highly scalable solutions on short notice.

When did you first become interested in Azure Functions?

I was working on a personal project Windows application that required a website to process user licenses, and the website functionality turned out to be more complex than the Windows project itself. So I said to myself, “This can’t be right. There must be an easier way to do this.” This is what led me to investigate serverless technologies and specifically Azure Functions. I explain the story within the first pages of the book.

By writing Azure Functions Succinctly, did you learn anything new yourself?

Oh yes, I learned quite a bit! Mostly that Azure Functions is an innovative way of accessing and processing data by making it simpler than ever to not only trigger code based on data in other services, but also to access and process that data. With Azure Functions bindings, developers can simply interact with other data sources and services through their Azure function without worrying about how the data flows to and from it. Bindings make tasks like adding a message to a queue or fetching a blob as simple as passing JSON to a function output variable or reading the blob from a function input variable. With this capability, I found out that developers need to know very little about the underlying services they’re interacting with, making it easy to swap out later for different services.

How will Azure Functions change over the next few years?

It is already changing and evolving. Just recently, Microsoft announced Azure Durable Functions, which is an extension of Azure Functions and Azure WebJobs that lets you write stateful functions in a serverless environment. The extension manages state, checkpoints, and restarts for you. The extension lets you define stateful workflows in a new type of function called an orchestrator function. As serverless architecture becomes more a de facto standard and choice in projects, changes in this landscape will continue to happen as well as improvements. Serverless and Azure Functions are here to stay, and a good skill investment for anyone in DevOps, IT, or software engineering.

Do you see Azure Functions and cloud services as part of a larger trend in software development?

Definitely. They are part of the serverless execution model trend. One of the core value propositions of PaaS solutions such as Azure Functions is the abstraction of the operating system layer from the code. The underlying platform provides preconfigured operating system images that don’t require any patching or maintenance and can be autoscaled based on application load. Azure Functions extends the PaaS concept by providing developers with complete abstraction from the underlying infrastructure through a pay-per-execution billing model that automatically scales based on trigger invocations.

What were the biggest challenges you faced when learning how to use Azure Functions?

To be quite honest, there wasn’t any significant challenge. The Azure team has done an amazing job at making this complex technology easy to grasp and even easier to get started with and learn. I was literally up and running in a few minutes and writing Azure functions using C#.

What other books or resources on Azure Functions or Azure in general do you recommend?

I highly recommend the official Azure Functions documentation site. It’s probably the best resource out there and most up-to-date.

What are three key pieces of info that developers can take away from this book?

  1. Azure Functions is the future.
  2. Azure Functions is powerful.
  3. Azure Functions is easy and intuitive.

Do you have any tips for developers trying to learn Azure Functions?

Yes. Explore the Azure Functions documentation site, sign up for Azure, read the Azure Functions Succinctly ebook, and have fun with Azure Functions as you read the book.

Who are your role models in the developer world?

Where to start really… There are so many brilliant folks doing an amazing job at various companies, so I’d have a hard time picking out a few names. Someone I do love engaging with and follow regularly is James McCaffrey from Microsoft Research.

How quickly can you learn a new programming language or tool?

I’m quite a fast learner, mostly because I’ve sort of made learning technologies my hobby. I try to learn a new technology every two months by doing a personal project or writing a book. I absolutely love learning. Not only does it open your world to new things, but it keeps your mind focused on positive things and helps avoid our ancestral human negative traits coming out. Learning is evolving and it’s fun.

How do you stay up-to-date on industry news?

Hacker News, GitHub trending repositories, and every now and then checking Channel 9.

Do you have a blog page or a website where people can find you?

Yes, edfreitas.me. I don’t write blog posts (I prefer to write books), but I have links to courses I’ve published and of course, my books

Ed Freitas, authory of Azure Functions Succinctly

Ed Freitas has been an author and technical editor for the Succinctly Series since 2016

Check out these other popular titles by Ed Freitas:

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed
Scroll To Top