소스 검색

AMBARI-1120. Key spikes in HDFS IO missing from IO summary graphs. (Srimanth Gunturi via yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1431814 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 년 전
부모
커밋
8a40d303c3
4개의 변경된 파일11개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 0
      CHANGES.txt
  2. 4 0
      ambari-web/app/data/config_mapping.js
  3. 2 0
      ambari-web/app/data/config_properties.js
  4. 2 2
      ambari-web/app/views/common/chart/linear_time.js

+ 3 - 0
CHANGES.txt

@@ -674,6 +674,9 @@ AMBARI-666 branch (unreleased changes)
   OPTIMIZATIONS
 
   BUG FIXES
+  
+  AMBARI-1120. Key spikes in HDFS IO missing from IO summary graphs.
+  (Srimanth Gunturi via yusaku)
 
   AMBARI-1119. Service Summary pages no longer show service-specific info.
   (Srimanth Gunturi via yusaku)

+ 4 - 0
ambari-web/app/data/config_mapping.js

@@ -101,6 +101,7 @@ module.exports = [
     "value": "<templateName[0]>",
     "filename": "hdfs-site.xml"
   },
+  /*
   {
     "name": "dfs.support.append",
     "templateName": ["dfs_support_append"],
@@ -108,6 +109,7 @@ module.exports = [
     "value": "<templateName[0]>",
     "filename": "hdfs-site.xml"
   },
+  */
   {
     "name": "dfs.webhdfs.enabled",
     "templateName": ["dfs_webhdfs_enabled"],
@@ -748,6 +750,7 @@ module.exports = [
     "filename": "hbase-site.xml"
   },
   */
+
   {
     "name": "dfs.support.append",
     "templateName": ["hdfs_support_append"],
@@ -755,6 +758,7 @@ module.exports = [
     "value": "<templateName[0]>",
     "filename": "hbase-site.xml"
   },
+
   {
     "name": "dfs.client.read.shortcircuit",
     "templateName": ["hdfs_enable_shortcircuit_read"],

+ 2 - 0
ambari-web/app/data/config_properties.js

@@ -501,6 +501,7 @@ module.exports =
       "serviceName": "HDFS",
       "category": "Advanced"
     },
+    /*
     {
       "id": "puppet var",
       "name": "dfs_support_append",
@@ -512,6 +513,7 @@ module.exports =
       "domain": "global",
       "serviceName": "HDFS"
     },
+    */
     {
       "id": "puppet var",
       "name": "dfs_webhdfs_enabled",

+ 2 - 2
ambari-web/app/views/common/chart/linear_time.js

@@ -421,8 +421,8 @@ App.ChartLinearTimeView = Ember.View.extend({
           var thisElement = this.get('element');
           if (thisElement!=null) {
             var calculatedWidth = $(thisElement).width();
-            if (calculatedWidth > 10) {
-              width = calculatedWidth;
+            if (calculatedWidth > 32) {
+              width = calculatedWidth-32;
             }
           }
         }