这就是我想要做的。我想在两个不同的数据帧中对两列的每个条目进行比较。数据框如下所示:
>>> subject_df.show()
+------+-------------+
|USERID| FULLNAME|
+------+-------------+
| 12345| steve james|
| 12346| steven smith|
| 43212|bill dunnigan|
+------+-------------+
>>> target_df.show()
+------+-------------+
|USERID| FULLNAME|
+------+-------------+
|111123| steve tyler|
|422226| linda smith|
|123333|bill dunnigan|
| 56453| steve smith|
+------+-------------+
以下是我尝试使用的逻辑:
# CREATE FUNCTION
def string_match(subject, targets):
for target in targets:
<logic>
return logic_result
# CREATE UDF
string_match_udf = udf(string_match, IntegerType())
# APPLY UDF
subject_df.select(subject_df.FULLNAME, string_match_udf(subject_df.FULLNAME, target_df.FULLNAME).alias("score"))
这是我在pyspark shell中运行代码时遇到的错误:
py4j.protocol.Py4JJavaError: An error occurred while calling o45.select.
: java.lang.RuntimeException: Invalid PythonUDF PythonUDF#string_match(FULLNAME#2,FULLNAME#5), requires attributes from more than one child.
我认为问题的根源是尝试将第二列传递给函数。我应该使用RDD吗?请记住,实际的subject_df和target_df都超过100,000行。我愿意接受任何建议。
答案 0 :(得分:3)
看起来你对用户定义的函数如何工作有错误的想法:
DataFame
。做你想做的事的唯一方法就是采用笛卡尔积。
subject_df.join(target_df).select(
f(subject_df.FULLNAME, target_df.FULLNAME)
)
其中f
是一个比较两个元素的函数。