// set up streaming client to the destination cluster
Props props = new Props();
props.put("streaming.platform.bootstrapURL", dstBootstrapUrl);
props.put("streaming.platform.throttle.qps", maxPutsPerSecond);
StreamingClientConfig config = new StreamingClientConfig(props);
this.dstStreamingClient = new BaseStreamingClient(config);
this.mode = mode;
this.overwrite = overwrite;
// determine and verify final list of stores to be forklifted over
if(storesList != null) {