Cbbackup/cbrestore 4.6.3 to 6.01

Hi, is it possible to cbbackup data from 4.6.3 and cbrestore into a 6.01 version?
I was not able to find that information. Maybe I am not looking at the right place
https://docs.couchbase.com/server/6.0/cli/backup-cbbackup.html

Hi Steevebisson,
Thanks for using our software.
Yes, you could do backup in 4.6.3 and restore it to 6.0.1 as I did in the following:
From 4.6.3, you run backup with cbbackup of 4.6.3 version. The directory for backup data is in /tmp/backup

[root@s44015 cb-builds]# /opt/couchbase/bin/cbbackup http://172.23.121.224:8091 -u Administrator -p password /tmp/backup/
[####################] 100.0% (10000/estimated 10000 msgs)
bucket: default, msgs transferred…
: total | last | per sec
byte : 676888 | 676888 | 146943.8
[####################] 100.0% (586/estimated 586 msgs)
bucket: gamesim-sample, msgs transferred…
: total | last | per sec
byte : 771581 | 771581 | 1062984.4
[########### ] 53.7% (31591/estimated 58823 msgs)
bucket: travel-sample, msgs transferred…
: total | last | per sec
byte : 36957077 | 36957077 | 2088037.2
done

Then from this server (224) which is still version 4.6.3, you could do restore data to server with 6.0.1 version (225). If you have index, the restore process only restore definition. You need to rebuild the index.

[root@s44015 cb-builds]# /opt/couchbase/bin/cbrestore /tmp/backup/ http://172.23.121.225:8091 -u Administrator -p password -b default -B default
[####################] 100.0% (10000/estimated 10000 msgs)
bucket: default, msgs transferred…
: total | last | per sec
byte : 676888 | 676888 | 410492.1
done
[root@s44015 cb-builds]# /opt/couchbase/bin/cbrestore /tmp/backup/ http://172.23.121.225:8091 -u Administrator -p password -b travel-sample -B travel-sample
[####################] 100.0% (31591/estimated 31591 msgs)
bucket: travel-sample, msgs transferred…
: total | last | per sec
byte : 36185496 | 36185496 | 5152890.9
^[[A^[[Bdone
[root@s44015 cb-builds]# /opt/couchbase/bin/cbrestore /tmp/backup/ http://172.23.121.225:8091 -u Administrator -p password -b gamesim-sample -B gamesim-sample
[####################] 100.0% (586/estimated 586 msgs)
bucket: gamesim-sample, msgs transferred…
: total | last | per sec
byte : 94693 | 94693 | 753798.6
done

If you have any question, drop me a line at thuan at couchbase dot com
Thanks

Awesome Thanks Tuan!