我的要求是设置spark.sql.shuffle.partitions=auto
但是我在运行以下代码时收到以下错误
%python
spark.conf.set("spark.sql.shuffle.partitions=auto")
Run Code Online (Sandbox Code Playgroud)
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'
Run Code Online (Sandbox Code Playgroud)