[
https://issues.apache.org/jira/browse/YARN-3522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Junping Du updated YARN-3522:
-----------------------------
Fix Version/s: 2.8.0
> DistributedShell uses the wrong user to put timeline data
> ---------------------------------------------------------
>
> Key: YARN-3522
> URL: https://issues.apache.org/jira/browse/YARN-3522
> Project: Hadoop YARN
> Issue Type: Bug
> Components: timelineserver
> Reporter: Zhijie Shen
> Assignee: Zhijie Shen
> Priority: Blocker
> Fix For: 2.8.0, 2.7.1, 3.0.0-alpha1
>
> Attachments: YARN-3522.1.patch, YARN-3522.2.patch, YARN-3522.3.patch
>
>
> YARN-3287 breaks the timeline access control of distributed shell. In
> distributed shell AM:
> {code}
> if (conf.getBoolean(YarnConfiguration.TIMELINE_SERVICE_ENABLED,
> YarnConfiguration.DEFAULT_TIMELINE_SERVICE_ENABLED)) {
> // Creating the Timeline Client
> timelineClient = TimelineClient.createTimelineClient();
> timelineClient.init(conf);
> timelineClient.start();
> } else {
> timelineClient = null;
> LOG.warn("Timeline service is not enabled");
> }
> {code}
> {code}
> ugi.doAs(new PrivilegedExceptionAction<TimelinePutResponse>() {
> @Override
> public TimelinePutResponse run() throws Exception {
> return timelineClient.putEntities(entity);
> }
> });
> {code}
> YARN-3287 changes the timeline client to get the right ugi at serviceInit,
> but DS AM still doesn't use submitter ugi to init timeline client, but use
> the ugi for each put entity call. It result in the wrong user of the put
> request.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]