Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 726 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 726 Bytes

Apache Tez Docker image

DockerPulls DockerStars

Note: this is the master branch - for a particular Tez version always check the related branch

With Oracle JDK8 and Hadoop 2.7.4.

Usage

docker run -it dvoros/tez:latest

Tez example

Run the ordered word-count example with:

echo "some words in some file" > /tmp/some.file
hdfs dfs -put /tmp/some.file /user/root/in

cd $TEZ_HOME
hadoop jar tez-examples-*.jar orderedwordcount /user/root/in /user/root/out
hdfs dfs -cat '/user/root/out/*'