{"id":1758,"date":"2019-08-14T14:00:00","date_gmt":"2019-08-14T14:00:00","guid":{"rendered":"https:\/\/blog.kindgeek.com\/?p=1758"},"modified":"2024-03-25T05:29:55","modified_gmt":"2024-03-25T05:29:55","slug":"serverless-what-why-when","status":"publish","type":"post","link":"https:\/\/www.kindgeek.com\/blog\/post\/serverless-what-why-when","title":{"rendered":"Serverless: what, why, when?"},"content":{"rendered":"<div class=\"inhype-post\"><p class=\"post-date\">Recently updated on March 25, 2024<\/p><\/div>\n<p>This article examines serverless, aka Function as a Service (FaaS), architecture and contains the following chapters:<\/p>\n\n\n\n<p>&nbsp;1. <a href=\"#text1\">What is Serverless?<\/a>&nbsp;<\/p>\n\n\n\n<p>&nbsp;2. <a href=\"#text2\">What are the Benefits of Serverless?<\/a>&nbsp;<\/p>\n\n\n\n<p>&nbsp;3. <a href=\"#text3\">What are the Disadvantages of Serverless?<\/a>&nbsp;<\/p>\n\n\n\n<p>&nbsp;4. <a href=\"#text4\">Is Serverless GDPR Compliant?<\/a>&nbsp;<\/p>\n\n\n\n<p>&nbsp;5. <a href=\"#text5\">When it is Better to Go Serverless?<\/a>&nbsp;<\/p>\n\n\n\n<p>&nbsp;6. <a href=\"#text6\">Conclusion<\/a><\/p>\n\n\n\n<a id=\"text1\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\">What is Serverless?<\/h2>\n\n\n\n<p>Serverless is a&nbsp;<a href=\"https:\/\/services.kindgeek.com\/expertise\/cloud_technologies\" target=\"_blank\" rel=\"noreferrer noopener\">cloud computing<\/a>&nbsp;model that allows creating software without spending time developing and adjusting server infrastructure because specialized computers do it themselves.<\/p>\n\n\n\n<p>Don\u2019t let the name \u201cserverless\u201d deceive you. There are still special servers that handle all the server tackling automatically, without developers\u2019 interference. As&nbsp;<a target=\"_blank\" href=\"https:\/\/serverless.com\/\" rel=\"noreferrer noopener\">serverless.com<\/a>&nbsp;put it, \u201cJust like wireless internet has wires somewhere, serverless architecture still has servers somewhere.\u201d&nbsp;<\/p>\n\n\n\n<p>Serverless is also known as&nbsp;<strong>function as a service<\/strong>&nbsp;(FaaS), which describes this model slightly better.<\/p>\n\n\n\n<p>When a usual cloud-based application is developed, a programmer should think about how a server will handle a user&#8217;s requests, how many server resources to allocate, etc. With the serverless approach, programmers can forget about the server-side and worry only about the functionality of an application.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"891\" height=\"500\" src=\"https:\/\/kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg\" alt=\"Serverless\" class=\"wp-image-1761\" srcset=\"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg 891w, https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD-300x168.jpeg 300w, https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD-768x431.jpeg 768w, https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD-360x202.jpeg 360w\" sizes=\"auto, (max-width: 891px) 100vw, 891px\" \/><\/figure>\n\n\n\n<p><strong>\u201cHow does serverless work?\u201d you ask.<\/strong><\/p>\n\n\n\n<p>To simplify, FaaS servers create individual \u201ccontainers\u201d for each request an application sends. After the request is performed, the container is destroyed.&nbsp;<\/p>\n\n\n\n<p>To create a serverless application, software developers should divide its code into individual functions for a cloud to perform.&nbsp;&nbsp;<\/p>\n\n\n\n<p>The most famous serverless providers include AWS Lambda, Google Cloud Functions, Microsoft Azure Functions, IBM Cloud Functions.&nbsp;<\/p>\n\n\n\n<p>It is important to note that it is possible to create purely serverless applications &#8211; the applications that run solely on clients\u2019 devices or use peer-to-peer architecture and are not bound to any server\/cloud.&nbsp;<\/p>\n\n\n\n<a id=\"text2\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\">What are the Benefits of Serverless?&nbsp;<\/h2>\n\n\n\n<p>The serverless approach offers some great benefits. Here are the most business-relevant of them:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Lower Costs (with a big IF)<\/h3>\n\n\n\n<p>Serverless can be more cost-effective than the traditional cloud approach. Usually, you have to buy\/rent a specific number of servers to cover the expected load, and often most of these servers will stay idle because the number of user requests is not constant. In this case, with serverless, you pay for what you actually use.&nbsp;<\/p>\n\n\n\n<p>However,<strong>&nbsp;if a project requires substantial computing resources<\/strong>, serverless is not a cheaper option. Currently, it is better to rent\/buy usual servers for any high-performance applications that handle millions of requests if your motivation is to cut costs.&nbsp;<\/p>\n\n\n\n<p>In addition, with serverless, developers spend less time developing an application because they don\u2019t deal with the infrastructure and will not worry about scaling the servers\u2019 capacity in the future. As a result, the overall costs can decrease quite significantly.&nbsp;<\/p>\n\n\n\n<p>Why buy 1000 servers to cover all possible scenarios, if you can simply scale on the run and pay for what you actually use.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Better Scalability<\/h3>\n\n\n\n<p>The serverless model allows for better scalability because your team will not be concerned with adjusting and tuning servers when the number of users grows. Overall, you need a smaller team to support your serverless application and make it grow as your business grows.&nbsp;<\/p>\n\n\n\n<p>Also, you will not have to buy\/rent additional servers to scale, which is always a hassle that can cause a lot of inconveniences.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Increased Productivity&nbsp;<\/h3>\n\n\n\n<p>Overall, with serverless architecture, your software development team can spend more time on UI\/UX and an application\u2019s logic to make the piece of software more appealing to a customer and more efficient. At the end of the day, your customers do not know what is going on under the hoof, so the developers can focus more on the attractiveness of the application.&nbsp;<\/p>\n\n\n\n<p>However, developers need a slightly different mindset when developing a serverless application due to its specifics, which may cause some frustration during the initial stages.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Reduced Time to Market&nbsp;<\/h3>\n\n\n\n<p>With serverless, a product goes online much faster as it decreases the friction of the server-side hustle. Yes, programming for serverless requires developers to have a slightly different mindset and get used to a new programming paradigm. However, afterward, everything becomes so smooth that it is often difficult to go back to the traditional server-based development.&nbsp;<\/p>\n\n\n\n<a id=\"text3\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\">What are the Disadvantages of Serverless?&nbsp;<\/h2>\n\n\n\n<p>Serverless is a fairly young architectural approach with its share of weaknesses. However, FaaS is being constantly polished, so some of the below-mentioned disadvantages may disappear soon enough.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Limits<\/h3>\n\n\n\n<p>If you work with serverless, you need to consider task memory and processing power limits imposed by a provider. Therefore, in the case of an unpredictably heavy load, some tasks will not be executed within the given timeframe.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Latency<\/h3>\n\n\n\n<p>Serverless platforms keep rarely-executed functions \u201cat the back,\u201d shutting them down. It means that when such a function is invoked, it will need some time to start. This time can be quite substantial, which will result in a latency increase.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Migration (Vendor Lock-In)<\/h3>\n\n\n\n<p>A third party that provides FaaS services has complete control over the server environment. Also, serverless platforms have unique features and characteristics, and an application needs to be coded to fit the chosen cloud. This means that it is very complicated if not impossible to migrate to another platform; developers will have to rethink and rework an application if migration is required.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Testing is Pain&nbsp;<\/h3>\n\n\n\n<p>Not bothering about server-side infrastructure is great until it isn\u2019t.&nbsp;<\/p>\n\n\n\n<p>Unfortunately, conducting&nbsp;<a href=\"https:\/\/services.kindgeek.com\/services\/qa\" target=\"_blank\" rel=\"noreferrer noopener\">quality assurance<\/a>&nbsp;of the serverless applications falls under the latter category. There are several layers to this problem:<\/p>\n\n\n\n<p><strong>1) Local Testing<\/strong>. In order to test a serverless app locally, you need to replicate a serverless environment on the local machine. Most of the top vendors provide tools that help achieve this, but the tools have their limitations.<\/p>\n\n\n\n<p>2)&nbsp;<strong>Integration Tests<\/strong>. Integration tests are complex and expensive. The units that need to be integrated are smaller and more numerous. Therefore, with serverless, you will have to run plenty of cumbersome integration tests.<\/p>\n\n\n\n<p>3)&nbsp;<strong>Debugging<\/strong>. To hunt down the root cause of a problem, testers and developers need to rely on logs more because a classic runtime debugger is not available.&nbsp;&nbsp;<\/p>\n\n\n\n<p>4)&nbsp;<strong>End-to-End Testing<\/strong>. Considering, mentioned above, serverless is overall a bad match with end-to-end testing.<\/p>\n\n\n\n<p>In the IT world where\u00a0<a target=\"_blank\" href=\"https:\/\/kindgeek.com\/blog\/post\/qa-is-the-new-black\" rel=\"noreferrer noopener\">quality assurance plays a pivotal role<\/a>, such testing complications can be a major issue.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Security\u00a0<\/h3>\n\n\n\n<p>Your serverless application is as secure as the vendor\u2019s infrastructure it is running on. There are not OS-based security features that developers can control, only unportable, platform-specific are. Also, a serverless app consists of many smaller units each of which can be used as an entry point to the system.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">GDPR<\/h3>\n\n\n\n<p>Everything is not so unequivocal with GDPR compliance in the serverless world. Anyway, this topic deserves a separate chapter. So&#8230;<\/p>\n\n\n\n<a id=\"text4\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\">Is Serverless GDPR Compliant?<\/h2>\n\n\n\n<p>Yes&#8230; kinda, but developers should put an effort into achieving GDPR compliance with the serverless approach.&nbsp;<\/p>\n\n\n\n<p><a target=\"_blank\" href=\"https:\/\/kindgeek.com\/blog\/post\/what-is-gdpr\" rel=\"noreferrer noopener\">GDPR<\/a>&nbsp;disrupted the world of IT and bent a lot of companies to its will by the power of terrifying fees. Serverless appeared in somewhat of limbo because of the GDPR because the access to the information and an ability to manage it or provide users with the requested data is limited.&nbsp;<\/p>\n\n\n\n<p>The developers need to ensure that the app\u2019s users will have&nbsp;<\/p>\n\n\n\n<p><strong>1) The Right to Data Portability<\/strong>. A user has a right to have a copy of all personal data you store.&nbsp;<\/p>\n\n\n\n<p><strong>2) The Right to Be Forgotten<\/strong>. A user has a right to have his personal data deleted.&nbsp;<\/p>\n\n\n\n<p><strong>3) Privacy by Design<\/strong>. The security policies should be taken into an account from the earliest stages of development.<\/p>\n\n\n\n<p><strong>4) Notifications about Breaches<\/strong>. All breaches must be reported within 72 hours.&nbsp;<\/p>\n\n\n\n<p>Even though FaaS providers have tools that help achieve a GDPR-compliant result, developers still have to minimize risks by ensuring that a project<\/p>\n\n\n\n<p>&#8211; Doesn\u2019t store everything. Analyze what data exactly you need to store to minimize risks.&nbsp;<\/p>\n\n\n\n<p>&#8211; Makes it easy for users to delete their data.&nbsp;<\/p>\n\n\n\n<p>&#8211; Deletes obsolete data.<\/p>\n\n\n\n<p>&#8211; Ensures that you get clear consent from your users regarding using personal data.&nbsp;<\/p>\n\n\n\n<p>&#8211; Makes sure that no third-party has access to personal data.&nbsp;<\/p>\n\n\n\n<p>&#8211; Logs everything.&nbsp;<\/p>\n\n\n\n<p>All in all, different serverless vendors require different approaches to achieve GDPR compliance. Therefore, there is always a necessity to examine the chosen provider attentively and plan development accordingly.&nbsp;<\/p>\n\n\n\n<p>To conclude, if a project deals with sensitive data, it\u2019s better not to use serverless.&nbsp;<\/p>\n\n\n\n<a id=\"text5\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>When to Go Serverless?&nbsp;<\/strong><\/h2>\n\n\n\n<p>The number of mentioned disadvantages may scare you away from serverless but don\u2019t do hasty judgments. In many cases, the disadvantages do not outweigh the benefits and conveniences of the FaaS. In reality, serverless is a saving grace for many companies, which otherwise will struggle with server and overhead costs.&nbsp;<\/p>\n\n\n\n<p>For instance,&nbsp;<a target=\"_blank\" href=\"https:\/\/dashbird.io\/blog\/serverless-case-study-netflix\/\" rel=\"noreferrer noopener\">Netflix uses serverless<\/a>&nbsp;to manage its video uploading, backup management, and some security features; and&nbsp;<a target=\"_blank\" href=\"https:\/\/dashbird.io\/blog\/serverless-case-study-coca-cola\/\" rel=\"noreferrer noopener\">Coca-Cola uses serverless<\/a>&nbsp;for its vending machines.&nbsp;<\/p>\n\n\n\n<p>However, the question of when it is better to use serverless is a tricky one. As a young technology, serverless has not gained its legs yet. It evolves and changes.&nbsp;<\/p>\n\n\n\n<p>Therefore, it is impossible to unequivocally claim that a hypothetical project \u201cX\u201d is completely suitable for serverless while a hypothetical project \u201cY\u201d is not. The final decision depends on the circumstances, context, and predictable future of a project.&nbsp;<\/p>\n\n\n\n<p>However, considering the current state of serverless, some general recommendations can help make such a decision.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Serverless is&nbsp;<strong>NOT<\/strong>&nbsp;an optimal decision with&nbsp;&nbsp;<\/h6>\n\n\n\n<p>1) Tiny projects. Small and simplistic applications that do not require much time to code better stay with traditional architecture. You would not be able to save many resources as developers will need to learn new frameworks and get used to a new programming paradigm for a tiny bit of coding.&nbsp;<\/p>\n\n\n\n<p>2) Humongous high-performance projects. Applications that will need to process millions of requests will be more expensive if serverless.&nbsp;<\/p>\n\n\n\n<p>3) Projects that deal with sensitive data. If you can\u2019t risk giving access to data to third parties, then don\u2019t.<\/p>\n\n\n\n<p>4) Projects that will migrate. Migration is pretty much impossible with serverless because of the vendor lock-in.&nbsp;&nbsp;<\/p>\n\n\n\n<p>5) Highly secure projects. Applications that require meticulous and highly-customizable security are not the best match for serverless.<\/p>\n\n\n\n<p>At the current stage of the technology&#8217;s development, the projects mentioned above are not the best match for serverless because it may lead to increased costs or undermined security of the applications. Therefore, it is better to use serverless for middle to big projects that are not high-load and do not deal with sensitive data.&nbsp;<\/p>\n\n\n\n<p><strong>Therefore, serverless\u00a0CAN BE\u00a0an effective option if you have a project that corresponds to the above description and\u00a0<\/strong><\/p>\n\n\n\n<p>1) Can be broken down into individual functions, which are active most of the time. Functions that are mostly idle will increase latency when invoked.&nbsp;&nbsp;<\/p>\n\n\n\n<p>2) Has functions that require a short period of time to run (For instance, Lambda allows for a maximum of 5 minutes)<\/p>\n\n\n\n<p>3) Will often scale.&nbsp;<\/p>\n\n\n\n<p>For such projects, FaaS can be a real game-changer.&nbsp;<\/p>\n\n\n\n<p>Deciding whether to use serverless is not the easiest task, and it requires\u00a0<a href=\"https:\/\/kindgeek.com\/blog\/post\/why-discovery-phase-matters\" target=\"_blank\" rel=\"noreferrer noopener\">a clear vision<\/a>\u00a0of a project and software development expertise.\u00a0<\/p>\n\n\n\n<a id=\"text6\"><\/a>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Serverless is not a perfect match for every project out there. However, when the serverless architectural approach is relevant, it decreases costs, allows for unprecedented and smooth scalability, and increases productivity.<\/p>\n\n\n\n<p>Even though serverless is not a fully established technology and has its downfalls, it has a bright future ahead. With each upgrade, FaaS platforms become more efficient, intuitive, and convenient. Perhaps some time into the future, IT professionals would not be able to imagine their lives without the serverless and smooth development process it grants.&nbsp;<\/p>\n\n\n\n<p>As for now, we should carefully consider the specifics of a project and our goals to get the maximum benefit out of this disrupting technology.&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Serverless is a cloud computing model that allows creating software without spending time developing and adjusting server infrastructure because specialized computers do it for them.<\/p>\n<p>Don\u2019t let the name \u201cserverless\u201d deceive you. There are still special servers that handle all the server tackling automatically, without developers\u2019 interference. As serverless.com put it, \u201cJust like wireless internet has wires somewhere, serverless architecture still has servers somewhere.\u201d<\/p>\n","protected":false},"author":5,"featured_media":1761,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[20],"tags":[],"class_list":{"0":"post-1758","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-software-outsourcing"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Serverless: what, why, when? | Kindgeek<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Serverless: what, why, when? | Kindgeek\" \/>\n<meta property=\"og:description\" content=\"Serverless is a cloud computing model that allows creating software without spending time developing and adjusting server infrastructure because specialized computers do it for them. Don\u2019t let the name \u201cserverless\u201d deceive you. There are still special servers that handle all the server tackling automatically, without developers\u2019 interference. As serverless.com put it, \u201cJust like wireless internet has wires somewhere, serverless architecture still has servers somewhere.\u201d\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when\" \/>\n<meta property=\"og:site_name\" content=\"Kindgeek\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-14T14:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-25T05:29:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"891\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mykhailo Bogdan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mykhailo Bogdan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Serverless: what, why, when? | Kindgeek","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when","og_locale":"en_US","og_type":"article","og_title":"Serverless: what, why, when? | Kindgeek","og_description":"Serverless is a cloud computing model that allows creating software without spending time developing and adjusting server infrastructure because specialized computers do it for them. Don\u2019t let the name \u201cserverless\u201d deceive you. There are still special servers that handle all the server tackling automatically, without developers\u2019 interference. As serverless.com put it, \u201cJust like wireless internet has wires somewhere, serverless architecture still has servers somewhere.\u201d","og_url":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when","og_site_name":"Kindgeek","article_published_time":"2019-08-14T14:00:00+00:00","article_modified_time":"2024-03-25T05:29:55+00:00","og_image":[{"width":891,"height":500,"url":"https:\/\/kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg","type":"image\/jpeg"}],"author":"Mykhailo Bogdan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mykhailo Bogdan","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#article","isPartOf":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when"},"author":{"name":"Mykhailo Bogdan","@id":"https:\/\/kindgeek.com\/blog\/#\/schema\/person\/da573e7542c45dc047809322eb5dda40"},"headline":"Serverless: what, why, when?","datePublished":"2019-08-14T14:00:00+00:00","dateModified":"2024-03-25T05:29:55+00:00","mainEntityOfPage":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when"},"wordCount":2019,"commentCount":0,"publisher":{"@id":"https:\/\/kindgeek.com\/blog\/#organization"},"image":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#primaryimage"},"thumbnailUrl":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg","articleSection":["Software Outsourcing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when","url":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when","name":"Serverless: what, why, when? | Kindgeek","isPartOf":{"@id":"https:\/\/kindgeek.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#primaryimage"},"image":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#primaryimage"},"thumbnailUrl":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg","datePublished":"2019-08-14T14:00:00+00:00","dateModified":"2024-03-25T05:29:55+00:00","breadcrumb":{"@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#primaryimage","url":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg","contentUrl":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2019\/08\/FdAqdCgU2tOP6ns5bUtD.jpeg","width":891,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/kindgeek.com\/blog\/post\/serverless-what-why-when#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kindgeek.com\/blog"},{"@type":"ListItem","position":2,"name":"Serverless: what, why, when?"}]},{"@type":"WebSite","@id":"https:\/\/kindgeek.com\/blog\/#website","url":"https:\/\/kindgeek.com\/blog\/","name":"Kindgeek","description":"Blog | Kindgeek","publisher":{"@id":"https:\/\/kindgeek.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kindgeek.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kindgeek.com\/blog\/#organization","name":"Kindgeek","url":"https:\/\/kindgeek.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kindgeek.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/kindgeek.com\/blog\/wp-content\/uploads\/2026\/02\/kg-logo-updated.png","contentUrl":"https:\/\/kindgeek.com\/blog\/wp-content\/uploads\/2026\/02\/kg-logo-updated.png","width":300,"height":60,"caption":"Kindgeek"},"image":{"@id":"https:\/\/kindgeek.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kindgeek.com\/blog\/#\/schema\/person\/da573e7542c45dc047809322eb5dda40","name":"Mykhailo Bogdan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kindgeek.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2021\/04\/mykhailo-150x150.jpeg","contentUrl":"https:\/\/www.kindgeek.com\/blog\/wp-content\/uploads\/2021\/04\/mykhailo-150x150.jpeg","caption":"Mykhailo Bogdan"},"url":"https:\/\/www.kindgeek.com\/blog\/post\/author\/mykhailo-bogdan"}]}},"_links":{"self":[{"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/posts\/1758","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/comments?post=1758"}],"version-history":[{"count":9,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/posts\/1758\/revisions"}],"predecessor-version":[{"id":4778,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/posts\/1758\/revisions\/4778"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/media\/1761"}],"wp:attachment":[{"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/media?parent=1758"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/categories?post=1758"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kindgeek.com\/blog\/wp-json\/wp\/v2\/tags?post=1758"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}