Apache Spark中未调用map函数

时间:2018-12-28 12:12:14

标签: java apache-spark

我写了def myfunc(): print 'I am: ', nameofmyfunction 函数,该函数没有被执行。

下面是我的代码,在语法上是正确的,但是没有得到执行。

{
    name: 'age',
    cellFilter: 'gbConversion',
    treeAggregationType: uiGridGroupingConstants.aggregation.MAX,
     customTreeAggregationFinalizerFn: function(aggregation) {
      aggregation.rendered = aggregation.value;
    },
    width: '20%',
    type: 'number'
  }

预期输出是要显示日志中有6行的map数据集的结果。

实际结果:正在显示一行,其中没有任何值。

这是一个简单的映射操作,我不确定为什么它无法执行?

使用的火花版本:2.3.0

0 个答案:

没有答案