我是一名学习Hadoop和Apache Spark的学生。我想知道如何从Web上的Apache Spark Job获取输出。

以下是在Web上运行Apache Spark Job的非常简单的php代码,因为我只想对其进行测试。

<?php
echo shell_exec("spark-submit --class stu.ac.TestProject.App --master spark://localhost:7077 /TestProject-0.0.1-SNAPSHOT.jar");
?>

以下是Apache Spark作业的示例Java代码。
public class App
{
public static void main( String[] args )
{
    SparkConf sparkConf = new SparkConf().setAppName("JavaSparkPi");
    sparkConf.setMaster("spark://localhost:7077");
    JavaSparkContext jsc = new JavaSparkContext(sparkConf);

    int slices = (args.length == 1) ? Integer.parseInt(args[0]) : 2;
    int n = 100000 * slices;
    List<Integer> l = new ArrayList<Integer>(n);
    for (int i = 0; i < n; i++) {
        l.add(i);
    }
    JavaRDD<Integer> dataSet = jsc.parallelize(l, slices);

    JavaRDD<Integer> countRDD = dataSet.map(new Function<Integer, Integer>() {
        public Integer call(Integer arg0) throws Exception {
            double x = Math.random() * 2 - 1;
            double y = Math.random() * 2 - 1;
            return (x * x + y * y < 1) ? 1 : 0;
        }
    });

    int count = countRDD.reduce(new Function2<Integer, Integer, Integer>() {
        public Integer call(Integer arg0, Integer arg1) throws Exception {
            return arg0 + arg1;
        }
    });

    System.out.println("Pi is roughly " + 4.0 * count / n);
    jsc.stop();
}
}

我只想获取标准输出,但是在运行代码后,我得到了空输出。我在maven项目上构建了此Java代码,因此还检查了它在cmd模式下的运行。

我该如何解决?

在此先感谢您的答复,对不起我的英语不好。如果您不明白我的问题,请发表评论。

最佳答案

可以这么说,工作的输出留在工作中。即使Spark速度很快,它也不是那么快就可以立即生成数据。在分布式群集上运行作业,这需要一些时间。

您必须将输出写入某个地方,通常将其写入数据库,然后可以从Web应用程序中查询。您不是从Web应用程序开始工作,而是应根据应用程序的需要安排工作。

如果您正在Java,Scala或Python作业中运行作业,则可以直接检索其结果。对于PHP,我不太确定。

10-01 18:56
查看更多