MAPREDUCE-6377. JHS sorting on state column not working in webUi.
Contributed by zhihai xu. (cherry picked from commit 790a861766dcd60212d83f444f2f96d3acf20a94) Conflicts: hadoop-mapreduce-project/CHANGES.txt
This commit is contained in:
parent
866d0f6f04
commit
937d9653a7
@ -21,6 +21,9 @@ Release 2.6.3 - UNRELEASED
|
|||||||
|
|
||||||
MAPREDUCE-6540. TestMRTimelineEventHandling fails (sjlee)
|
MAPREDUCE-6540. TestMRTimelineEventHandling fails (sjlee)
|
||||||
|
|
||||||
|
MAPREDUCE-6377. JHS sorting on state column not working in webUi.
|
||||||
|
(zhihai xu via devaraj)
|
||||||
|
|
||||||
Release 2.6.2 - 2015-10-28
|
Release 2.6.2 - 2015-10-28
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -87,10 +87,11 @@ private String jobsTableInit() {
|
|||||||
append(", bProcessing: true").
|
append(", bProcessing: true").
|
||||||
|
|
||||||
// Sort by id upon page load
|
// Sort by id upon page load
|
||||||
append(", aaSorting: [[2, 'desc']]").
|
append(", aaSorting: [[3, 'desc']]").
|
||||||
append(", aoColumnDefs:[").
|
append(", aoColumnDefs:[").
|
||||||
// Maps Total, Maps Completed, Reduces Total and Reduces Completed
|
// Maps Total, Maps Completed, Reduces Total and Reduces Completed
|
||||||
append("{'sType':'numeric', 'bSearchable': false, 'aTargets': [ 7, 8, 9, 10 ] }").
|
append("{'sType':'numeric', 'bSearchable': false" +
|
||||||
|
", 'aTargets': [ 8, 9, 10, 11 ] }").
|
||||||
append("]}").
|
append("]}").
|
||||||
toString();
|
toString();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user