Mysqlnd ms drupal hosting

Posted by shinguz on March 20, 2012 at 9:12am

We are looking for web-sites which are running on the highly available Galera Cluster for MySQL.

We know that some installations are out there because there are some Drupal specific configuration parameters in Galera Cluster. But we do not know who it is.

So if your run Drupal on Galera or if you know who is running Drupal on Galera please let mee know.

Thanks,
Oli (oli dot sennhauser at fromdual dot com)

Mysqlnd ms drupal hosting Galera Cluster

Posted by pdrake on August 23, 2012 at 1:11pm

We have investigated Galera Cluster as a possible high availability solution and I would also be interested in hearing about experiences running Drupal on Galera.

Posted by zebb on August 24, 2012 at 6:50am

If your Drupal servers connect to one Galera node, the system should work fine out of the box. In this use case Drupal uses Galera Cluster in master-slave model, and you need to figure out how to implement master fail over.

More interesting use case is multi-master, where each Drupal server can connect to any Galera node at will. In this model, you may face issues with Drupal caching. But, by using memcached for caching you should be fine.

Also, some drupal modules may be picky about write success. If two drupal servers write to same database row at the same time in two separate Galera nodes, one of the transactions will get deadlock error code. Drupal should understand to retry deadlock errors, but this does not always happen. To workaround this, you may configure Galera to retry the deadlocked transaction on behalf of Drupal. Use wsrep_retry_autocommit in my.cnf to enforce this, e.g. wsrep_retry_autocommit=5, should be fine to use.

So, try along following guidelines:
=> use innodb tables
=> use memcached for caching
=> experiment with wsrep_retry_autocommit, if need be

Related articles

View search module drupal hostingHello, and welcome to DrupalModules.com, a community-powered rating and review service dedicated to helping you find the best Drupal modules for your project! Need help finding the right Drupal...
Neerav mehta drupal hostingTwo weeks back, I was over at eBay when one of the product managers we work with interjected "I will be really sad if 3 years from now, you are still stuck in Drupal." As a company, we do have...
All modules drupal hostingJanuary 31, 2017 I had started this series with a post about what features will be evaluated when selecting DIY Drupal hosting solutions. We shall start with the most simplest and earliest...
Drupal multi site hostingHello and welcome. I'm running several sites using Drupal's multisite feature, and noticed the absence of a group to discuss the various issues and how-tos related to doing this. If anyone has...
Hosting multiple sites drupalThere are many reasons why a systems administrator or developer may choose to host multiple sites on the same server in a multisite configuration. For example, such a configuration could:...