diff --git a/src/docbkx/book.xml b/src/docbkx/book.xml index 1e24d91339f..e566770647c 100644 --- a/src/docbkx/book.xml +++ b/src/docbkx/book.xml @@ -217,6 +217,15 @@ throws InterruptedException, IOException { compactions. The number of versions may need to be increased or decreased depending on application needs. +
+ + Immutability of Rowkeys + + Rowkeys cannot be changed. The only way they can be "changed" in a table is if the row is deleted and then re-inserted. + This is a fairly common question on the HBase dist-list so it pays to get the rowkeys right the first time (and/or before you've + inserted a lot of data). + +
@@ -1446,6 +1455,14 @@ hbase> describe 't1' + + Can I change a table's rowkeys? + + + No. See . + + + Why are logs flooded with '2011-01-10 12:40:48,407 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor' messages?