YARN-6069. CORS support in timeline v2 (Rohith Sharma K S via Varun Saxena)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/ef1a4d4b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/ef1a4d4b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/ef1a4d4b Branch: refs/heads/YARN-5355 Commit: ef1a4d4be3a6717eddd986561efe77f6fa6e2d26 Parents: 78b6783 Author: Varun Saxena <[email protected]> Authored: Thu Feb 23 11:15:51 2017 +0530 Committer: Varun Saxena <[email protected]> Committed: Tue Apr 25 16:30:59 2017 +0530 ---------------------------------------------------------------------- .../src/main/resources/yarn-default.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/ef1a4d4b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml index 2b5b6a1..72a4d22 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml @@ -3120,5 +3120,16 @@ <name>yarn.timeline-service.http-cross-origin.enabled</name> <value>false</value> </property> + + <property> + <description> + Flag to enable cross-origin (CORS) support for timeline service v1.x or + Timeline Reader in timeline service v2. For timeline service v2, also add + org.apache.hadoop.security.HttpCrossOriginFilterInitializer to the + configuration hadoop.http.filter.initializers in core-site.xml. + </description> + <name>yarn.timeline-service.http-cross-origin.enabled</name> + <value>false</value> + </property> </configuration> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
