What is Azure Function?

Video Activity
Join over 3 million cybersecurity professionals advancing their career
Sign up with
Required fields are marked with an *
or

Already have an account? Sign In »

Time
1 hour
Difficulty
Beginner
Video Transcription
00:00
what are azure functions
00:03
before we discuss actual functions, let's see what Serverless means.
00:08
Here is one of the simplest definitions of serverless computing you'll find on the web.
00:14
Survivalists is an execution model where the cloud provider is responsible for executing a piece of cold, also known as a function. By dynamically allocating the resources for its execution,
00:27
there are few important things to remember about service.
00:33
First,
00:34
the cloud vendor is in control of the environment, which means that you need to pay attention to the runtime versions in dependencies.
00:42
Most of the time, you can bring your own dependencies, but you should testing compatibility issues. Also, this may have an impact on the security of your serverless. Simply application.
00:55
Second, the runtime is dynamically created.
00:59
Quite often. This is done with the help of containers and depending off how many dependencies you have the start time of your function maybe longer.
01:08
Most of the time functions are stateless, which means that you cannot save data locally and rely that you will be able to access it between runs.
01:18
Of course, now cloud vendors, including Asher, offer the so called durable functions where you can share stayed between runs.
01:26
Despite this, they're certain architectural and design Parton's that you should follow when working with serverless.
01:34
Last but not least, the execution time of for serverless applications is limited.
01:40
What that means is that they cannot be long running and often not limited to several minutes.
01:47
If you're cold doesn't complete within the hour time, it will be terminated automatically by the vendor.
01:53
This means is that you should implement small, well defined tasks that can be executed relatively fast.
02:04
Actual function is a service on Azur that allows you to run server less applications.
02:09
Azure functions, is targeted to application developers and develops people who are interested in implementing functionality and don't want to deal with managing infrastructure
02:20
actually has other services that allow you to run serverless applications that we'll discuss in the next lecture.
02:28
Azure functions allow you to choose from several programming or scripting languages, including C Sharp Java, JavaScript, Fight on Power Shell and others.
02:38
It has integrated security, allowing you to protect your http, triggered functions with a lot
02:45
providers like Azure, Active Directory, Google, Twitter, Facebook or Microsoft account.
02:50
It also integrates with azure key vote that you can use to store configuration secrets.
02:55
We will look at those in detail in one of the models in this course.
03:00
Azure functions have also simplified integration with other actual services like azure storage event. Great cost mostly be or TWILIO.
03:12
Development of factual functions allows you to use various develops tools like get cup and national develop services for continuous integration and continues delivery
03:21
and last azure functions. Runtime is open source and available in Get Cup.
03:28
Now let's compare the different serval less options in azure.
Up Next