The method `setStopRow()` in the `org.apache.hadoop.hbase.client.Scan` class is used in Java to set the stop row for a scan operation in HBase. The stop row represents the last row that should be included in the scan results. Only rows up to and including the stop row will be fetched by the scan operation. This method allows you to define the stop row for a specific scan, providing precise control over the range of rows to be scanned.
Java Scan.setStopRow - 30 examples found. These are the top rated real world Java examples of org.apache.hadoop.hbase.client.Scan.setStopRow extracted from open source projects. You can rate examples to help us improve the quality of examples.