HBASE-3237 Split request accepted -- BUT CURRENTLY A NOOP

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1036964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2010-11-19 18:05:36 +00:00
parent aa7b54a702
commit c7708c5390
2 changed files with 7 additions and 14 deletions

View File

@ -686,6 +686,7 @@ Release 0.90.0 - Unreleased
incorrect (Kannan Muthukkaruppan via JD)
HBASE-3239 Handle null regions to flush in HLog.cleanOldLogs (Kannan
Muthukkaruppan via JD)
HBASE-3237 Split request accepted -- BUT CURRENTLY A NOOP
IMPROVEMENTS

View File

@ -46,28 +46,20 @@
<p><hr><p>
<%
if (action.equals("split")) {
/*
if (key != null && key.length() > 0) {
Writable[] arr = new Writable[1];
arr[0] = new ImmutableBytesWritable(Bytes.toBytes(key));
master.modifyTable(Bytes.toBytes(tableName), HConstants.Modify.TABLE_SPLIT, arr);
hbadmin.split(key);
} else {
master.modifyTable(Bytes.toBytes(tableName), HConstants.Modify.TABLE_SPLIT);
hbadmin.split(tableName);
}
*/
%> Split request accepted -- BUT CURRENTLY A NOOP -- FIX!. <%
%> Split request accepted. <%
} else if (action.equals("compact")) {
/*
if (key != null && key.length() > 0) {
Writable[] arr = new Writable[1];
arr[0] = new ImmutableBytesWritable(Bytes.toBytes(key));
master.modifyTable(Bytes.toBytes(tableName), HConstants.Modify.TABLE_COMPACT, arr);
hbadmin.compact(key);
} else {
master.modifyTable(Bytes.toBytes(tableName), HConstants.Modify.TABLE_COMPACT, null);
hbadmin.compact(tableName);
}
*/
%> Compact request accepted -- BUT CURRENTLY A NOOP -- FIX! <%
%> Compact request accepted. <%
}
%>
<p>Reload.