Author: yusaku
Date: Fri Jan 11 02:20:43 2013
New Revision: 1431814
URL: http://svn.apache.org/viewvc?rev=1431814&view=rev
Log:
AMBARI-1120. Key spikes in HDFS IO missing from IO summary graphs. (Srimanth
Gunturi via yusaku)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/data/config_mapping.js
incubator/ambari/trunk/ambari-web/app/data/config_properties.js
incubator/ambari/trunk/ambari-web/app/views/common/chart/linear_time.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1431814&r1=1431813&r2=1431814&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Jan 11 02:20:43 2013
@@ -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)
Modified: incubator/ambari/trunk/ambari-web/app/data/config_mapping.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_mapping.js?rev=1431814&r1=1431813&r2=1431814&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_mapping.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_mapping.js Fri Jan 11
02:20:43 2013
@@ -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"],
Modified: incubator/ambari/trunk/ambari-web/app/data/config_properties.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_properties.js?rev=1431814&r1=1431813&r2=1431814&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Fri Jan 11
02:20:43 2013
@@ -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",
Modified:
incubator/ambari/trunk/ambari-web/app/views/common/chart/linear_time.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/common/chart/linear_time.js?rev=1431814&r1=1431813&r2=1431814&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/common/chart/linear_time.js
(original)
+++ incubator/ambari/trunk/ambari-web/app/views/common/chart/linear_time.js Fri
Jan 11 02:20:43 2013
@@ -421,8 +421,8 @@ App.ChartLinearTimeView = Ember.View.ext
var thisElement = this.get('element');
if (thisElement!=null) {
var calculatedWidth = $(thisElement).width();
- if (calculatedWidth > 10) {
- width = calculatedWidth;
+ if (calculatedWidth > 32) {
+ width = calculatedWidth-32;
}
}
}