Upgrade to Pro — share decks privately, control downloads, hide ads and more …

From Monolith Database to Microservice Database, and how to improve Application and DB performance in all projects [CodeOne 2018]

From Monolith Database to Microservice Database, and how to improve Application and DB performance in all projects [CodeOne 2018]

It looks like everyone is moving their Monolith application to Microservice architecture right ?
But how that move looks from Database point of view? How should this task be approached ?

Join me in this talk to hear about first hand experience of approaching and solving all of this "problems".

Also you will hear tips and tricks on how you can improve performance of any application and database, in few easy steps.

Vladimir Dejanovic

October 22, 2018
Tweet

More Decks by Vladimir Dejanovic

Other Decks in Programming

Transcript

  1. #CodeOne @VladimirD_42 From Monolith to Microservice DB and Improving App

    and Database Performance in Projects [DEV4790] Vladimir Dejanović 22 October 2018
  2. @VladimirD_42 #CodeOne Create/Add mysql> create table post ( id int

    not null, body text, primary key (`id`)); mysql> alter table post add column title varchar(50) not null default '-';
  3. @VladimirD_42 #CodeOne Update/Modify Add new in DB Add new in

    Code, but don’t use Populate new in code, but don’t use