From 81e5619ca141a1d3a06547d2b682cbe3f135b360 Mon Sep 17 00:00:00 2001 From: Anirudh Date: Tue, 6 Dec 2016 16:23:27 -0800 Subject: [SPARK-18662] Move resource managers to separate directory ## What changes were proposed in this pull request? * Moves yarn and mesos scheduler backends to resource-managers/ sub-directory (in preparation for https://issues.apache.org/jira/browse/SPARK-18278) * Corresponding change in top-level pom.xml. Ref: https://github.com/apache/spark/pull/16061#issuecomment-263649340 ## How was this patch tested? * Manual tests /cc rxin Author: Anirudh Closes #16092 from foxish/fix-scheduler-structure-2. --- dev/sparktestsupport/modules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/sparktestsupport') diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py index b34ab51f3b..1a7cf9a2c9 100644 --- a/dev/sparktestsupport/modules.py +++ b/dev/sparktestsupport/modules.py @@ -469,7 +469,7 @@ yarn = Module( name="yarn", dependencies=[], source_file_regexes=[ - "yarn/", + "resource-managers/yarn/", "common/network-yarn/", ], build_profile_flags=["-Pyarn"], @@ -485,7 +485,7 @@ yarn = Module( mesos = Module( name="mesos", dependencies=[], - source_file_regexes=["mesos/"], + source_file_regexes=["resource-managers/mesos/"], build_profile_flags=["-Pmesos"], sbt_test_goals=["mesos/test"] ) -- cgit v1.2.3