Adding documentation.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/775bb215 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/775bb215 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/775bb215 Branch: refs/heads/master Commit: 775bb2154c5253653e4d6eac5b47b512378b9411 Parents: 7684ef9 Author: Aaron McCurry <[email protected]> Authored: Fri Aug 9 08:59:00 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Fri Aug 9 08:59:00 2013 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/775bb215/blur-mapred/src/main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java ---------------------------------------------------------------------- diff --git a/blur-mapred/src/main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java b/blur-mapred/src/main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java index aef7c3e..e388a65 100644 --- a/blur-mapred/src/main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java +++ b/blur-mapred/src/main/java/org/apache/blur/mapreduce/lib/CsvBlurDriver.java @@ -259,12 +259,12 @@ public class CsvBlurDriver { options.addOption(OptionBuilder .withArgName("auto generate record ids") .withDescription( - "Automatically generate record ids for each record based on a MD5 has of the data within the record.") + "No Record Ids - Automatically generate record ids for each record based on a MD5 has of the data within the record.") .create("a")); options.addOption(OptionBuilder .withArgName("auto generate row ids") .withDescription( - "Automatically generate row ids for each record based on a MD5 has of the data within the record.") + "No Row Ids - Automatically generate row ids for each record based on a MD5 has of the data within the record.") .create("A")); options.addOption(OptionBuilder.withArgName("disable optimize indexes during copy") .withDescription("Disable optimize indexes during copy, this has very little overhead. (enabled by default)")
