Deprecated: Function Yoast\WP\SEO\Conditionals\Schema_Blocks_Conditional::get_feature_flag is deprecated since version Yoast SEO 20.5 with no alternative available. in /home1/minerho3/public_html/wp-includes/functions.php on line 6078

Deprecated: Function Yoast\WP\SEO\Conditionals\Schema_Blocks_Conditional::get_feature_flag is deprecated since version Yoast SEO 20.5 with no alternative available. in /home1/minerho3/public_html/wp-includes/functions.php on line 6078

Deprecated: Function Yoast\WP\SEO\Conditionals\Schema_Blocks_Conditional::get_feature_flag is deprecated since version Yoast SEO 20.5 with no alternative available. in /home1/minerho3/public_html/wp-includes/functions.php on line 6078

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/minerho3/public_html/wp-includes/functions.php:6078) in /home1/minerho3/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":1420,"date":"2018-05-14T18:11:46","date_gmt":"2018-05-14T18:11:46","guid":{"rendered":"http:\/\/minervadb.com\/?p=1420"},"modified":"2018-05-15T06:31:26","modified_gmt":"2018-05-15T06:31:26","slug":"how-to-resize-innodb-logs","status":"publish","type":"post","link":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/","title":{"rendered":"How to resize InnoDB logs ?"},"content":{"rendered":"

This post is about a very simple approach \/ step-by-step InnoDB log (aka transaction logs)<\/em>resize, We don’t do this activity regularly but when we have to resize InnoDB log files, there will be a MySQL downtime. This post will be a like a checklist for anyone who want to resize InnoDB log files without any mistakes, We made this task in multiple steps so that you can follow much better:<\/p>\n

Step 1<\/strong> – Check existing logs and their size:<\/p>\n

[root@localhost ~]# lsof -c mysqld | grep ib_logfile\r\nmysqld  1018 mysql    5uW     REG              253,0  50331648   180228 \/var\/lib\/mysql\/ib_logfile0\r\nmysqld  1018 mysql   11uW     REG              253,0  50331648   180229 \/var\/lib\/mysql\/ib_logfile1<\/pre>\n

Step 2<\/strong> – Shutdown MySQL<\/p>\n

[root@localhost ~]# systemctl stop mysqld \r\n[root@localhost ~]# systemctl status mysqld \r\n\u25cf mysqld.service - MySQL Server\r\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/mysqld.service; enabled; vendor preset: disabled)\r\n   Active: inactive (dead) since Sat 2018-05-12 16:33:51 IST; 5s ago\r\n     Docs: man:mysqld(8)\r\n           http:\/\/dev.mysql.com\/doc\/refman\/en\/using-systemd.html\r\n  Process: 5848 ExecStart=\/usr\/sbin\/mysqld $MYSQLD_OPTS (code=exited, status=0\/SUCCESS)\r\n  Process: 5831 ExecStartPre=\/usr\/bin\/mysqld_pre_systemd (code=exited, status=0\/SUCCESS)\r\n Main PID: 5848 (code=exited, status=0\/SUCCESS)\r\n   Status: \"SERVER_SHUTTING_DOWN\"\r\n\r\nMay 12 16:33:43 localhost.localdomain systemd[1]: Starting MySQL Server...\r\nMay 12 16:33:44 localhost.localdomain systemd[1]: Started MySQL Server.\r\nMay 12 16:33:49 localhost.localdomain systemd[1]: Stopping MySQL Server...\r\nMay 12 16:33:51 localhost.localdomain systemd[1]: Stopped MySQL Server.\r\n[root@localhost ~]# \r\n<\/pre>\n

Step 3<\/strong> – From reliability \/ safety perspective, We don’t recommend you remove the existing log files. You may need these files to restore database if anything goes wrong unfortunately<\/p>\n

[root@localhost ~]# find \/var\/lib\/mysql -type f -name \"ib_logfile?\" -exec mv {} {}_OLD \\;\r\n[root@localhost ~]# ls \/var\/lib\/mysql\r\nauto.cnf       ca-key.pem       db1              ib_logfile1_OLD     private_key.pem  sys\r\nbinlog.000008  ca.pem           ib_buffer_pool   mysql               public_key.pem   undo_001\r\nbinlog.000009  client-cert.pem  ibdata1          mysql.ibd           server-cert.pem  undo_002\r\nbinlog.index   client-key.pem   ib_logfile0_OLD  performance_schema  server-key.pem\r\n[root@localhost ~]#<\/pre>\n

Step 4<\/strong> – \u00a0Resize innodb_log_file_size system variable in my.cnf using you favorite editor of choice, In this post we have used 64M (which actually is a good value for many mid sized systems, bigger values are always a concern under some situations)<\/p>\n

[root@localhost ~]# grep 'innodb_log_file_size' \/etc\/my.cnf\r\ninnodb_log_file_size=64M\r\n<\/pre>\n

Step 5<\/strong> – Restart MySQL instance<\/p>\n

[root@localhost ~]# systemctl start mysqld \r\n[root@localhost ~]# systemctl status mysqld \r\n\u25cf mysqld.service - MySQL Server\r\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/mysqld.service; enabled; vendor preset: disabled)\r\n   Active: active (running) since Sat 2018-05-12 16:44:30 IST; 7s ago\r\n     Docs: man:mysqld(8)\r\n           http:\/\/dev.mysql.com\/doc\/refman\/en\/using-systemd.html\r\n  Process: 5938 ExecStartPre=\/usr\/bin\/mysqld_pre_systemd (code=exited, status=0\/SUCCESS)\r\n Main PID: 5955 (mysqld)\r\n   Status: \"SERVER_OPERATING\"\r\n   CGroup: \/system.slice\/mysqld.service\r\n           \u2514\u25005955 \/usr\/sbin\/mysqld\r\n\r\nMay 12 16:44:29 localhost.localdomain systemd[1]: Starting MySQL Server...\r\nMay 12 16:44:30 localhost.localdomain systemd[1]: Started MySQL Server.<\/pre>\n

You have successfully resized InnoDB log files size \ud83d\ude0a\u00a0\ud83d\udc4d<\/p>\n

[root@localhost ~]# lsof -c mysqld | grep ib_logfile\r\nmysqld  5955 mysql   10uW     REG              253,0  67108864   180206 \/var\/lib\/mysql\/ib_logfile0\r\nmysqld  5955 mysql   11uW     REG              253,0  67108864   180230 \/var\/lib\/mysql\/ib_logfile1\r\n[root@localhost ~]# \r\n<\/pre>\n

 <\/p>\n","protected":false},"excerpt":{"rendered":"

This post is about a very simple approach \/ step-by-step InnoDB log (aka transaction logs)resize, We don’t do this activity regularly but when we have to resize InnoDB log files, there will be a MySQL […]<\/a><\/p>\n<\/div>","protected":false},"author":10,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20,21,2,3,15,118],"tags":[24,16,129],"yoast_head":"\nEnterprise-class Consulting, 24*7 Support and Remote DBA Services for MySQL, MariaDB, PostgreSQL and ClickHouse<\/title>\n<meta name=\"description\" content=\"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to resize InnoDB logs ?\" \/>\n<meta property=\"og:description\" content=\"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering\" \/>\n<meta property=\"og:url\" content=\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\" \/>\n<meta property=\"og:site_name\" content=\"The WebScale Database Infrastructure Operations Experts\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/WebScaleDBA\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/WebScaleDBA\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-14T18:11:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-05-15T06:31:26+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/minervadb.com\/wp-content\/uploads\/2019\/07\/LogoColorTextRight.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"MinervaDB Corporation\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/WebScaleDBA\" \/>\n<meta name=\"twitter:site\" content=\"@webscaledba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"MinervaDB Corporation\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\"},\"author\":{\"name\":\"MinervaDB Corporation\",\"@id\":\"https:\/\/minervadb.com\/#\/schema\/person\/9cae1c69d8b5c86168963f97bf75b9ce\"},\"headline\":\"How to resize InnoDB logs ?\",\"datePublished\":\"2018-05-14T18:11:46+00:00\",\"dateModified\":\"2018-05-15T06:31:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\"},\"wordCount\":174,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/minervadb.com\/#organization\"},\"keywords\":[\"InnoDB performance\",\"MySQL Performance\",\"MySQL. MySQL DBA\"],\"articleSection\":[\"InnoDB\",\"InnoDB Performance\",\"MySQL\",\"MySQL DBA\",\"MySQL Performance\",\"MySQL Remote DBA\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\",\"url\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\",\"name\":\"Enterprise-class Consulting, 24*7 Support and Remote DBA Services for MySQL, MariaDB, PostgreSQL and ClickHouse\",\"isPartOf\":{\"@id\":\"https:\/\/minervadb.com\/#website\"},\"datePublished\":\"2018-05-14T18:11:46+00:00\",\"dateModified\":\"2018-05-15T06:31:26+00:00\",\"description\":\"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering\",\"breadcrumb\":{\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/minervadb.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to resize InnoDB logs ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/minervadb.com\/#website\",\"url\":\"https:\/\/minervadb.com\/\",\"name\":\"The WebScale Database Infrastructure Operations Experts\",\"description\":\"Committed to Building Optimal, Scalable, Highly Available, Fault-Tolerant, Reliable and Secured WebScale Database Infrastructure Operations\",\"publisher\":{\"@id\":\"https:\/\/minervadb.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/minervadb.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/minervadb.com\/#organization\",\"name\":\"MinervaDB\",\"url\":\"https:\/\/minervadb.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/minervadb.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/minervadb.com\/wp-content\/uploads\/2018\/03\/LogoColorTextRight.jpeg\",\"contentUrl\":\"https:\/\/minervadb.com\/wp-content\/uploads\/2018\/03\/LogoColorTextRight.jpeg\",\"width\":200,\"height\":200,\"caption\":\"MinervaDB\"},\"image\":{\"@id\":\"https:\/\/minervadb.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/WebScaleDBA\/\",\"https:\/\/x.com\/webscaledba\",\"https:\/\/www.linkedin.com\/company\/minervadb\/\",\"https:\/\/www.youtube.com\/channel\/UClLrz7wS8gVyAR8Lf5x7r1g?view_as=subscriber\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/minervadb.com\/#\/schema\/person\/9cae1c69d8b5c86168963f97bf75b9ce\",\"name\":\"MinervaDB Corporation\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/minervadb.com\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/0.gravatar.com\/avatar\/0d00cba8b96118c4c4ed6d6be8f771ce?s=96&d=blank&r=g\",\"contentUrl\":\"http:\/\/0.gravatar.com\/avatar\/0d00cba8b96118c4c4ed6d6be8f771ce?s=96&d=blank&r=g\",\"caption\":\"MinervaDB Corporation\"},\"description\":\"Independent and vendor neutral consulting, support, remote DBA services and training for MySQL, MariaDB, Percona Server, PostgreSQL and ClickHouse with core expertize in performance, scalability and high availability . We are an virtual corporation, all of us work from home on multiple timezones and stay connected via Email, Skype, Google Hangouts, Phone and IRC supporting over 250 customers worldwide\",\"sameAs\":[\"https:\/\/minervadb.com\",\"https:\/\/www.facebook.com\/WebScaleDBA\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/WebScaleDBA\"],\"url\":\"http:\/\/minervadb.com\/index.php\/author\/minervadb\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Enterprise-class Consulting, 24*7 Support and Remote DBA Services for MySQL, MariaDB, PostgreSQL and ClickHouse","description":"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering","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":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/","og_locale":"en_US","og_type":"article","og_title":"How to resize InnoDB logs ?","og_description":"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering","og_url":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/","og_site_name":"The WebScale Database Infrastructure Operations Experts","article_publisher":"https:\/\/www.facebook.com\/WebScaleDBA\/","article_author":"https:\/\/www.facebook.com\/WebScaleDBA\/","article_published_time":"2018-05-14T18:11:46+00:00","article_modified_time":"2018-05-15T06:31:26+00:00","og_image":[{"width":200,"height":200,"url":"http:\/\/minervadb.com\/wp-content\/uploads\/2019\/07\/LogoColorTextRight.jpeg","type":"image\/jpeg"}],"author":"MinervaDB Corporation","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/WebScaleDBA","twitter_site":"@webscaledba","twitter_misc":{"Written by":"MinervaDB Corporation","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#article","isPartOf":{"@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/"},"author":{"name":"MinervaDB Corporation","@id":"https:\/\/minervadb.com\/#\/schema\/person\/9cae1c69d8b5c86168963f97bf75b9ce"},"headline":"How to resize InnoDB logs ?","datePublished":"2018-05-14T18:11:46+00:00","dateModified":"2018-05-15T06:31:26+00:00","mainEntityOfPage":{"@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/"},"wordCount":174,"commentCount":0,"publisher":{"@id":"https:\/\/minervadb.com\/#organization"},"keywords":["InnoDB performance","MySQL Performance","MySQL. MySQL DBA"],"articleSection":["InnoDB","InnoDB Performance","MySQL","MySQL DBA","MySQL Performance","MySQL Remote DBA"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/","url":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/","name":"Enterprise-class Consulting, 24*7 Support and Remote DBA Services for MySQL, MariaDB, PostgreSQL and ClickHouse","isPartOf":{"@id":"https:\/\/minervadb.com\/#website"},"datePublished":"2018-05-14T18:11:46+00:00","dateModified":"2018-05-15T06:31:26+00:00","description":"Independent and vendor neutral consulting, support and remote DBA services for MySQL, MariaDB, PostgreSQL and ClickHouse with core expertize in Performance, Scalability, High Availability and Database Reliability Engineering","breadcrumb":{"@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/minervadb.com\/index.php\/2018\/05\/14\/how-to-resize-innodb-logs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/minervadb.com\/"},{"@type":"ListItem","position":2,"name":"How to resize InnoDB logs ?"}]},{"@type":"WebSite","@id":"https:\/\/minervadb.com\/#website","url":"https:\/\/minervadb.com\/","name":"The WebScale Database Infrastructure Operations Experts","description":"Committed to Building Optimal, Scalable, Highly Available, Fault-Tolerant, Reliable and Secured WebScale Database Infrastructure Operations","publisher":{"@id":"https:\/\/minervadb.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/minervadb.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/minervadb.com\/#organization","name":"MinervaDB","url":"https:\/\/minervadb.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/minervadb.com\/#\/schema\/logo\/image\/","url":"https:\/\/minervadb.com\/wp-content\/uploads\/2018\/03\/LogoColorTextRight.jpeg","contentUrl":"https:\/\/minervadb.com\/wp-content\/uploads\/2018\/03\/LogoColorTextRight.jpeg","width":200,"height":200,"caption":"MinervaDB"},"image":{"@id":"https:\/\/minervadb.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/WebScaleDBA\/","https:\/\/x.com\/webscaledba","https:\/\/www.linkedin.com\/company\/minervadb\/","https:\/\/www.youtube.com\/channel\/UClLrz7wS8gVyAR8Lf5x7r1g?view_as=subscriber"]},{"@type":"Person","@id":"https:\/\/minervadb.com\/#\/schema\/person\/9cae1c69d8b5c86168963f97bf75b9ce","name":"MinervaDB Corporation","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/minervadb.com\/#\/schema\/person\/image\/","url":"http:\/\/0.gravatar.com\/avatar\/0d00cba8b96118c4c4ed6d6be8f771ce?s=96&d=blank&r=g","contentUrl":"http:\/\/0.gravatar.com\/avatar\/0d00cba8b96118c4c4ed6d6be8f771ce?s=96&d=blank&r=g","caption":"MinervaDB Corporation"},"description":"Independent and vendor neutral consulting, support, remote DBA services and training for MySQL, MariaDB, Percona Server, PostgreSQL and ClickHouse with core expertize in performance, scalability and high availability . We are an virtual corporation, all of us work from home on multiple timezones and stay connected via Email, Skype, Google Hangouts, Phone and IRC supporting over 250 customers worldwide","sameAs":["https:\/\/minervadb.com","https:\/\/www.facebook.com\/WebScaleDBA\/","https:\/\/x.com\/https:\/\/twitter.com\/WebScaleDBA"],"url":"http:\/\/minervadb.com\/index.php\/author\/minervadb\/"}]}},"_links":{"self":[{"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/posts\/1420"}],"collection":[{"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/comments?post=1420"}],"version-history":[{"count":4,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/posts\/1420\/revisions"}],"predecessor-version":[{"id":1425,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/posts\/1420\/revisions\/1425"}],"wp:attachment":[{"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/media?parent=1420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/categories?post=1420"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/minervadb.com\/index.php\/wp-json\/wp\/v2\/tags?post=1420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}