aboutsummaryrefslogtreecommitdiff
path: root/yarn/pom.xml
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-10-27 10:02:48 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-10-27 10:02:48 -0700
commitc9e05ca27c9c702b510d424e3befc87213f24e0f (patch)
tree64e5458ede5e422b30f3a05e38c146c64661f634 /yarn/pom.xml
parent9aa340a23fd7532f5e72c3352df92ce3e857fc80 (diff)
downloadspark-c9e05ca27c9c702b510d424e3befc87213f24e0f.tar.gz
spark-c9e05ca27c9c702b510d424e3befc87213f24e0f.tar.bz2
spark-c9e05ca27c9c702b510d424e3befc87213f24e0f.zip
[SPARK-4032] Deprecate YARN alpha support in Spark 1.2
Author: Prashant Sharma <prashant.s@imaginea.com> Closes #2878 from ScrapCodes/SPARK-4032/deprecate-yarn-alpha and squashes the following commits: 17e9857 [Prashant Sharma] added deperecated comment to Client and ExecutorRunnable. 3a34b1e [Prashant Sharma] Updated docs... 4608dea [Prashant Sharma] [SPARK-4032] Deprecate YARN alpha support in Spark 1.2
Diffstat (limited to 'yarn/pom.xml')
-rw-r--r--yarn/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/yarn/pom.xml b/yarn/pom.xml
index 8a7035c85e..2885e6607e 100644
--- a/yarn/pom.xml
+++ b/yarn/pom.xml
@@ -73,6 +73,28 @@
<profiles>
<profile>
<id>yarn-alpha</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <echo>*******************************************************************************************</echo>
+ <echo>***WARNING***: Support for YARN-alpha API's will be removed in Spark 1.3 (see SPARK-3445).*</echo>
+ <echo>*******************************************************************************************</echo>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
<modules>
<module>alpha</module>
</modules>