将参数传递给 Pig jython 脚本

发布于 2024-12-05 06:41:53 字数 374 浏览 0 评论 0原文

我希望在 python 中嵌入一个 pig 脚本,但我需要将一些参数传递给 python 脚本,但它们似乎没有填充下来。

如果我直接调用我的猪脚本,我可以使用: $PIGDIR/bin/pig -f $SCRIPT_DIR/../pig/score_cert_messages.pig -param libDir=DYNAMIC_STRING 并且 libDir 已正确绑定。

然而,当以相同方式加载 python 脚本时,我在 sys.argv 中没有得到任何内容。通过 Pig 加载 python 时,是否可以访问 -param 值(在 python 代码内),或者我是否必须使用 jython 手动调用脚本并生成 scriptContext(如果是) ,有人有样品吗)?

I'm looking to embed a pig script in python, but I need to pass a few parameters to the python script and they don't seem to populate down.

If I call my pig script directly I can use: $PIGDIR/bin/pig -f $SCRIPT_DIR/../pig/score_cert_messages.pig -param libDir=DYNAMIC_STRING and libDir is bound correctly.

When loading my python script the same way, however, I don't get anything in sys.argv. Are -param values accessible (within the python code) when loading the python through pig, or do I have to manually call the script with jython and generate the scriptContext (if so, anybody have a sample)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千年*琉璃梦 2024-12-12 06:41:53

差不多两年后,如果没有解决方法,我仍然无法做到这一点。基本上,我创建了一个在我的脚本中使用的环境变量:

$ export file_in=filename; pig -useHCatalog ./POC_Python_Wrapper.py

以及在脚本中:

import os
file_in = os.getenv('file_in', 'Unknown')

Almost two years later and I still could not do it without a workaround. Basically, I've created an environmental variable that I use in my script:

$ export file_in=filename; pig -useHCatalog ./POC_Python_Wrapper.py

and in the script:

import os
file_in = os.getenv('file_in', 'Unknown')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文