~james-page/charms/trusty/percona-cluster/fqdn-fix

« back to all changes in this revision

Viewing changes to hooks/percona_hooks.py

[mariosplivalo,r=hopem]

Fixes db using single file for all innodb tables. All
(new) tables will now, by default, be stored in seperate
file.

This change won't affect current configurations as existing
InnoDB tables will remain in ibdata file, but every new
InnoDB table will have it's data stored in separate .idb
file.

Closes-Bug: 1418570

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
        'clustered': clustered,
110
110
        'cluster_hosts': ",".join(hosts),
111
111
        'sst_method': 'xtrabackup',
112
 
        'sst_password': mysql_password
 
112
        'sst_password': mysql_password,
 
113
        'innodb_file_per_table': config('innodb-file-per-table')
113
114
    }
114
115
 
115
116
    if config('prefer-ipv6'):