如何将“spark.sql.shuffle.partitions”设置为自动

pu3pd22g  于 2022-12-23  发布在  Apache
关注(0)|答案(1)|浏览(198)

我的要求是设置spark.sql.shuffle.partitions=auto
但是我在运行下面的代码时得到了下面的错误

%python
spark.conf.set("spark.sql.shuffle.partitions=auto")
error 
TypeError                                 Traceback (most recent call last)
<command-3238694083679317> in <cell line: 1>()
----> 1 spark.conf.set("spark.sql.shuffle.partitions=auto")

TypeError: set() missing 1 required positional argument: 'value'
bzzcjhmw

bzzcjhmw1#

解决方案如下所示。

spark.conf.set("spark.sql.shuffle.partitions","auto")

上面的代码将随机分区设置为“auto”。
通过下面的代码,我们可以看到shuffle分区的值。

spark.conf.get("spark.sql.shuffle.partitions")

相关问题