[jira] [Commented] (AMBARI-19810) Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.

2017-02-03 Thread Swapan Shridhar (JIRA)

[ 
https://issues.apache.org/jira/browse/AMBARI-19810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15852089#comment-15852089
 ] 

Swapan Shridhar commented on AMBARI-19810:
--

Build issue reported on trunk -> Fixed it as part of AMBARI-19868.

> Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 
> 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.
> ---
>
> Key: AMBARI-19810
> URL: https://issues.apache.org/jira/browse/AMBARI-19810
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.5.0
>Reporter: Swapan Shridhar
>Assignee: Swapan Shridhar
> Fix For: trunk, 2.5.0
>
> Attachments: AMBARI-19810.01.patch, AMBARI-19810.trunk.01.patch
>
>
> Remove the following code and its references:
> {code}
> +  protected void updateTEZInteractiveConfigs() throws AmbariException {
> +AmbariManagementController ambariManagementController = 
> injector.getInstance(AmbariManagementController.class);
> +Clusters clusters = ambariManagementController.getClusters();
> +if (clusters != null) {
> +  Map clusterMap = clusters.getClusters();
> +
> +  if (clusterMap != null && !clusterMap.isEmpty()) {
> +for (final Cluster cluster : clusterMap.values()) {
> +  Config tezInteractiveSite = 
> cluster.getDesiredConfigByType("tez-interactive-site");
> +  if (tezInteractiveSite != null) {
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.io.sort.mb", "512"), true, true);
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.unordered.output.buffer.size-mb",
> +"100"), true, true);
> +  }
> +}
> +  }
> +}
> +  }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (AMBARI-19810) Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.

2017-02-02 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AMBARI-19810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15850765#comment-15850765
 ] 

Hudson commented on AMBARI-19810:
-

FAILURE: Integrated in Jenkins build Ambari-trunk-Commit #6634 (See 
[https://builds.apache.org/job/Ambari-trunk-Commit/6634/])
AMBARI-19810. Remove upgrade logic in UpdateCatalog250 for (sshridhar: 
[http://git-wip-us.apache.org/repos/asf?p=ambari.git=commit=975dd1d40c6136a61e7d014fb0dfc32e09863a2b])
* (edit) 
ambari-server/src/test/java/org/apache/ambari/server/upgrade/UpgradeCatalog250Test.java
* (edit) 
ambari-server/src/main/java/org/apache/ambari/server/upgrade/UpgradeCatalog250.java


> Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 
> 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.
> ---
>
> Key: AMBARI-19810
> URL: https://issues.apache.org/jira/browse/AMBARI-19810
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.5.0
>Reporter: Swapan Shridhar
>Assignee: Swapan Shridhar
> Fix For: trunk, 2.5.0
>
> Attachments: AMBARI-19810.01.patch, AMBARI-19810.trunk.01.patch
>
>
> Remove the following code and its references:
> {code}
> +  protected void updateTEZInteractiveConfigs() throws AmbariException {
> +AmbariManagementController ambariManagementController = 
> injector.getInstance(AmbariManagementController.class);
> +Clusters clusters = ambariManagementController.getClusters();
> +if (clusters != null) {
> +  Map clusterMap = clusters.getClusters();
> +
> +  if (clusterMap != null && !clusterMap.isEmpty()) {
> +for (final Cluster cluster : clusterMap.values()) {
> +  Config tezInteractiveSite = 
> cluster.getDesiredConfigByType("tez-interactive-site");
> +  if (tezInteractiveSite != null) {
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.io.sort.mb", "512"), true, true);
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.unordered.output.buffer.size-mb",
> +"100"), true, true);
> +  }
> +}
> +  }
> +}
> +  }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (AMBARI-19810) Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.

2017-02-02 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AMBARI-19810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15850740#comment-15850740
 ] 

Hudson commented on AMBARI-19810:
-

FAILURE: Integrated in Jenkins build Ambari-branch-2.5 #892 (See 
[https://builds.apache.org/job/Ambari-branch-2.5/892/])
AMBARI-19810. Remove upgrade logic in UpdateCatalog250 for (sshridhar: 
[http://git-wip-us.apache.org/repos/asf?p=ambari.git=commit=a8887c44500d92e225d6d53774595500fc1a6c01])
* (edit) 
ambari-server/src/main/java/org/apache/ambari/server/upgrade/UpgradeCatalog250.java
* (edit) 
ambari-server/src/test/java/org/apache/ambari/server/upgrade/UpgradeCatalog250Test.java


> Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 
> 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.
> ---
>
> Key: AMBARI-19810
> URL: https://issues.apache.org/jira/browse/AMBARI-19810
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.5.0
>Reporter: Swapan Shridhar
>Assignee: Swapan Shridhar
> Fix For: trunk, 2.5.0
>
> Attachments: AMBARI-19810.01.patch, AMBARI-19810.trunk.01.patch
>
>
> Remove the following code and its references:
> {code}
> +  protected void updateTEZInteractiveConfigs() throws AmbariException {
> +AmbariManagementController ambariManagementController = 
> injector.getInstance(AmbariManagementController.class);
> +Clusters clusters = ambariManagementController.getClusters();
> +if (clusters != null) {
> +  Map clusterMap = clusters.getClusters();
> +
> +  if (clusterMap != null && !clusterMap.isEmpty()) {
> +for (final Cluster cluster : clusterMap.values()) {
> +  Config tezInteractiveSite = 
> cluster.getDesiredConfigByType("tez-interactive-site");
> +  if (tezInteractiveSite != null) {
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.io.sort.mb", "512"), true, true);
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.unordered.output.buffer.size-mb",
> +"100"), true, true);
> +  }
> +}
> +  }
> +}
> +  }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (AMBARI-19810) Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.

2017-02-02 Thread Swapan Shridhar (JIRA)

[ 
https://issues.apache.org/jira/browse/AMBARI-19810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15850690#comment-15850690
 ] 

Swapan Shridhar commented on AMBARI-19810:
--

commit

trunk:

{code}
commit 975dd1d40c6136a61e7d014fb0dfc32e09863a2b
Author: Swapan Shridhar 
Date:   Thu Feb 2 14:09:00 2017 -0800

AMBARI-19810. Remove upgrade logic in UpdateCatalog250 for 
tez-interactive-site's 'tez.runtime.io.sort.mb' and 
'tez.runtime.unordered.output.buffer.size-mb'.
{code}


branch-2.5:

{code}
commit a8887c44500d92e225d6d53774595500fc1a6c01
Author: Swapan Shridhar 
Date:   Thu Feb 2 11:23:17 2017 -0800

AMBARI-19810. Remove upgrade logic in UpdateCatalog250 for 
tez-interactive-site's 'tez.runtime.io.sort.mb' and 
'tez.runtime.unordered.output.buffer.size-mb'.
{code}

> Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 
> 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.
> ---
>
> Key: AMBARI-19810
> URL: https://issues.apache.org/jira/browse/AMBARI-19810
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.5.0
>Reporter: Swapan Shridhar
>Assignee: Swapan Shridhar
> Fix For: trunk, 2.5.0
>
> Attachments: AMBARI-19810.01.patch, AMBARI-19810.trunk.01.patch
>
>
> Remove the following code and its references:
> {code}
> +  protected void updateTEZInteractiveConfigs() throws AmbariException {
> +AmbariManagementController ambariManagementController = 
> injector.getInstance(AmbariManagementController.class);
> +Clusters clusters = ambariManagementController.getClusters();
> +if (clusters != null) {
> +  Map clusterMap = clusters.getClusters();
> +
> +  if (clusterMap != null && !clusterMap.isEmpty()) {
> +for (final Cluster cluster : clusterMap.values()) {
> +  Config tezInteractiveSite = 
> cluster.getDesiredConfigByType("tez-interactive-site");
> +  if (tezInteractiveSite != null) {
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.io.sort.mb", "512"), true, true);
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.unordered.output.buffer.size-mb",
> +"100"), true, true);
> +  }
> +}
> +  }
> +}
> +  }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (AMBARI-19810) Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.

2017-01-31 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/AMBARI-19810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15848097#comment-15848097
 ] 

Hadoop QA commented on AMBARI-19810:


{color:red}-1 overall{color}.  Here are the results of testing the latest 
attachment 
  http://issues.apache.org/jira/secure/attachment/12850347/AMBARI-19810.01.patch
  against trunk revision .

{color:red}-1 patch{color}.  The patch command could not apply the patch.

Console output: 
https://builds.apache.org/job/Ambari-trunk-test-patch/10357//console

This message is automatically generated.

> Remove upgrade logic in UpdateCatalog250 for tez-interactive-site's 
> 'tez.runtime.io.sort.mb' and 'tez.runtime.unordered.output.buffer.size-mb'.
> ---
>
> Key: AMBARI-19810
> URL: https://issues.apache.org/jira/browse/AMBARI-19810
> Project: Ambari
>  Issue Type: Bug
>Affects Versions: 2.5.0
>Reporter: Swapan Shridhar
>Assignee: Swapan Shridhar
> Fix For: trunk, 2.5.0
>
> Attachments: AMBARI-19810.01.patch
>
>
> Remove the following code and its references:
> {code}
> +  protected void updateTEZInteractiveConfigs() throws AmbariException {
> +AmbariManagementController ambariManagementController = 
> injector.getInstance(AmbariManagementController.class);
> +Clusters clusters = ambariManagementController.getClusters();
> +if (clusters != null) {
> +  Map clusterMap = clusters.getClusters();
> +
> +  if (clusterMap != null && !clusterMap.isEmpty()) {
> +for (final Cluster cluster : clusterMap.values()) {
> +  Config tezInteractiveSite = 
> cluster.getDesiredConfigByType("tez-interactive-site");
> +  if (tezInteractiveSite != null) {
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.io.sort.mb", "512"), true, true);
> +
> +updateConfigurationProperties("tez-interactive-site", 
> Collections.singletonMap("tez.runtime.unordered.output.buffer.size-mb",
> +"100"), true, true);
> +  }
> +}
> +  }
> +}
> +  }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)