在 Pig 中将关系传递给 Python UDF 时出错

Posted

技术标签:

【中文标题】在 Pig 中将关系传递给 Python UDF 时出错【英文标题】:Error Passing Relation to Python UDF in Pig 【发布时间】:2018-02-07 17:53:24 【问题描述】:

我正在尝试在 Pig 中传递与 Python UDF 的关系。但它给我一个错误。以下是我的 Pig Latin Script、Python Script 和错误日志,

REGISTER '/home/cloudera/jython-installer-2.7.0.jar';
REGISTER '/home/cloudera/Code.py' USING jython as myfunc;
A = LOAD '/home/cloudera/Link.txt' as (line:chararray);
B = FOREACH A GENERATE myfunc.codefunc(line);

//Python脚本

import pandas as pd
def count(A,  crime):
    with open(A, 'r', encoding='UTF8') as fileA:
        data = fileA.read().lower()
        count = data.count(crime.lower())
        return count
def codefunc(A):
    crime = ['Rape', 'Murder', 'Extortion', 'Felony', 'Burglary', 'Property Damage', 'Arrest', 'Political Unrest', 'Civil Unrest', 'Solitication', 'Larceny', 'Abettor', 'Trafficking', 'Tresspasser', 'Robbery']
    crimecount = 
    for i in range(len(crime)):
            crimecount[crime[i]] = count(A, crime[i])
    final_count = pd.DataFrame(list(crimecount.items()), columns = ['Crime', 'Value'])
    final_count['Percentage'] = 0
    total_count = final_count['Values'].sum()
    for i in range(0, final_count.last_valid_index()+1):
            final_count['Percentage'][i] = float((final_count['Values'][i]/total_count)*100.0)
    final_count.sort_values(by=['Percentage'], ascending=False)
    final_count.to_csv('/home/cloudera/solution.csv', header=0)

//错误日志 Link of Error Log

我已将链接放在数据集所在的位置,并将链接从 Pig 传递到 Python。 Python 应该转到该链接并读取数据集并执行编写的代码。 Python 代码绝对没问题。我对此很有信心。但是猪在关系“B”上给我一个错误。我尝试将错误代码放在这里,但 Stack Overflow 不允许我这样做,所以我放了链接。很抱歉给您带来不便。谁能帮帮我吗。提前致谢。

【问题讨论】:

【参考方案1】:

您的代码绝对没问题。问题在于 Jython。 Jython 不支持 Pandas 数据帧,因为它是用 C/C++ 编写的。所以振作起来!

希望你喜欢我的回答!呸呸呸!!

【讨论】:

以上是关于在 Pig 中将关系传递给 Python UDF 时出错的主要内容,如果未能解决你的问题,请参考以下文章

Pig 将关系作为参数传递给 UDF

如何从 Yahoo PigLatin UDF 中将文件加载到 DataBag 中?

Pig into Cassandra - 使用 python UDF 和 CqlStorage 传递列表对象

Java UDF on Hadoop 输入参数——从 Pig on Hadoop 调用

我可以在 Pig 脚本中将参数传递给 UDF 吗?

在结构化流中将数据帧传递给 UDF 时出错