Skip to content

Commit 2c125ca

Browse files
committed
Update README and gitignore
For a more streamined onboarding experience
1 parent 004d251 commit 2c125ca

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ local.properties
4545
/*.csv
4646
out/
4747
datagen_output/
48+
49+
# Hadoop directory extracted as instructed in the Quick Start guide
50+
/hadoop-2.6.0.tar.gz
51+
/hadoop-2.6.0/

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,16 @@ There are three main ways to run Datagen:
2828

2929
### Pseudo-distributed Hadoop node
3030

31+
To grab Hadoop, extract it, and set the environment values to sensible defaults, and generate the data as specified in the `parameters.ini` file, run the following script:
32+
3133
```bash
3234
wget http://archive.apache.org/dist/hadoop/core/hadoop-2.6.0/hadoop-2.6.0.tar.gz
3335
tar xf hadoop-2.6.0.tar.gz
3436
export HADOOP_CLIENT_OPTS="-Xmx2G"
3537
# set this to the Hadoop 2.6.0 directory
36-
export HADOOP_HOME=
38+
export HADOOP_HOME=`pwd`/hadoop-2.6.0
3739
# set this to the repository's directory
38-
export LDBC_SNB_DATAGEN_HOME=
39-
cd $LDBC_SNB_DATAGEN_HOME
40+
export LDBC_SNB_DATAGEN_HOME=`pwd`
4041
./run.sh
4142
```
4243

0 commit comments

Comments
 (0)