【问题标题】:Unable to restore couchbase bucket using cbrestore无法使用 cbrestore 恢复 couchbase 存储桶
【发布时间】:2017-02-06 06:11:50
【问题描述】:

我正在使用 Couchbase Server 版本 4.5.0 并尝试将保存的备份版本恢复到我的本地 CB 服务器上。我正在使用 macOS Sierra Xcode 开发工具是最新的 Python v2.7.10

我首先使用这个命令创建了一个备份

sudo ./cbbackup HOST:PORT ~/Documents/ -u ‘username’ -p ‘password‘ -b BUCKET_NAME

在此之后,我尝试使用此命令将此备份还原到本地 Couchbase 服务器

  sudo ./cbrestore /path/to/backup/2017-01-24T121528Z/2017-01-24T121528Z-full/ http://localhost:8091 -u ‘USERNAME’ -p ‘PASSWORD’ --bucket-source=SOURCE_BUCKET_NAME --bucket-destination=DESTINATION_BUCKET_NAME

但我收到以下错误。

Exception in thread s0:
Traceback (most recent call last):

File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()

File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)

File "/Applications/Couchbase Server.app/Contents/Resources/couchbase-core/lib/python/pump_mc.py", line 91, in run
rv, batch, need_backoff = self.scatter_gather(mconns, batch)

File "/Applications/Couchbase Server.app/Contents/Resources/couchbase-core/lib/python/pump_cb.py", line 72, in scatter_gather
rv, conn = self.find_conn(mconns, vbucket_id, msgs)

File "/Applications/Couchbase Server.app/Contents/Resources/couchbase-core/lib/python/pump_cb.py", line 316, in find_conn
host_port = serverList[vBucketMap[vbucket_id][0]]

IndexError: list index out of range

【问题讨论】:

    标签: couchbase database-restore


    【解决方案1】:

    如果您在非 osx 版本的 Couchbase 上进行备份,并且正在恢复到 osx 版本,那么您需要在 cbrestore 中使用“-x rehash=1”。原因是 Couchbase 的 osx 版本仅用于开发,并且比标准(非 osx)Couchbase 版本具有更少的 vbuckets。 rehash 标志告诉 cbrestore 处理不同数量的 vbuckets。

    【讨论】:

    • 试过了..现在得到一个不同的错误 s0 错误:异步操作:错误:地图缺少 vbucket_id:19456;也许您的源没有 vbuckets;如果是这样,请尝试使用 moxi (HOST:11211) 作为接收器上的目标:127.0.0.1:8091(<BUCKET_NAME>>@<IP_ADDRESS>:8091) error: map missing vbucket_id: 19456;也许您的源没有 vbuckets;如果是这样,请尝试使用 moxi (HOST:11211) 作为目的地
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-12-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多