/**
* 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: ");
JavaDStream<MapWritable> inputRDD = null;
if (dataInputFormat.equals(InputFormatConst.BASE_FORMAT))
{
inputRDD = readData();
}
else if (dataInputFormat.equals(InputFormatConst.ES))
{
inputRDD = readDataES();
}
else
{
throw new PIRException("Unknown data input format " + dataInputFormat);
}
performQuery(inputRDD);
}
ComputeStreamingResponse.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:incubator-pirk
作者:
评论列表
文章目录