Reputation: 9981
MemSQL doesn't support backup of columnar tables:
memsql> backup database stat to '/data/memsql-backup';
ERROR 1706 (HY000): Feature 'Backup of a database containing a columnar table' is not supported by MemSQL.
How to organize online backup in this case? Through export to CSV?
Upvotes: 2
Views: 257
Reputation: 270
mysqldump
ing the columnar table is your best bet for an online backup in this case. If in the future you would like to run the BACKUP
command on the entire database, (for the time being) it is recommended that you move your columnar table to a different database in the cluster.
Upvotes: 1
Reputation: 176
At the moment, yes, exporting columnstore tables to a file is the recommended solution. The select into outfile command or the mysqldump do the job well.
http://docs.memsql.com/4.0/ref/SELECT/
Upvotes: 2