All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.hbase.client.ScanResultCache Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta-1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.hadoop.hbase.client;

import java.io.IOException;
import org.apache.yetus.audience.InterfaceAudience;

/**
 * Used to separate the row constructing logic.
 * 

* After we add heartbeat support for scan, RS may return partial result even if allowPartial is * false and batch is 0. With this interface, the implementation now looks like: *

    *
  1. Get results from ScanResponse proto.
  2. *
  3. Pass them to ScanResultCache and get something back.
  4. *
  5. If we actually get something back, then pass it to ScanConsumer.
  6. *
*/ @InterfaceAudience.Private interface ScanResultCache { static final Result[] EMPTY_RESULT_ARRAY = new Result[0]; /** * Add the given results to cache and get valid results back. * @param results the results of a scan next. Must not be null. * @param isHeartbeatMessage indicate whether the results is gotten from a heartbeat response. * @return valid results, never null. */ Result[] addAndGet(Result[] results, boolean isHeartbeatMessage) throws IOException; /** * Clear the cached result if any. Called when scan error and we will start from a start of a row * again. */ void clear(); /** * Return the number of complete rows. Used to implement limited scan. */ int numberOfCompleteRows(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy