Configuring the Tungsten Connector for PCI Compliance

This blog is about configuring Tungsten for PCI compliance.
![]() |
This blog is about configuring Tungsten for PCI compliance.
Latency-sensitive applications running in Java sometimes experience unacceptable delays under heavy I/O load. This blog discusses why this problem occurs and what to do about it for applications running Tungsten Clustering for MySQL.
Overview The Skinny In this blog post we will discuss how to use the Tungsten Connector keep-alive feature to ensure long-running MySQL & MariaDB/Percona Server client sessions stay connected in a Tungsten Cluster. Agenda What’s Here? Briefly explore how the Tungsten Connector works Describe the Connector keep-alives – what are they and why do we […]
https://github.com/continuent/continuent-puppet-tungsten As user root: vi /root/install.pp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$clusterData = { "myServiceNameHere" => { "topology" => "master-slave", "master" => "myDBHostName1", "slaves" => "myDBHostName2", }, } class { 'tungsten' : installSSHKeys => true, installMysql => true, clusterData => $clusterData, replicatorRepo => "stable", installReplicatorSoftware => true, } |
yum install puppet mkdir -p /etc/puppet/modules puppet module install continuent/tungsten puppet apply /root/install.pp