[
https://issues.apache.org/jira/browse/PIG-4414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14319458#comment-14319458
]
Siddharth Seth commented on PIG-4414:
-------------------------------------
TEZ_SITE_XML is not meant to be public - that's the internal mechanism for
TezConfiguration to load it's resources (Not sure why it ever was public). An
alternate to addResource() would be to create an instance of TezConfiguration
and iterate-copy all the keys over.
The simplest would be to say new JobConf(new TezConfiguration()) - if that's
possible.
> TezConfiguration.TEZ_SITE_XML is made private in tez-0.7
> --------------------------------------------------------
>
> Key: PIG-4414
> URL: https://issues.apache.org/jira/browse/PIG-4414
> Project: Pig
> Issue Type: Bug
> Reporter: Jeff Zhang
> Assignee: Daniel Dai
> Fix For: 0.15.0
>
>
> TezConfiguration.TEZ_SITE_XML is made private in tez-0.7, and it is supposed
> to be private.
> But pig use this field
> {code}
> @Override
> public JobConf getExecConf(Properties properties) throws ExecException {
> JobConf jc = super.getExecConf(properties);
> jc.addResource(TezConfiguration.TEZ_SITE_XML);
> return jc;
> }
> {code}
> If pig folks feel OK, the following piece of code also do the same thing, and
> is encouraged to do like this
> {code}
> jc.addResource(new TezConfiguration());
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)