如何在Zeppelin中运行Flink字数统计Java版本示例?

时间:2019-01-31 12:22:04

标签: apache-flink apache-zeppelin

我们需要在Flink解释器中添加任何依赖项吗?

这是我在齐柏林飞艇上的flink解释器:

enter image description here

这是我在Zeppelin nootbook flink Java版本wordcount示例中的代码:

enter image description here

%flink

public class WordCountExample {
    public static void main(String[] args) throws Exception {
        final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();

        DataSet<String> text = env.fromElements(
            "Who's there?",
            "I think I hear them. Stand, ho! Who's there?");


        text.print();
    }
}

(为简化起见,我很简单地将文本存储到数据集中并进行打印。)

我收到此错误

 ^

我不知道如何在齐柏林飞艇上运行。

0 个答案:

没有答案