commit a616c033a048a254d4f436fce0a7feeea13fa1cc Author: root Date: Wed Nov 4 16:10:32 2015 -0800 HBASE-13982 diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java index 90f2f0e..26b62d8 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/ImportTsv.java @@ -620,6 +620,9 @@ public class ImportTsv extends Configured implements Tool { "You must specify at most one column as timestamp key for each imported record.\n" + "Record with invalid timestamps (blank, non-numeric) will be treated as bad record.\n" + "Note: if you use this option, then '" + TIMESTAMP_CONF_KEY + "' option will be ignored.\n" + + "Other special columns that can be specified are " + TsvParser.CELL_TTL_COLUMN_SPEC + " and " + TsvParser.CELL_VISIBILITY_COLUMN_SPEC + "." + + TsvParser.CELL_TTL_COLUMN_SPEC +" designates that this column will be used as a Cell's Time To Live (TTL) attribute. " + + TsvParser.CELL_VISIBILITY_COLUMN_SPEC + " designates that this column contains the visibility label expression." + "\n" + TsvParser.ATTRIBUTES_COLUMN_SPEC+" can be used to specify Operation Attributes per record.\n"+ " Should be specified as key=>value where "+TsvParser.DEFAULT_ATTRIBUTES_COLUMN_INDEX+ " is used \n"+