Skip to content

Commit 1739fe3

Browse files
committedApr 9, 2020
Initial Commit
The completed code is provided.
0 parents  commit 1739fe3

File tree

93 files changed

+4090
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+4090
-0
lines changed
 

‎.env.template

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Cluster environment; location of different resources on the driver
2+
CLUSTER_USER=
3+
REMOTE_PROJECT_ROOT=
4+
LOCAL_PROJECT_ROOT=
5+
SPARK_ROOT=
6+
HDFS_ROOT=
7+
JAVA_HOME=
8+
9+
# Data paths
10+
LOCAL_DATA_DIR=
11+
HDFS_DATA_DIR=
12+
INGEST_SRC=$LOCAL_DATA_DIR/hdf5
13+
INGEST_DST=$HDFS_DATA_DIR/binary
14+
BENCHMARK_SRC=$HDFS_DATA_DIR/binary
15+
BENCHMARK_DST=$HDFS_DATA_DIR/benchmark-output
16+
17+
# Run modifiers
18+
JAR=target/scala-2.11/hdf5-on-spark-assembly-1.0.jar
19+
BRANCH=master
20+
INGEST_SUBDIRS=""
21+
BENCHMARK_SUBDIRS=""
22+
BENCHMARKS="count threshold filter filterWithoutES"
23+
FILTER_ARGS=""
24+
25+
# Cluster tunnel; ssh connection to reach cluster driver
26+
TUNNEL_SPEC=
27+
28+
# Spark cluster configuration; overrides spark-defaults.conf
29+
SPARK_MASTER=spark://$(hostname):7077
30+
DRIVER_CORES=
31+
DRIVER_MEMORY=
32+
NUM_EXECUTORS=
33+
TOTAL_EXECUTOR_CORES=
34+
CORES_PER_EXECUTOR=
35+
TOTAL_EXECUTOR_CORES=
36+
MEMORY_PER_EXECUTOR=
37+
MEMORY_FRACTION=
38+
ELASTICSEARCH_HOSTS=localhost

‎.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #xw
14+
*.war
15+
*.nar
16+
*.ear
17+
*.zip
18+
*.tar.gz
19+
*.rar
20+
21+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22+
hs_err_pid*
23+
24+
target/
25+
.idea/
26+
/null/
27+
28+
# Ignore hdf5 data
29+
/hdf5/
30+
/output/
31+
32+
#ignore environment file
33+
.env
34+
*.python-version

0 commit comments

Comments
 (0)