Ejemplo n.º 1
0
 @InterfaceAudience.Private
 protected ScannerCallableWithReplicas getScannerCallable(byte[] localStartKey, int nbRows) {
   scan.setStartRow(localStartKey);
   ScannerCallable s =
       new ScannerCallable(
           getConnection(), getTable(), scan, this.scanMetrics, this.rpcControllerFactory);
   s.setCaching(nbRows);
   ScannerCallableWithReplicas sr =
       new ScannerCallableWithReplicas(
           tableName,
           getConnection(),
           s,
           pool,
           primaryOperationTimeout,
           scan,
           retries,
           scannerTimeout,
           caching,
           conf,
           caller);
   return sr;
 }
 public void setCaching(int caching) {
   currentScannerCallable.setCaching(caching);
 }