2 커밋 4af93c1754 ... 093dd58e09

작성자 SHA1 메시지 날짜
  demo.masouros 093dd58e09 Changed README 4 년 전
  demo.masouros 71f989ef90 Changed README 4 년 전
2개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      README.md
  2. 14 0
      src/python/README.md

+ 4 - 0
README.md

@@ -5,3 +5,7 @@
 + docker: Contains the container used to run Spark applications on the cluster. Currently Spark v3.0 is used with Hadoop v2.7 and Scala v2.12
 + kube: Contains the necessary ```YAML``` files to deploy Sparkbench on a kubernetes cluster. Modification might be needed to suit your cluster.
 + src: 
+
+
+## Generating the Spark configurations
+Please see ```src/python/README.md``` for instructions.

+ 14 - 0
src/python/README.md

@@ -1,3 +1,17 @@
+## Generating the 300 SPARK configurations
+In order to generate the 300 spark configurations, we use the OpenTuner library. The available range of values for all the parameters can be found in ```src/python/spark-config-generator.py``` file.
+To generate the 300 configs we execute the following:
+```bash
+mkdir configs
+for i in $(seq 1 1 300)
+do
+	python3 spark-config-generator.py
+	mv temp configs/$i
+done
+```
+The process may take a while. The 300 configurations will be available in the configs folder.
+
+## Known issues
 ### spark-config-generator.py
 This script generates a random SPARK configuration based on 107 SPARK parameters using the opentuner library.