Repository: tez
Updated Branches:
  refs/heads/master 2bf27de3b -> 7e636a5e9


TEZ-3079. Fix tez-tfile parser documentation (rbalamohan)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/7e636a5e
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/7e636a5e
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/7e636a5e

Branch: refs/heads/master
Commit: 7e636a5e9661bde62cc0cb4364ad4febc659dcb3
Parents: 2bf27de
Author: Rajesh Balamohan <rbalamo...@apache.org>
Authored: Fri Jan 29 20:25:39 2016 +0530
Committer: Rajesh Balamohan <rbalamo...@apache.org>
Committed: Fri Jan 29 20:25:39 2016 +0530

----------------------------------------------------------------------
 CHANGES.txt                           | 1 +
 tez-tools/tez-tfile-parser/README.txt | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/7e636a5e/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 91c86f8..d69390c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,7 @@ Release 0.8.3: Unreleased
 INCOMPATIBLE CHANGES
 
 ALL CHANGES:
+  TEZ-3079. Fix tez-tfile parser documentation.
   TEZ-3066. TaskAttemptFinishedEvent ConcurrentModificationException in 
recovery or history logging services.
   TEZ-3036. Tez AM can hang on startup with no indication of error
   TEZ-3052. Task internal error due to Invalid event: T_ATTEMPT_FAILED at 
FAILED

http://git-wip-us.apache.org/repos/asf/tez/blob/7e636a5e/tez-tools/tez-tfile-parser/README.txt
----------------------------------------------------------------------
diff --git a/tez-tools/tez-tfile-parser/README.txt 
b/tez-tools/tez-tfile-parser/README.txt
index 5b18767..f82380d 100644
--- a/tez-tools/tez-tfile-parser/README.txt
+++ b/tez-tools/tez-tfile-parser/README.txt
@@ -16,7 +16,9 @@ set pig.splitCombination false;
 set tez.grouping.min-size 52428800;
 set tez.grouping.max-size 52428800;
 
-register 'tfile-parser-1.0-SNAPSHOT.jar';
+/* Register all tez jars. Replace $TEZ_HOME, $TEZ_TFILE_DIR with absolute path 
*/
+register '$TEZ_HOME/*.jar';
+register '$TEZ_TFILE_DIR/tfile-parser-1.0-SNAPSHOT.jar';
 raw = load '/app-logs/root/logs/application_1411511669099_0769/*' using 
org.apache.tez.tools.TFileLoader() as (machine:chararray, key:chararray, 
line:chararray);
 filterByLine = FILTER raw BY (key MATCHES 
'.*container_1411511669099_0769_01_000001.*')
                    AND (line MATCHES '.*Shuffle.*');

Reply via email to