I had been using this in cron for full and incremental backups
FULL
innobackupex --parallel=4 --rsync --socket /var/lib/mysql/mysql.sock /backup/sql
INCREMENTAL
innobackupex --incremental --parallel=4 --rsync --socket /var/lib/mysql/mysql.sock /backup/sql
The 2nd line for Incremental used to work previously with xtrabackup version 2.2
It would put both full and incremental backups with timestamp in the same directory which is what I want.
I have now upgraded to
percona-xtrabackup-2.3.4
And the incremental cron job above also creates FULL backups!
What am I doing wrong??
OS is CentOS 6.7
Thanks