We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ffef16 commit a1b0111Copy full SHA for a1b0111
README.md
@@ -1,10 +1,17 @@
1
# Restructure HDFS files
2
3
Build jar from source with
4
-```
5
-./gradlew fatJar
+
+```shell
6
+./gradlew build
7
```
8
and find the output JAR file as `build/libs/restructurehdfs-all-0.1-SNAPSHOT.jar`. Then run with:
9
10
11
java -jar restructurehdfs-all-0.1-SNAPSHOT.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
12
13
14
+By default, this will output the data in CSV format. If JSON format is preferred, use the following instead:
15
+```
16
+java -Dorg.radarcns.format=json -jar restructurehdfs-all-0.1-SNAPSHOT.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
17
0 commit comments