def check(opts, spec, source_map): rv, sink_map = pump.rest_couchbase(opts, spec) if rv != 0: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name(opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [bucket for bucket in sink_map['buckets'] if bucket['name'] == sink_bucket_name] if not sink_buckets: return "error: missing bucket-destination: " + sink_bucket_name + \ " at destination: " + spec + \ "; perhaps your username/password is missing or incorrect", None if len(sink_buckets) != 1: return "error: multiple buckets with name: " + sink_bucket_name + \ " at destination: " + spec, None sink_map['buckets'] = sink_buckets return 0, sink_map
def check(opts, spec, source_map): rv, sink_map = pump.rest_couchbase(opts, spec) if rv != 0: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name( opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [ bucket for bucket in sink_map['buckets'] if bucket['name'] == sink_bucket_name ] if not sink_buckets: return "error: missing bucket-destination: " + sink_bucket_name + \ " at destination: " + spec + \ "; perhaps your username/password is missing or incorrect", None if len(sink_buckets) != 1: return "error: multiple buckets with name: " + sink_bucket_name + \ " at destination: " + spec, None sink_map['buckets'] = sink_buckets return 0, sink_map
def check(opts, spec, source_map): rv, sink_map = pump.rest_couchbase(opts, spec) if rv != 0: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name( opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [ bucket for bucket in sink_map['buckets'] if bucket['name'] == sink_bucket_name ] if not sink_buckets: return "error: missing bucket-destination: " + sink_bucket_name + \ " at destination: " + spec + \ "; perhaps your username/password is missing or incorrect", None if len(sink_buckets) != 1: return "error: multiple buckets with name: " + sink_bucket_name + \ " at destination: " + spec, None sink_map['buckets'] = sink_buckets if opts.extra.get("allow_recovery_vb_remap", 0) == 1: error = CBSink.map_recovery_buckets(sink_map, sink_bucket_name, opts.vbucket_list) if error: return error, None return 0, sink_map
def check(opts, spec: str, source_map: Dict[str, Any]) -> Tuple[couchbaseConstants.PUMP_ERROR, Optional[Dict[str, Any]]]: rv, sink_map = pump.rest_couchbase(opts, spec, opts.username_dest is not None and opts.password_dest is not None) if rv != 0: return rv, None if sink_map is None: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name(opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [bucket for bucket in sink_map['buckets'] if pump.return_string(bucket['name']) == pump.return_string(sink_bucket_name)] if not sink_buckets: return f'error: missing bucket-destination: {sink_bucket_name} at destination: {spec};' \ f' perhaps your username/password is missing or incorrect', None if len(sink_buckets) != 1: return f'error: multiple buckets with name:{sink_bucket_name} at destination: {spec}', None sink_map['buckets'] = sink_buckets if opts.extra.get("allow_recovery_vb_remap", 0) == 1: error = CBSink.map_recovery_buckets(sink_map, sink_bucket_name, opts.vbucket_list) if error is not None: return error, None return 0, sink_map
def check(opts, spec, source_map): rv, sink_map = pump.rest_couchbase(opts, spec) if rv != 0: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name(opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [bucket for bucket in sink_map['buckets'] if bucket['name'] == sink_bucket_name] if not sink_buckets: return "error: missing bucket-destination: " + sink_bucket_name + \ " at destination: " + spec + \ "; perhaps your username/password is missing or incorrect", None if len(sink_buckets) != 1: return "error: multiple buckets with name: " + sink_bucket_name + \ " at destination: " + spec, None sink_map['buckets'] = sink_buckets if opts.extra.get("allow_recovery_vb_remap", 0) == 1: error = CBSink.map_recovery_buckets(sink_map, sink_bucket_name, opts.vbucket_list) if error: return error, None return 0, sink_map
def check(opts, spec: str, source_map: Dict[str, Any]) -> Tuple[couchbaseConstants.PUMP_ERROR, Optional[Dict[str, Any]]]: rv, sink_map = pump.rest_couchbase(opts, spec, opts.username_dest is not None and opts.password_dest is not None) if rv != 0: return rv, None if sink_map is None: return rv, None rv, source_bucket_name = pump.find_source_bucket_name(opts, source_map) if rv != 0: return rv, None rv, sink_bucket_name = pump.find_sink_bucket_name(opts, source_bucket_name) if rv != 0: return rv, None # Adjust sink_map['buckets'] to have only our sink_bucket. sink_buckets = [bucket for bucket in sink_map['buckets'] if pump.returnString(bucket['name']) == pump.returnString(sink_bucket_name)] if not sink_buckets: return f'error: missing bucket-destination: {sink_bucket_name} at destination: {spec};' \ f' perhaps your username/password is missing or incorrect', None if len(sink_buckets) != 1: return f'error: multiple buckets with name:{sink_bucket_name} at destination: {spec}', None sink_map['buckets'] = sink_buckets if opts.extra.get("allow_recovery_vb_remap", 0) == 1: error = CBSink.map_recovery_buckets(sink_map, sink_bucket_name, opts.vbucket_list) if error is not None: return error, None return 0, sink_map