将参数传递给 Pig jython 脚本
我希望在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个已知的问题。检查 https://issues.apache.org/jira/browse/browse/pig-2165 。
It is a known issue. Check https://issues.apache.org/jira/browse/PIG-2165.
差不多两年后,如果没有解决方法,我仍然无法做到这一点。基本上,我创建了一个在我的脚本中使用的环境变量:
以及在脚本中:
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:
and in the script: