在Glue作业中导入ArrayType时出现错误。

0

【以下的问题经过翻译处理】 我在Glue工作中遇到了错误。 我使用的Glue版本是3.0,支持spark 3.1。

ImportError: cannot import name 'ArrayType' from 'pyspark.sql.functions' (/opt/amazon/spark/python/lib/pyspark.zip/pyspark/sql/functions.py)

在使用Glue 4.0和spark 3.3时,遇到了另一个错误。

 from pyspark.sql.functions import ArrayType 
from pyspark.sql.functions import StringType

class JobBase(object):
    
    #all udf has to be initialised as first step 
    def __init__(self):
        print("Inside the constructor of Class phases ")


        self.winner_org_calculation_udf=udf(JobBase.winner_org_calculation, ArrayType(StringType()))

TypeError: ArrayType.__init__() missing 1 required positional argument: 'elementType'

profile picture
專家
已提問 5 個月前檢視次數 19 次
1 個回答
0

【以下的回答经过翻译处理】 使用以下导入时,我的问题得到了解决:

from pyspark.sql.types import ArrayType
from pyspark.sql.types import StringType

profile picture
專家
已回答 5 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南