如何在Apache Spark 2中设置广播工厂方法

时间:2019-07-19 18:44:04

标签: apache-spark deprecated broadcast

Apache Spark 1.X 中,有一个a configuration setting名为:function dynamicTestCase(a) { return function(done){ console.log(a()); } // a is delayed pass! a = 8, remember change a to a() } describe("test", function(){ before(function(){ a = 8; }); it('POST /verifications receiveCode', dynamicTestCase(() => a)); // a is delayed pass! }) ,您可以在其中选择广播工厂。该设置似乎在 Apache Spark 2.X 中不再受支持(configurations list中不存在)。有人如何控制 Apache Spark 2.X 中的广播工厂?默认的广播工厂是什么?它曾经是"spark.broadcast.factory"

1 个答案:

答案 0 :(得分:0)