/**
* Method to read in data from an allowed input source/format and perform the query
*/
public void performQuery() throws IOException, PIRException
{
logger.info("Performing query: ");
JavaRDD<MapWritable> inputRDD;
switch (dataInputFormat)
{
case InputFormatConst.BASE_FORMAT:
inputRDD = readData();
break;
case InputFormatConst.ES:
inputRDD = readDataES();
break;
default:
throw new PIRException("Unknown data input format " + dataInputFormat);
}
performQuery(inputRDD);
}
ComputeResponse.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:incubator-pirk
作者:
评论列表
文章目录