Repository: hadoop Updated Branches: refs/heads/branch-3.0 79ebbec4c -> c3ba06dee
YARN-7773. YARN Federation used Mysql as state store throw exception, Unknown column 'homeSubCluster' in 'field list'. Contributed by Yiran Wu. (cherry picked from commit 60e5c1b516647bf99ef3e9501c0ce04deea13ce9) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c3ba06de Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c3ba06de Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c3ba06de Branch: refs/heads/branch-3.0 Commit: c3ba06deeb4ad720edb16758760ad965eaa21e3c Parents: 79ebbec Author: Inigo Goiri <[email protected]> Authored: Mon Apr 16 16:26:54 2018 -0700 Committer: bibinchundatt <[email protected]> Committed: Fri Aug 24 14:26:52 2018 +0530 ---------------------------------------------------------------------- .../bin/FederationStateStore/MySQL/FederationStateStoreTables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c3ba06de/hadoop-yarn-project/hadoop-yarn/bin/FederationStateStore/MySQL/FederationStateStoreTables.sql ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/bin/FederationStateStore/MySQL/FederationStateStoreTables.sql b/hadoop-yarn-project/hadoop-yarn/bin/FederationStateStore/MySQL/FederationStateStoreTables.sql index 67a1817..57cecb2 100644 --- a/hadoop-yarn-project/hadoop-yarn/bin/FederationStateStore/MySQL/FederationStateStoreTables.sql +++ b/hadoop-yarn-project/hadoop-yarn/bin/FederationStateStore/MySQL/FederationStateStoreTables.sql @@ -22,7 +22,7 @@ USE FederationStateStore CREATE TABLE applicationsHomeSubCluster( applicationId varchar(64) NOT NULL, - subClusterId varchar(256) NULL, + homeSubCluster varchar(256) NULL, CONSTRAINT pk_applicationId PRIMARY KEY (applicationId) ); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
