SlideShare a Scribd company logo
Azure Functions In The Real
World: Lessons Learned & Best
Practices
SharePoint Fest Seattle 2018
By: Vincent Biret
Passionate about technologies, development and community
Vincent Biret
@baywet
bit.ly/vince365
Microsoft Office Dev MVP
Azure and Office 365 developer @ 2toLead
Mostly for devs, but interesting for Ops at well as Deciders
Who’s this session for?
Agenda
•Demo: the Feedback solution
•Serverless? Azure functions?
•Getting started
•Design principles for functions
•Deploying
•Troubleshooting
•Pricing
•Conclusion
Ready?
The
Feedback
Solution
Functionality
•Collects a feedback (positive of negative)
•Stores it in a database (for later reporting)
•Sends a text message to the manager
•Sends an email to customer statisfaction
service
•Executes another steps (which fails)
The feedback solution in action
Demo
Although our solution seems complex, it doesn’t require a lot of code and is lightweight
How it’s built
API
(httpTrigger)
Twilio (SMS)
MS Graph
:(
Durable
Function
REST Request No SQL
CosmosDB
Application Insights
(telemetry)
Azure
Functions
Serverless?
A decade ago, a lot of time was spent on physical considerations to build solutions
Before cloud
How often should
I patch my
servers?
How can I increase server
utilization?
How I deploy new code to my
server?
Which packages
should
be on my server?
It takes how long to provision a new vm?
When IaaS came out, the next burden for applications became the logical infrastructure
IaaS
How often should
I patch my
servers?
How can I increase server
utilization?
How I deploy new code to my
server?
Which packages
should
be on my server?
It takes how long to provision a new vm?
PaaS solved some of the complexity by making infrastructure transparent
PaaS
How can I increase service
utilization?
How I deploy new code to my
service?
Which packages
should
be on my service?
Serverless, a better version of PaaS, aims to let you focus on the business logic and
consumption by encapsulating other considerations
Serverless
How I deploy new code to my
service?
Improving the « pay for what you use » and the elasticity principles, it also provides a
total abstraction of servers
Serverless definition
Enable your team to deliver solutions faster, in a more structured way moving the focus
on the business logic
Benefits
Microsoft’s answer to the serverless movement
Introducing: Azure Functions
10 languages supported in Azure Functions and more to come
Languages
Dozens of bindings/triggers available, no more need to build the boiler plate code!
Connectors
MS Graph
The more control you want, the lower in the stack, the more simplicity the higher
How to chose?
WebJob-App
Service
Cloud Service
VM
On prem
s
i
m
p
l
i
c
i
t
y
c
o
n
t
r
o
l
Functions are built on services that have been part of Azure for years and are reliable
Function’s « stack »
Azure App Service
Azure Network &
DNS
Azure Web Jobs
Azure Storage
Azure Load Balancer &
Auto-scale
OS
Azure Functions
Azure Queues
Azure Datacenter (servers, power, cooling, security…)
YOUR CODE
Functions are being redesigned to overcome some important limitations
V1 and V2
• V1
• GA
• Production: C#, JS, F#
• Experimental: Python, PHP, TS, Batch,
Bash, PowerShell
• 16 Official connectors
• .Net Standard running on .NET
Framework
• V2
• Preview
• Experimental: C#, JS, F#, Java
• Better decoupling (removes a lot of
limitations)
• Extensions to install
• 17 Official Connectors
• Inc Microsoft Graph
• .NET Core
Custom API Body
Demo
Getting started
Browser editor, VS2017 + Azure SDK or VSCode + Azure Functions CLI
From zero to productions in 7 steps! Microsoft’s answer to serverless
Azure functions
• Pick a language
• Pick a trigger
• Add some inputs/outputs
• Write the business logic code
• (test/deploy)
• Scale your service
• Ship to production!!!
• (and monitor)
Functions v2 is highly abstracted from any dependency and relies on a plu’n’play model
Adding bindings (v2)
• Register Extension
• Nuget/npm/…
• Portal (when using a template)
• Azure functions core sdk
• Nuget: Look for Microsoft.Azure.WebJobs.Extensions.*
• (except for service bus)
• Add your binding to the function
Starting a new project, adding required extensions, starting the implementation
Demo
Design principles
for functions
It’s always better to build modular pieces than monolithic solutions
(regular) Functions problem
• Solutions built in modules are often better:
• More control
• Separation of concern
• Easier to maintain
• Reusability
• ….
• Orchestrating multiple (regular) Azure Functions can be hard
Durable Functions makes splitting and composing Functions much easier
Durable Functions
• Composition of Functions
• Makes orchestration much simpler
• Backed by Azure Queues, Load balancer…
• Client: starts an orchestration instance, trigger logic
• Orchestrator: orchestrates the activities, control logic
• Activity: part of the sequence, business logic
The Notification durable function
Demo
Continuous Integration/
Continuous deployment
CI is a key in keeping a frictionless and high quality development flow.
Options for Continuous Integration
• Kudu build system
• Visual Studio Team Services (or TFS)
• Jenkins, CircleCI, AppVeyor…
CD is crucial to saving time, avoiding errors, keeping tabs on builds…
Options for Continuous Deployment
• Kudu build system
• Visual Studio Team Services (or TFS)
• Jenkins, CircleCI, AppVeyor…
Comparison Functions v1/v2
• V1 Functions can be deployed like an Azure Web App
• V2 Functions have to be deployed like ASP.NET core project
• Tooling changes a bit
Avoid to store configuration in files from a security and an agility standpoint
Holding configuration
• File based local.settings.json (when debugging)
• Azure Web App Settings
• Can be set via ARM templates and/or command line
• Azure Key Vault (for secret)
VSTS CI CD for the project
Demo
Troubleshooting
and monitoring
You should ALWAYS enable application insights and log often, it saves lives!
Application telemetry
• Functions have a default logging infrastructure
• That logging infrastructure can be plugged to Application insights
• Logging infrastructure outputs to
• Console output
• Dashboard storage
• Azure Web App logging (streaming…)
• System logging
Troubleshooting with application insights
Demo
Pricing/Cost
Azure Functions are usually really cheap unless you do something wrong.
Consumption plans
• Azure App Service Plan
• (pay for your plan and instances, A1, DSv2, B2….)
• « Pay as you go » Plan
• 1 000 000 requests and 400 000 GB/s free each month
• GB/s = memory consumed * time used
• Eg: 128MB * 3s = 0,384 GB/s
Azure functions are really cheap, however you can still make important savings.
Penny-pinching
• Under heavy and « constent » workload it’s most of the time cheaper
to go with App Service Plan.
• Don’t hesitate to move workloads to cheaper regions if latency is not
an issue
• Don’t forget you still pay for storage dashboard!
• App Service plans:
• Combine plans if possible
• Use auto-scaling
• Multiple small functions always cheaper than a big one!
Conclusion
Functions allow developers to focus on what matters and be even more productive.
Conclusion
•Serverless dev allows us to focus on the business
logic: the true value
•Functions are “plug-n-play” and extensible
•Durable Functions help us “split” the workload,
making it easier
•CI/CD saves us even more time
•We can keep everything in check with telemetry
•All of that for a fraction of the cost
Other sessions
• Bob German
• AZR103 - Mastering Azure Functions
• DEV203 - Building Web Services for SharePoint and Teams
• Adis Jugo
• AZR303 - Developing event receiver and timer jobs in
SharePoint Online
• (me)
• AZR302 - The Microsoft Graph and SharePoint Framework
under steroids with Azure functions
Please fill out evals!
AZR203
Bit.ly/vince365 @baywet slideshare.net/VincentBIRET
Thanks!/Questions?
Vincent Biret
Office 365 and Azure
Developer
@baywet
Bit.ly/vince365

More Related Content

PDF
Getting Started with Serverless Architectures using Azure Functions
PPTX
enlight cloud
PPTX
PuppetConf 2017: vRealize Automation and Puppet: Enabling DevOps Ready IT- Ga...
PDF
Deploying to and Configuring WebSphere Application Server with UrbanCode Deploy
PPT
Windows Workflow Foundation Introduction
PDF
Windows Workflow Foundation Demystified - overview and business cases
PPTX
Chris OBrien - Azure DevOps for managing work
PPTX
Windows Workflow Foundation
Getting Started with Serverless Architectures using Azure Functions
enlight cloud
PuppetConf 2017: vRealize Automation and Puppet: Enabling DevOps Ready IT- Ga...
Deploying to and Configuring WebSphere Application Server with UrbanCode Deploy
Windows Workflow Foundation Introduction
Windows Workflow Foundation Demystified - overview and business cases
Chris OBrien - Azure DevOps for managing work
Windows Workflow Foundation

What's hot (17)

PDF
Web jobs, Azure Functions and Serverless Computing
PPTX
Workflow Best Practices:Five (or More) "Do"s and "Don't"s
PPTX
Patching is Your Friend in the New World Order of EPM and ERP Cloud
PDF
How to Balance System Speed and Risk for Multi-Platform Innovation
PDF
Building self-service on demand infrastructure with Puppet and VMware
PPTX
2 Speed IT powered by Microsoft Azure and Minecraft
PPTX
SAP Teched 2012 Session Tec3438 Automate IaaS SAP deployments
PPTX
Running WordPress and MySQL in Azure
PDF
Synergy 2015 Session Slides: SYN408 XenDesktop 7.6 Architecture - Dealing Wit...
PDF
Forge - DevCon 2016: From Desktop to the Cloud with Forge
PPTX
Rapid Prototyping for Big Data with AWS
PPTX
Webinar: Top Reasons to Implement Windows Azure for your Business
PDF
Automate Social Media Feedback with Oracle BPM Suite
PPTX
VMworld 2015: Day to Day Automation of VMware Products to Increase Productivi...
PPTX
Design Like a Pro: Machine Learning Basics
PPT
Windows Workflow Foundation
PDF
[India Merge World Tour] Electric Cloud
Web jobs, Azure Functions and Serverless Computing
Workflow Best Practices:Five (or More) "Do"s and "Don't"s
Patching is Your Friend in the New World Order of EPM and ERP Cloud
How to Balance System Speed and Risk for Multi-Platform Innovation
Building self-service on demand infrastructure with Puppet and VMware
2 Speed IT powered by Microsoft Azure and Minecraft
SAP Teched 2012 Session Tec3438 Automate IaaS SAP deployments
Running WordPress and MySQL in Azure
Synergy 2015 Session Slides: SYN408 XenDesktop 7.6 Architecture - Dealing Wit...
Forge - DevCon 2016: From Desktop to the Cloud with Forge
Rapid Prototyping for Big Data with AWS
Webinar: Top Reasons to Implement Windows Azure for your Business
Automate Social Media Feedback with Oracle BPM Suite
VMworld 2015: Day to Day Automation of VMware Products to Increase Productivi...
Design Like a Pro: Machine Learning Basics
Windows Workflow Foundation
[India Merge World Tour] Electric Cloud
Ad

Similar to #SpFestSea azr203 Azure functions lessons learned (20)

PPTX
#SPFestSea Introduction to #Azure #Functions v2
PDF
Serverless Computing with Azure
PPTX
#SPFestDC #Azure #Functions V2: What's new and getting started
PDF
Serverless API with Azure Functions
PPTX
Play with azure functions
PPTX
Azure Functions in Action #CodePaLOUsa
PPTX
Introduction to Azure Functions
PPTX
Durable Azure Functions
PPTX
Serverless on Azure with Functions
PPTX
Era of server less computing final
PPTX
Serverless with Azure Functions
PDF
Azure functions
PPTX
Azure functions: Build apps faster with serverless architecture (March 2018)
PPTX
Azure Functions - Introduction
PPTX
Azure functions: from a function to a whole application in 60 minutes
PPTX
Azure Functions Real World Examples
PPTX
Azure Functions.pptx
PDF
Azure web functions little bites of services
PPTX
Era of server less computing
PPTX
Azure Functions in Action #OrlandoCC
#SPFestSea Introduction to #Azure #Functions v2
Serverless Computing with Azure
#SPFestDC #Azure #Functions V2: What's new and getting started
Serverless API with Azure Functions
Play with azure functions
Azure Functions in Action #CodePaLOUsa
Introduction to Azure Functions
Durable Azure Functions
Serverless on Azure with Functions
Era of server less computing final
Serverless with Azure Functions
Azure functions
Azure functions: Build apps faster with serverless architecture (March 2018)
Azure Functions - Introduction
Azure functions: from a function to a whole application in 60 minutes
Azure Functions Real World Examples
Azure Functions.pptx
Azure web functions little bites of services
Era of server less computing
Azure Functions in Action #OrlandoCC
Ad

More from Vincent Biret (20)

PPTX
#MSGraph introduction at #M365SaturdayOttawa
PPTX
#MWCP19 atelier provisionnement #Office365 slides teams
PPTX
#MWCP19 atelier provisionnement #Office365 slides introduction
PPTX
December #PnP #SPFx call #CLI exteranlize demo
PPTX
#ESPC19 How to do #DevOps with #SPFx
PPTX
#SPSToronto Digital Workplace provisioning with #MicrosoftGraph and #Azure fu...
PPTX
#SPSToronto How to do #DevOps with #SPFx and why it matters
PPTX
MS365 dev bootcamp - day introduction slides
PPTX
MS365 Dev Bootcamp Montreal 2019 - Microsoft graph introduction
PPTX
#SPSOttawa introduction to the #microsoftGraph
PPTX
#MicrosoftGraph Community call - automating your digital workplace provisioni...
PPTX
#SPFestSEA Automate digital workplace provisioning with #MicrosoftGraph and #...
PPTX
#SPFestSEA Introduction to #MicrosoftGraph
PPTX
#SPSNYC 2019 Automating your digital workplace provisioning with #MicrosoftGr...
PPTX
Groupe usagers SharePoint Quebec Juin 2019 - Nouveautés de dev et évènements
PPTX
#MSBuild using #IoT to improve peoples's health and brain power
PPTX
#SPFestDC Automate your digital workplace provisioning with #Microsoft Graph ...
PPTX
#SPFestDC Migrate your custom solutions to the modern stack
PPTX
#SPSHouston Automating your digital workplace proivisioning with #Azure Durab...
PPTX
Microsoft #ignite tour #toronto 2019 How to do #DevOps with the #SPFx and why...
#MSGraph introduction at #M365SaturdayOttawa
#MWCP19 atelier provisionnement #Office365 slides teams
#MWCP19 atelier provisionnement #Office365 slides introduction
December #PnP #SPFx call #CLI exteranlize demo
#ESPC19 How to do #DevOps with #SPFx
#SPSToronto Digital Workplace provisioning with #MicrosoftGraph and #Azure fu...
#SPSToronto How to do #DevOps with #SPFx and why it matters
MS365 dev bootcamp - day introduction slides
MS365 Dev Bootcamp Montreal 2019 - Microsoft graph introduction
#SPSOttawa introduction to the #microsoftGraph
#MicrosoftGraph Community call - automating your digital workplace provisioni...
#SPFestSEA Automate digital workplace provisioning with #MicrosoftGraph and #...
#SPFestSEA Introduction to #MicrosoftGraph
#SPSNYC 2019 Automating your digital workplace provisioning with #MicrosoftGr...
Groupe usagers SharePoint Quebec Juin 2019 - Nouveautés de dev et évènements
#MSBuild using #IoT to improve peoples's health and brain power
#SPFestDC Automate your digital workplace provisioning with #Microsoft Graph ...
#SPFestDC Migrate your custom solutions to the modern stack
#SPSHouston Automating your digital workplace proivisioning with #Azure Durab...
Microsoft #ignite tour #toronto 2019 How to do #DevOps with the #SPFx and why...

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Electronic commerce courselecture one. Pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
Approach and Philosophy of On baking technology
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Modernizing your data center with Dell and AMD
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Electronic commerce courselecture one. Pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
A Presentation on Artificial Intelligence
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Unlocking AI with Model Context Protocol (MCP)
Building Integrated photovoltaic BIPV_UPV.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
20250228 LYD VKU AI Blended-Learning.pptx
cuic standard and advanced reporting.pdf
Approach and Philosophy of On baking technology
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Modernizing your data center with Dell and AMD
Encapsulation_ Review paper, used for researhc scholars
Review of recent advances in non-invasive hemoglobin estimation
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf
Empathic Computing: Creating Shared Understanding
Advanced methodologies resolving dimensionality complications for autism neur...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy

#SpFestSea azr203 Azure functions lessons learned

  • 1. Azure Functions In The Real World: Lessons Learned & Best Practices SharePoint Fest Seattle 2018 By: Vincent Biret
  • 2. Passionate about technologies, development and community Vincent Biret @baywet bit.ly/vince365 Microsoft Office Dev MVP Azure and Office 365 developer @ 2toLead
  • 3. Mostly for devs, but interesting for Ops at well as Deciders Who’s this session for?
  • 4. Agenda •Demo: the Feedback solution •Serverless? Azure functions? •Getting started •Design principles for functions •Deploying •Troubleshooting •Pricing •Conclusion
  • 7. Functionality •Collects a feedback (positive of negative) •Stores it in a database (for later reporting) •Sends a text message to the manager •Sends an email to customer statisfaction service •Executes another steps (which fails)
  • 8. The feedback solution in action Demo
  • 9. Although our solution seems complex, it doesn’t require a lot of code and is lightweight How it’s built API (httpTrigger) Twilio (SMS) MS Graph :( Durable Function REST Request No SQL CosmosDB Application Insights (telemetry)
  • 11. A decade ago, a lot of time was spent on physical considerations to build solutions Before cloud How often should I patch my servers? How can I increase server utilization? How I deploy new code to my server? Which packages should be on my server? It takes how long to provision a new vm?
  • 12. When IaaS came out, the next burden for applications became the logical infrastructure IaaS How often should I patch my servers? How can I increase server utilization? How I deploy new code to my server? Which packages should be on my server? It takes how long to provision a new vm?
  • 13. PaaS solved some of the complexity by making infrastructure transparent PaaS How can I increase service utilization? How I deploy new code to my service? Which packages should be on my service?
  • 14. Serverless, a better version of PaaS, aims to let you focus on the business logic and consumption by encapsulating other considerations Serverless How I deploy new code to my service?
  • 15. Improving the « pay for what you use » and the elasticity principles, it also provides a total abstraction of servers Serverless definition
  • 16. Enable your team to deliver solutions faster, in a more structured way moving the focus on the business logic Benefits
  • 17. Microsoft’s answer to the serverless movement Introducing: Azure Functions
  • 18. 10 languages supported in Azure Functions and more to come Languages
  • 19. Dozens of bindings/triggers available, no more need to build the boiler plate code! Connectors MS Graph
  • 20. The more control you want, the lower in the stack, the more simplicity the higher How to chose? WebJob-App Service Cloud Service VM On prem s i m p l i c i t y c o n t r o l
  • 21. Functions are built on services that have been part of Azure for years and are reliable Function’s « stack » Azure App Service Azure Network & DNS Azure Web Jobs Azure Storage Azure Load Balancer & Auto-scale OS Azure Functions Azure Queues Azure Datacenter (servers, power, cooling, security…) YOUR CODE
  • 22. Functions are being redesigned to overcome some important limitations V1 and V2 • V1 • GA • Production: C#, JS, F# • Experimental: Python, PHP, TS, Batch, Bash, PowerShell • 16 Official connectors • .Net Standard running on .NET Framework • V2 • Preview • Experimental: C#, JS, F#, Java • Better decoupling (removes a lot of limitations) • Extensions to install • 17 Official Connectors • Inc Microsoft Graph • .NET Core
  • 25. Browser editor, VS2017 + Azure SDK or VSCode + Azure Functions CLI
  • 26. From zero to productions in 7 steps! Microsoft’s answer to serverless Azure functions • Pick a language • Pick a trigger • Add some inputs/outputs • Write the business logic code • (test/deploy) • Scale your service • Ship to production!!! • (and monitor)
  • 27. Functions v2 is highly abstracted from any dependency and relies on a plu’n’play model Adding bindings (v2) • Register Extension • Nuget/npm/… • Portal (when using a template) • Azure functions core sdk • Nuget: Look for Microsoft.Azure.WebJobs.Extensions.* • (except for service bus) • Add your binding to the function
  • 28. Starting a new project, adding required extensions, starting the implementation Demo
  • 30. It’s always better to build modular pieces than monolithic solutions (regular) Functions problem • Solutions built in modules are often better: • More control • Separation of concern • Easier to maintain • Reusability • …. • Orchestrating multiple (regular) Azure Functions can be hard
  • 31. Durable Functions makes splitting and composing Functions much easier Durable Functions • Composition of Functions • Makes orchestration much simpler • Backed by Azure Queues, Load balancer… • Client: starts an orchestration instance, trigger logic • Orchestrator: orchestrates the activities, control logic • Activity: part of the sequence, business logic
  • 32. The Notification durable function Demo
  • 34. CI is a key in keeping a frictionless and high quality development flow. Options for Continuous Integration • Kudu build system • Visual Studio Team Services (or TFS) • Jenkins, CircleCI, AppVeyor…
  • 35. CD is crucial to saving time, avoiding errors, keeping tabs on builds… Options for Continuous Deployment • Kudu build system • Visual Studio Team Services (or TFS) • Jenkins, CircleCI, AppVeyor…
  • 36. Comparison Functions v1/v2 • V1 Functions can be deployed like an Azure Web App • V2 Functions have to be deployed like ASP.NET core project • Tooling changes a bit
  • 37. Avoid to store configuration in files from a security and an agility standpoint Holding configuration • File based local.settings.json (when debugging) • Azure Web App Settings • Can be set via ARM templates and/or command line • Azure Key Vault (for secret)
  • 38. VSTS CI CD for the project Demo
  • 40. You should ALWAYS enable application insights and log often, it saves lives! Application telemetry • Functions have a default logging infrastructure • That logging infrastructure can be plugged to Application insights • Logging infrastructure outputs to • Console output • Dashboard storage • Azure Web App logging (streaming…) • System logging
  • 43. Azure Functions are usually really cheap unless you do something wrong. Consumption plans • Azure App Service Plan • (pay for your plan and instances, A1, DSv2, B2….) • « Pay as you go » Plan • 1 000 000 requests and 400 000 GB/s free each month • GB/s = memory consumed * time used • Eg: 128MB * 3s = 0,384 GB/s
  • 44. Azure functions are really cheap, however you can still make important savings. Penny-pinching • Under heavy and « constent » workload it’s most of the time cheaper to go with App Service Plan. • Don’t hesitate to move workloads to cheaper regions if latency is not an issue • Don’t forget you still pay for storage dashboard! • App Service plans: • Combine plans if possible • Use auto-scaling • Multiple small functions always cheaper than a big one!
  • 46. Functions allow developers to focus on what matters and be even more productive. Conclusion •Serverless dev allows us to focus on the business logic: the true value •Functions are “plug-n-play” and extensible •Durable Functions help us “split” the workload, making it easier •CI/CD saves us even more time •We can keep everything in check with telemetry •All of that for a fraction of the cost
  • 47. Other sessions • Bob German • AZR103 - Mastering Azure Functions • DEV203 - Building Web Services for SharePoint and Teams • Adis Jugo • AZR303 - Developing event receiver and timer jobs in SharePoint Online • (me) • AZR302 - The Microsoft Graph and SharePoint Framework under steroids with Azure functions
  • 48. Please fill out evals! AZR203
  • 49. Bit.ly/vince365 @baywet slideshare.net/VincentBIRET Thanks!/Questions? Vincent Biret Office 365 and Azure Developer @baywet Bit.ly/vince365

Editor's Notes

  • #4: Devs, Ops, Deciders
  • #6: Gestion des questions, interaction, ok avec ce programme?
  • #19: https://docs.microsoft.com/en-us/azure/azure-functions/supported-languages
  • #20: https://docs.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings
  • #23: https://www.visualstudio.com/fr-fr/docs/build/concepts/agents/hosted#software https://blogs.msdn.microsoft.com/appserviceteam/2017/06/13/deployment-slots-preview-for-azure-functions/ https://blogs.msdn.microsoft.com/appserviceteam/2017/06/01/deploying-visual-studio-2017-function-projects-with-vsts/
  • #26: https://docs.microsoft.com/en-us/azure/azure-functions/functions-versions
  • #29: Browser edition experience is great for prototyping Functions cli + vs code is great for light machines/non dotnet solutions VS2017 is great for existing experience/project with .NET My personal preference: I use all of those!
  • #31: https://docs.microsoft.com/en-us/azure/azure-functions/durable-functions-install https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-twilio func extensions install -p Microsoft.Azure.WebJobs.Extensions.Twilio -v 3.0.0-beta5
  • #34: https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-twilio
  • #49: https://stackify.com/lower-azure-pricing-optimize-costs/?utm_referrer=https%3A%2F%2Fwww.bing.com%2F https://docs.microsoft.com/en-us/azure/azure-functions/functions-best-practices
  • #51: Money save = dev time saved, less support to provide, better product/service