我试图使用Spark SQL数据框来读取一些数据并将一堆文本清理函数应用到每一行。
import langid
from pyspark.sql.types import StringType
from pyspark.sql.functions import udf
from pyspark.sql import HiveContext
hsC = HiveContext(sc)
df = hsC.sql("select * from sometable")
def check_lang(data_str):
language = langid.classify(data_str)
# only english
record = ''
if language[0] == 'en':
# probability of correctly id'ing the language greater than 90%
if language[1] > 0.9:
record = data_str
return record
check_lang_udf = udf(lambda x: check_lang(x), StringType())
clean_df = df.select("Field1", check_lang_udf("TextField"))
但是当我尝试运行时,我收到以下错误:
py4j.protocol.Py4JJavaError: An error occurred while calling o31.select.
: java.lang.AssertionError: assertion failed: Unable to evaluate PythonUDF. Missing input attributes
我花了很多时间试图收集更多关于此的信息,但我找不到任何东西。
作为旁注,我知道下面的代码有效,但我想继续使用数据帧。
removeNonEn = data.map(lambda record: (record[0], check_lang(record[1])))
答案 0 :(得分:1)
我没有尝试过这段代码,但是从API文档建议这应该可行:
hsC.registerFunction("check_lang", check_lang)
clean_df = df.selectExpr("Field1", "check_lang('TextField')")