[
https://issues.apache.org/jira/browse/PIG-4414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14319591#comment-14319591
]
Daniel Dai commented on PIG-4414:
---------------------------------
This is not a straightforward change. "jc.addResource(new TezConfiguration())"
will add *-default.xml back to jc which Pig intentionally to skip.
[~jeffzhang], [~sseth], what's the motivation for this change?
> 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)