{"id":18,"date":"2021-07-30T13:01:00","date_gmt":"2021-07-30T13:01:00","guid":{"rendered":"https:\/\/developer-portal.w6d.io\/?p=10"},"modified":"2025-02-21T18:16:09","modified_gmt":"2025-02-21T18:16:09","slug":"canary-release-vs-blue-green-deployments","status":"publish","type":"post","link":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/","title":{"rendered":"Canary Release vs Blue-Green Deployments"},"content":{"rendered":"\n<p>Choosing the right deployment strategy is crucial to the availability and quality of your services. Two of the most known deployment strategies are blue\/green deployment and canary release.<br>This article discusses both deployment strategies. It explores the differences between the two, the pros and cons of each one, and finally the best use case for each of them.<br>Downtimes when updating applications have now become a concept of the past. Users expect the introduction of new application versions to be a seamless process that doesn\u2019t interrupt their experience. Canary release and blue-green deployment strategies both overcome the possibility of updates\u2019 related downtime problems.<br>In this article, we\u2019ll discuss each strategy\u2019s approach to the upgrade process, its strengths, shortcomings, and best use cases.<\/p>\n\n\n\n<h2>What is Canary Release?<\/h2>\n\n\n\n<p>Canary release is a deployment rollout strategy that aims at minimizing new software risks by directing a small percentage of users to the new version of the application. After verifying that the new application works as intended, the traffic directed to it is gradually increased and eventually, all traffic is directed to it.<br>In case an issue is detected at any point throughout the deployment, a rollback is performed with ease because both the current and the new versions are in the production environment.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"761\" height=\"581\" src=\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png\" alt=\"\" class=\"wp-image-5\" srcset=\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png 761w, https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary-300x229.png 300w\" sizes=\"(max-width: 761px) 100vw, 761px\" \/><figcaption>How canary release works<\/figcaption><\/figure>\n\n\n\n<h2>What is Blue-Green Deployment?<\/h2>\n\n\n\n<p>Blue-Green Deployment is a deployment strategy aimed at minimizing the chance for lags or downtime. It does this by creating a production environment, that is identical to the environment that the live version is running on. The new version of the application is then deployed in the newly created environment. Blue environment refers to the environment of the old version, and green environment refers to the new version\u2019s environment.<br>This strategy allows developers to thoroughly test the new version in a production environment before gradually directing user traffic to it. After the migration of user traffic is complete, the old version is kept intact in case there is a need for rollback or disaster recovery.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"437\" src=\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/bluegreen-1024x437.png\" alt=\"\" class=\"wp-image-4\" srcset=\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/bluegreen-1024x437.png 1024w, https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/bluegreen-300x128.png 300w, https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/bluegreen-768x328.png 768w, https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/bluegreen.png 1361w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption>How blue-green deployment works<\/figcaption><\/figure>\n\n\n\n<h2>Differences between Cary Release and Blue-Green Deployment<\/h2>\n\n\n\n<p>There are several differences between these two strategies in how they approach the deployment process. These are the most important ones:<\/p>\n\n\n\n<ul><li>In blue-green deployment, a second identical production environment needs to be created but the canary release works on the existing one.<\/li><\/ul>\n\n\n\n<ul><li>Secondly, unlike the canary release blue-green deployment allows for unlimited testing in the production environment.<\/li><\/ul>\n\n\n\n<ul><li>With the canary release, you can target a specific subset of users randomly or using a set criterion. This is not possible with a blue-green deployment strategy.<\/li><\/ul>\n\n\n\n<h2>Blue-Green Deployment Pros and Cons<\/h2>\n\n\n\n<h3>Pros of blue-green deployment<\/h3>\n\n\n\n<p>First, it allows testing the new version in a production environment without impacting the live one. This is important when you have major updates that take a lot of time to test thoroughly. Secondly, instant cutover switching ensures that traffic is moved to the new version instantly and everyone sees the new release without any lag. Finally, it lessens the chances of downtime or lags during deployment because the old version is available in case a rollback is needed.<\/p>\n\n\n\n<h3>Cons of blue-green deployment<\/h3>\n\n\n\n<p>First, during the cutover, users\u2019 requests can be dropped. This can be a problem, especially if the request was a transaction because the request might have already been recorded in the database before being dropped. The other shortcoming of this strategy is that, unlike the canary release, this method gives the developer minimal traffic scaling control during the deployment process. Thirdly, it is expensive and claims some time from the DevOps team to set up. This is because a new environment that takes a lot of resources like the first environment has to be set up. Finally, the process of managing the database during the cutover is very difficult and requires complex schemas adjustments.<\/p>\n\n\n\n<h2>Canary Release<\/h2>\n\n\n\n<p>This strategy is widely used due to the benefits that it offers to developers in many use cases. Below are the benefits it offers and its shortcomings.<\/p>\n\n\n\n<h2>Pros of canary release<\/h2>\n\n\n\n<p>First, it gives a lot of control in the distribution of traffic between the new and the old deployment. For instance, you can choose the percentage, and also create a subset of users based on factors such as location or account types. Secondly, it reduces the chances of a system failure by providing a rollback option in case the new version has issues. Thirdly, it gives a chance to learn how a small group of users is reacting to the new version of the application. The data from that small group can be used to understand how the users will react after the full rollout. Another advantage of this strategy is that it is not limited in terms of platform compatibility. You can use it to deploy applications on mobile, website, or desktop platforms. Finally, it can be deployed on hybrid software solutions that combine native and web applications.<\/p>\n\n\n\n<h3>Cons of canary release<\/h3>\n\n\n\n<p>The first shortcoming is that, unlike the blue-green deployment, you don\u2019t get a chance to test the new version in an identical production environment. The other one is that, managing a database and its operations during canary deployment is very difficult and when not well handled can lead to data loss or duplication. To be able to run the two versions of releases, the database will need to be adjusted to handle two instances of the same application. Unless you implement this successfully, requests from one of the versions may be dropped because the database denies it access.<\/p>\n\n\n\n<h2>Best Use Cases<\/h2>\n\n\n\n<p><strong>Blue-green deployment<\/strong> is most effective when you have an application that will receive major updates with the new version. This is because the method requires a higher budget to implement due to the creation of an identical deployment environment.<\/p>\n\n\n\n<p>When a company has a policy of releasing major updates at specified intervals, it is important to have a testing platform capable of handling all types of tests in the production environment. This will allow them to fix the bugs that would be a nuisance to the users before they are introduced to the new version.<\/p>\n\n\n\n<p><br><strong>Canary deployment<\/strong> is most effective in cases where there are regular rollouts due to the high frequency of updates. This is because it doesn\u2019t require expensive infrastructure to implement smoothly. It is also effective in testing out a new feature that has been developed before making the decision on whether to fully deploy it to all users. The flexibility in targeting a subset of users based on a set criterion provides an opportunity for the collection of more meaningful data leading to better insight.<\/p>\n\n\n\n<h2>Summary<\/h2>\n\n\n\n<p>In sum, when rolling out a new version of your software, it is important to make sure that there is minimal chance of downtimes or lags. This can be achieved by using rollout methods that allow for instant rollbacks in case there is an issue with the new version. Canary release and blue-green deployment enable developers to achieve this by allowing for gradual rollout with the backup option ready to be fully engaged. However, the two methods approach the rollout process differently, and each method has its best use scenarios. Canary release is best for undertaking frequent updates while the blue-green method is best for rolling out significant upgrades.<\/p>\n\n\n\n<h2>Start deploying your cloud-native apps today<\/h2>\n\n\n\n<p>Use <a href=\"https:\/\/www.w6d.io\/\">Wildcard<\/a> to implement a zero-downtime strategy with ease. With our hassle-free platform, you don\u2019t have to be a DevOps engineer to continuously test and deliver your cloud-native apps. <a href=\"https:\/\/www.w6d.io\/\">Try it now, it&#8217;s free!<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Choosing the right deployment strategy is crucial to the availability and quality of your services. Two of the most known deployment strategies are blue\/green deployment and canary release.This article discusses both deployment strategies. It explores the differences between the two, the pros and cons of each one, and finally the best use case for each &#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Canary Release vs Blue-Green Deployments | WildBlog<\/title>\n<meta name=\"description\" content=\"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Canary Release vs Blue-Green Deployments | WildBlog\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/\" \/>\n<meta property=\"og:site_name\" content=\"WildBlog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Wildcard-W6D-107620024768953\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-30T13:01:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-21T18:16:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sylvain_cordier\" \/>\n<meta name=\"twitter:site\" content=\"@w6dio\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sylvain CORDIER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.w6d.io\/blog\/#organization\",\"name\":\"Wildcard\",\"url\":\"https:\/\/www.w6d.io\/blog\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/Wildcard-W6D-107620024768953\",\"https:\/\/www.linkedin.com\/company\/w6d\/\",\"https:\/\/twitter.com\/w6dio\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.w6d.io\/blog\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.w6d.io\/resources\/wp-content\/uploads\/sites\/2\/2021\/08\/logo-e1629211974613.png\",\"contentUrl\":\"https:\/\/www.w6d.io\/resources\/wp-content\/uploads\/sites\/2\/2021\/08\/logo-e1629211974613.png\",\"width\":90,\"height\":90,\"caption\":\"Wildcard\"},\"image\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.w6d.io\/blog\/#website\",\"url\":\"https:\/\/www.w6d.io\/blog\/\",\"name\":\"WildBlog\",\"description\":\"Build, test &amp; deploy app with NoCode\",\"publisher\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.w6d.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png\",\"contentUrl\":\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png\",\"width\":761,\"height\":581},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage\",\"url\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/\",\"name\":\"Canary Release vs Blue-Green Deployments | WildBlog\",\"isPartOf\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage\"},\"datePublished\":\"2021-07-30T13:01:00+00:00\",\"dateModified\":\"2025-02-21T18:16:09+00:00\",\"description\":\"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.w6d.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Canary Release vs Blue-Green Deployments\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/#\/schema\/person\/d2aa5f63e7e7e05abaa6e965fede7ee1\"},\"headline\":\"Canary Release vs Blue-Green Deployments\",\"datePublished\":\"2021-07-30T13:01:00+00:00\",\"dateModified\":\"2025-02-21T18:16:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage\"},\"wordCount\":1263,\"publisher\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png\",\"articleSection\":[\"CI\/CD\"],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.w6d.io\/blog\/#\/schema\/person\/d2aa5f63e7e7e05abaa6e965fede7ee1\",\"name\":\"Sylvain CORDIER\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.w6d.io\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1d8d2cec502640906c11a0d768de525b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1d8d2cec502640906c11a0d768de525b?s=96&d=mm&r=g\",\"caption\":\"Sylvain CORDIER\"},\"description\":\"Cutting-edge technology lover CEO @ Wildcard\",\"sameAs\":[\"https:\/\/www.w6d.io\",\"https:\/\/www.linkedin.com\/in\/sylvain-cordier\/\",\"https:\/\/twitter.com\/@sylvain_cordier\"],\"url\":\"https:\/\/www.w6d.io\/blog\/author\/sylvaincordier\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Canary Release vs Blue-Green Deployments | WildBlog","description":"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.","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:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/","og_locale":"en_US","og_type":"article","og_title":"Canary Release vs Blue-Green Deployments | WildBlog","og_description":"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.","og_url":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/","og_site_name":"WildBlog","article_publisher":"https:\/\/www.facebook.com\/Wildcard-W6D-107620024768953","article_published_time":"2021-07-30T13:01:00+00:00","article_modified_time":"2025-02-21T18:16:09+00:00","og_image":[{"url":"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png"}],"twitter_card":"summary_large_image","twitter_creator":"@sylvain_cordier","twitter_site":"@w6dio","twitter_misc":{"Written by":"Sylvain CORDIER","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.w6d.io\/blog\/#organization","name":"Wildcard","url":"https:\/\/www.w6d.io\/blog\/","sameAs":["https:\/\/www.facebook.com\/Wildcard-W6D-107620024768953","https:\/\/www.linkedin.com\/company\/w6d\/","https:\/\/twitter.com\/w6dio"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.w6d.io\/blog\/#logo","inLanguage":"en-US","url":"https:\/\/www.w6d.io\/resources\/wp-content\/uploads\/sites\/2\/2021\/08\/logo-e1629211974613.png","contentUrl":"https:\/\/www.w6d.io\/resources\/wp-content\/uploads\/sites\/2\/2021\/08\/logo-e1629211974613.png","width":90,"height":90,"caption":"Wildcard"},"image":{"@id":"https:\/\/www.w6d.io\/blog\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.w6d.io\/blog\/#website","url":"https:\/\/www.w6d.io\/blog\/","name":"WildBlog","description":"Build, test &amp; deploy app with NoCode","publisher":{"@id":"https:\/\/www.w6d.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.w6d.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png","contentUrl":"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png","width":761,"height":581},{"@type":"WebPage","@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage","url":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/","name":"Canary Release vs Blue-Green Deployments | WildBlog","isPartOf":{"@id":"https:\/\/www.w6d.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage"},"datePublished":"2021-07-30T13:01:00+00:00","dateModified":"2025-02-21T18:16:09+00:00","description":"In this blog post, we dive into the two deployment models: Canary Release and Blue-Green Deployment and we list the pros and cons of each one.","breadcrumb":{"@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.w6d.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Canary Release vs Blue-Green Deployments"}]},{"@type":"Article","@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#article","isPartOf":{"@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage"},"author":{"@id":"https:\/\/www.w6d.io\/blog\/#\/schema\/person\/d2aa5f63e7e7e05abaa6e965fede7ee1"},"headline":"Canary Release vs Blue-Green Deployments","datePublished":"2021-07-30T13:01:00+00:00","dateModified":"2025-02-21T18:16:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#webpage"},"wordCount":1263,"publisher":{"@id":"https:\/\/www.w6d.io\/blog\/#organization"},"image":{"@id":"https:\/\/www.w6d.io\/blog\/canary-release-vs-blue-green-deployments\/#primaryimage"},"thumbnailUrl":"https:\/\/www.w6d.io\/blog\/wp-content\/uploads\/sites\/2\/2021\/08\/canary.png","articleSection":["CI\/CD"],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.w6d.io\/blog\/#\/schema\/person\/d2aa5f63e7e7e05abaa6e965fede7ee1","name":"Sylvain CORDIER","image":{"@type":"ImageObject","@id":"https:\/\/www.w6d.io\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/1d8d2cec502640906c11a0d768de525b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1d8d2cec502640906c11a0d768de525b?s=96&d=mm&r=g","caption":"Sylvain CORDIER"},"description":"Cutting-edge technology lover CEO @ Wildcard","sameAs":["https:\/\/www.w6d.io","https:\/\/www.linkedin.com\/in\/sylvain-cordier\/","https:\/\/twitter.com\/@sylvain_cordier"],"url":"https:\/\/www.w6d.io\/blog\/author\/sylvaincordier\/"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/posts\/18"}],"collection":[{"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/comments?post=18"}],"version-history":[{"count":1,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/posts\/18\/revisions"}],"predecessor-version":[{"id":64,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/posts\/18\/revisions\/64"}],"wp:attachment":[{"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/media?parent=18"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/categories?post=18"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.w6d.io\/blog\/wp-json\/wp\/v2\/tags?post=18"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}