I am running the following code:
/opt/couchbase/bin/cbtransfer -x data_only=1,batch_max_size=200 -t 2 -v --single-node --destination-operation=add -b mybucket -B mybucket -u administrator -p ‘mypassword’
couchbase://127.0.0.1:8091
couchbase://couchbase.destination.io:8091
But it does not do anything, giving me the following message:
mt cbtransfer…
mt source : couchbase://127.0.0.1:8091
mt sink : couchbase://couchbase.destination.io:8091
mt opts : {‘username’: ‘’, ‘source_vbucket_state’: ‘active’, ‘destination_vbucket_state’: ‘active’, ‘verbose’: 1, ‘dry_run’: False, ‘extra’: {‘max_retry’: 10.0, ‘rehash’: 0.0, ‘data_only’: 1.0, ‘uncompress’: 0.0, ‘nmv_retry’: 1.0, ‘conflict_resolve’: 1.0, ‘cbb_max_mb’: 100000.0, ‘mcd_compatible’: 1.0, ‘try_xwm’: 1.0, ‘backoff_cap’: 10.0, ‘batch_max_bytes’: 400000.0, ‘report_full’: 2000.0, ‘seqno’: 0.0, ‘batch_max_size’: 200.0, ‘report’: 5.0, ‘design_doc_only’: 0.0, ‘recv_min_bytes’: 4096.0}, ‘single_node’: True, ‘bucket_destination’: ‘mybucket’, ‘destination_operation’: ‘add’, ‘vbucket_list’: None, ‘threads’: 2, ‘key’: None, ‘password’: ‘’, ‘id’: None, ‘bucket_source’: ‘mybucket’}
2015-06-14 17:01:21,522: mt bucket: mybucket
.
bucket: mybucket, msgs transferred…
: total | last | per sec
transfer data only. bucket design docs will be skipped.
done
0 msgs transferred… however, mybucket has ~20000000 item counts.
If I do this without --single-node option, it seems work fine.
What would be the reason for this?