Connector connector = opts.getConnector();
Scanner scanner = connector.createScanner(opts.getTableName(), new Authorizations());
if (opts.isolate) {
scanner.enableIsolation();
}
Random tablet_index_generator = new Random(opts.scan_seed);
LoopControl scanning_condition = opts.continuous ? new ContinuousLoopControl() :