VertexTableInputFormat.java
/*
* Copyright © 2014 - 2021 Leipzig University (Database Research Group)
*
* Licensed 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.gradoop.storage.hbase.impl.io.inputformats;
import org.apache.flink.api.java.tuple.Tuple1;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.Scan;
import org.gradoop.common.model.impl.pojo.EPGMVertex;
import org.gradoop.storage.common.api.EPGMGraphOutput;
import org.gradoop.storage.hbase.impl.api.VertexHandler;
/**
* Reads vertex data from HBase.
*/
public class VertexTableInputFormat extends BaseTableInputFormat<EPGMVertex> {
/**
* Handles reading of persistent vertex data.
*/
private final VertexHandler vertexHandler;
/**
* Table to read from.
*/
private final String vertexTableName;
/**
* Creates an vertex table input format.
*
* @param vertexHandler vertex data handler
* @param vertexTableName vertex data table name
*/
public VertexTableInputFormat(VertexHandler vertexHandler, String vertexTableName) {
this.vertexHandler = vertexHandler;
this.vertexTableName = vertexTableName;
}
/**
* Get the scanner instance. If a query was applied to the elementHandler,
* the Scan will be extended with a HBase filter representation of that query.
*
* @return the Scan instance with an optional HBase filter applied
*/
@Override
protected Scan getScanner() {
Scan scan = new Scan();
scan.setCaching(EPGMGraphOutput.DEFAULT_CACHE_SIZE);
if (vertexHandler.getQuery() != null) {
attachFilter(vertexHandler.getQuery(), scan, vertexHandler.isSpreadingByteUsed());
}
return scan;
}
@Override
protected String getTableName() {
return vertexTableName;
}
@Override
protected Tuple1<EPGMVertex> mapResultToTuple(Result result) {
return new Tuple1<>(vertexHandler.readVertex(result));
}
}