1 00:00:06,710 --> 00:00:07,930 - [Instructor] There's another concept 2 00:00:07,930 --> 00:00:10,856 called serverless computing. 3 00:00:10,856 --> 00:00:12,700 And basically it's a buzzword 4 00:00:12,700 --> 00:00:15,060 that we actually have heard for quite some time. 5 00:00:15,060 --> 00:00:18,380 And first serverless does not mean 6 00:00:18,380 --> 00:00:20,970 that you do not need a server somewhere. 7 00:00:20,970 --> 00:00:22,540 Instead what it means 8 00:00:22,540 --> 00:00:25,720 that you actually will be using a cloud platform 9 00:00:25,720 --> 00:00:28,720 to host or to develop your code. 10 00:00:28,720 --> 00:00:32,710 For example, you may actually have a serverless app 11 00:00:32,710 --> 00:00:36,090 that is actually distributed in a cloud provider 12 00:00:36,090 --> 00:00:41,090 like Azure or AWS or Google Cloud Platform. 13 00:00:41,240 --> 00:00:44,330 Now serverless is a cloud computing execution 14 00:00:44,330 --> 00:00:46,210 model where the cloud provider, 15 00:00:46,210 --> 00:00:49,170 so like things like AWS or Google Cloud Platform, 16 00:00:49,170 --> 00:00:51,800 dynamically manages the allocation 17 00:00:51,800 --> 00:00:54,810 and the provisioning of the servers, right? 18 00:00:54,810 --> 00:00:59,810 Now the serverless applications run in stateless containers 19 00:01:00,040 --> 00:01:04,120 that are basically ephemeral and event triggered, right? 20 00:01:04,120 --> 00:01:05,070 Basically that means 21 00:01:05,070 --> 00:01:08,640 that it's fully managed by the cloud provider. 22 00:01:08,640 --> 00:01:12,640 Now the AWS Lambda Service is actually one of 23 00:01:12,640 --> 00:01:15,480 the most popular serverless architectures 24 00:01:15,480 --> 00:01:16,880 in the industry, right? 25 00:01:16,880 --> 00:01:19,430 And here actually I'm showing an example 26 00:01:19,430 --> 00:01:23,263 of a function or an application in the AWS Lambda.