Skip to content
This repository was archived by the owner on Oct 26, 2023. It is now read-only.

Commit 1db59b7

Browse files
author
trisberg
committed
updating readme files
1 parent 35ad0c1 commit 1db59b7

File tree

10 files changed

+48
-5
lines changed

10 files changed

+48
-5
lines changed

hadoop/file-polling/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Building and running
2+
3+
$ cd hadoop/file-polling
4+
$ mvn clean package appassembler:assemble
5+
$ sh ./target/appassembler/bin/filepolling
6+

hadoop/ftp/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Building and running
2+
3+
$ cd hadoop/ftp
4+
$ mvn clean package appassembler:assemble
5+
$ sh ./target/appassembler/bin/ftp
6+

hadoop/hbase/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
$ mvn clean package appassembler:assemble
44
$ sh ./target/appassembler/bin/usercount
55

6-
7-
8-

hadoop/hive/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Building the examples
2+
3+
$ cd hadoop/hive
4+
$ mvn clean package appassembler:assemble
5+
6+
# Run the password analysis example
7+
8+
$ sh ./target/appassembler/bin/hiveApp
9+
10+
# Run the apache log analysis example
11+
12+
$ sh ./target/appassembler/bin/hiveAppWithApacheLogs
13+

hadoop/pig/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Building the examples
2+
3+
$ cd hadoop/pig
4+
$ mvn clean package appassembler:assemble
5+
6+
# Run the password analysis example
7+
8+
$ sh ./target/appassembler/bin/pigApp
9+
10+
# Run the password analysis repository example
11+
12+
$ sh ./target/appassembler/bin/pigAppWithRespoitory
13+
14+
# Run the apache log analysis example
15+
16+
$ sh ./target/appassembler/bin/pigAppWithApacheLogs
17+

hadoop/scheduling-quartz/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Building and running
22

3+
$ cd hadoop/scheduling-quartz
34
$ mvn clean package appassembler:assemble
45
$ sh ./target/appassembler/bin/wordcount

hadoop/scheduling/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Building and running
22

3+
$ cd hadoop/scheduling
34
$ mvn clean package appassembler:assemble
45
$ sh ./target/appassembler/bin/wordcount

hadoop/wordcount-hdfs-copy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
$ hadoop fs -rmr /user/gutenberg/output
44
$ hadoop fs -rmr /user/gutenberg/input
5+
$ cd hadoop/wordcount-hdfs-copy
56
$ mvn clean package appassembler:assemble
6-
$ cd ./target/appassembler/bin
7-
$ sh wordcount
7+
$ sh ./target/appassembler/bin/wordcount
88

99
You should see the input file copied into the HDFS directory
1010
/user/gutenberg/input/word

hadoop/wordcount-spring-basic/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
$ cd hadoop/wordcount-spring-basic
55
$ mvn clean package appassembler:assemble
66
$ sh ./target/appassembler/bin/wordcount
7+

hadoop/wordcount-spring-intermediate/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
$ mvn clean package appassembler:assemble
77
$ export ENV=qa
88
$ sh ./target/appassembler/bin/wordcount
9+

0 commit comments

Comments
 (0)