This blog post is all about new MySQL 5.7 physical, logical architecture and it’s components.In this blog post, I will try to explain things in flow including data processing and SQL execution in MySQL with the help of diagrams.
Unlike the other databases, MySQL is a very flexible and
offers different kinds of storage engines as a plugin
for different kinds of needs. Because of this,
MySQL architecture and behavior will also change as per the
use of storage engines, for example transactional [InnoDB]
and non-transactional [MyISAM] engines data storage and
SQL execution methods will be different and within the
server it will use engine specific components like memory and
buffers depending on type storage engine will get used for the
SQL operation.
Will discuss more InnoDB, since it’s default and main storage
engine for MySQL.
MySQL Physical Architecture: Configuration files: …
[Read more]