<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Eduard Romanyuk</title>
    <description>The latest articles on DEV Community by Eduard Romanyuk (@eduardromanyuk).</description>
    <link>https://dev.to/eduardromanyuk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F274874%2Feb946b75-9c29-4c00-b779-48d1f9adfb71.jpeg</url>
      <title>DEV Community: Eduard Romanyuk</title>
      <link>https://dev.to/eduardromanyuk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eduardromanyuk"/>
    <language>en</language>
    <item>
      <title>0 downtime is hell, so prepare in advance</title>
      <dc:creator>Eduard Romanyuk</dc:creator>
      <pubDate>Sat, 18 Sep 2021 14:43:23 +0000</pubDate>
      <link>https://dev.to/eduardromanyuk/0-downtime-is-hell-so-prepare-in-advance-5pd</link>
      <guid>https://dev.to/eduardromanyuk/0-downtime-is-hell-so-prepare-in-advance-5pd</guid>
      <description>&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;Quick introduction to what is blue-green deployment with some useful links at the end&lt;/p&gt;

&lt;h2&gt;
  
  
  Preamble
&lt;/h2&gt;

&lt;p&gt;Some time ago my team lead told me to prepare a document about "0 downtime" deployment for developers usage. I knew something about it and thought that it would be easy task for me, but after some research I understood that it was about an endless rabbit hole. And if you want to implement "0 downtime" deployment you need to be very very cautious and better double-check everything. This post is just a warning for you my dear friend.&lt;/p&gt;

&lt;h2&gt;
  
  
  Blue-green deployment
&lt;/h2&gt;

&lt;p&gt;I will not lie to you. It is the only technique I know, so let's check its basic idea. &lt;a href="https://martinfowler.com/bliki/BlueGreenDeployment.html"&gt;Martin Fowler article&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Blue-green deployment is an application release model that gradually transfers user traffic from a previous version of an app or microservice to a nearly identical new release—both of which are running in production.&lt;/p&gt;

&lt;p&gt;The old version can be called the blue environment while the new version can be known as the green environment. Once production traffic is fully transferred from blue to green, blue can standby in case of rollback.&lt;br&gt;
© &lt;a href="https://www.redhat.com/en/topics/devops/what-is-blue-green-deployment"&gt;RedHat&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Sounds pretty easy, but the hardest part of this it is making incompatible changes in compatible way (remember that you try to run previous and current version at the same time). So wherever you have separate layers you need to think about compatibility (client-server, server-database, etc.)&lt;/p&gt;

&lt;p&gt;I will not give you any practical advice, because I have only theoretical knowledge about this topic yet. So check more experienced authors by the links below.&lt;/p&gt;

&lt;h2&gt;
  
  
  Useful materials
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://martinfowler.com/bliki/BlueGreenDeployment.html"&gt;Blue-green deployment @ Martin Fowler blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.redhat.com/en/topics/devops/what-is-blue-green-deployment"&gt;What is blue green deployment? @ RedHat blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://spring.io/blog/2016/05/31/zero-downtime-deployment-with-a-database"&gt;Zero Downtime Deployment with a Database @ Spring Blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=LQI19ngeLsA"&gt;Zero downtime deployment with Kubernetes, Spring Boot and Flyway @ DevOps Days YouTube&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.braintreepayments.com/blog/safe-operations-for-high-volume-postgresql/"&gt;Safe Operations For High Volume PostgreSQL @ braintreepayments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gocardless.com/blog/zero-downtime-postgres-migrations-the-hard-parts/"&gt;Zero-downtime Postgres migrations - the hard parts @ gocardless&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Afterword
&lt;/h2&gt;

&lt;p&gt;Hope this post was useful for you guys. Feel free to share any feedback or thoughts.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>postgres</category>
      <category>0downtime</category>
    </item>
    <item>
      <title>What to look at after AWS associate certifications?</title>
      <dc:creator>Eduard Romanyuk</dc:creator>
      <pubDate>Wed, 25 Aug 2021 19:07:40 +0000</pubDate>
      <link>https://dev.to/eduardromanyuk/what-to-look-at-after-aws-associate-certifications-5fd3</link>
      <guid>https://dev.to/eduardromanyuk/what-to-look-at-after-aws-associate-certifications-5fd3</guid>
      <description>&lt;p&gt;Hi guys!&lt;br&gt;
Want to ask you all for career advice/thoughts.&lt;/p&gt;

&lt;p&gt;I am a Java (Spring) developer with 3 years of commercial experience. I just complete AWS Certified Developer Associate and now I have three AWS certificates (also Cloud Practitioner and Solutions Architect Associate). And I am thinking about what should I do next in order to boost my career. I think further AWS certifications don't have a lot of sense because I mostly don't have access wider than read-only, so I won't be able to use that knowledge.&lt;/p&gt;

&lt;p&gt;I think my weak sides are poor knowledge about security and microservices architecture. So I am looking at CompTIA Security+.&lt;/p&gt;

&lt;p&gt;Maybe you know about some other great certificates to take or books to read that will be useful for me? I am open to any feedback. Thank you in advance.&lt;/p&gt;

</description>
      <category>career</category>
      <category>spring</category>
      <category>java</category>
      <category>help</category>
    </item>
  </channel>
</rss>
