8000 Version bump. by ghislainfourny · Pull Request #1139 · RumbleDB/rumble · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Version bump. #1139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<groupId>com.github.rumbledb</groupId>
<artifactId>rumbledb</artifactId>
<version>1.16.0</version>
<version>1.16.1</version>
<packaging>jar</packaging>
<name>RumbleDB</name>
<description>A JSONiq engine to query large-scale JSON datasets stored on HDFS. Spark under the hood.</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/banner.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
____ __ __ ____ ____
/ __ \__ ______ ___ / /_ / /__ / __ \/ __ )
/ /_/ / / / / __ `__ \/ __ \/ / _ \/ / / / __ | The distributed JSONiq engine
/ _, _/ /_/ / / / / / / /_/ / / __/ /_/ / /_/ / 1.16.0 "Shagbark Hickory" beta
/ _, _/ /_/ / / / / / / /_/ / / __/ /_/ / /_/ / 1.16.1 "Shagbark Hickory" beta
/_/ |_|\__,_/_/ /_/ /_/_.___/_/\___/_____/_____/

24 changes: 12 additions & 12 deletions src/main/resources/assets/defaultscreen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,40 +9,40 @@ Usage:
spark-submit <Spark arguments> <path to RumbleDB's jar> <Rumble arguments>

You can RumbleDB on a shell with:
spark-submit rumbledb-1.16.0.jar --shell yes
spark-submit rumbledb-1.16.1.jar --shell yes

You can directly inline a query on the command line with:
spark-submit rumbledb-1.16.0.jar --query '1+1'
spark-submit rumbledb-1.16.1.jar --query '1+1'

You can specify an output path with:
spark-submit rumbledb-1.16.0.jar --query '1+1' --output-path my-output.txt
spark-submit rumbledb-1.16.1.jar --query '1+1' --output-path my-output.txt

You can specify a query path with:
spark-submit rumbledb-1.16.0.jar --query-path my-query.jq
spark-submit rumbledb-1.16.1.jar --query-path my-query.jq

You can run it as an HTTP server (e.g., for use with a Jupyter notebook) with:
spark-submit rumbledb-1.16.0.jar --server yes --port 9090
spark-submit rumbledb-1.16.1.jar --server yes --port 9090

RumbleDB also supports Apache Livy for use in Jupyter notebooks, which may be
even more convenient if you are using a cluster.

For local use, you can control the number of cores, as well as allocated
memory, with:
spark-submit --master local[*] rumbledb-1.16.0.jar --shell yes
spark-submit --master local[2] rumbledb-1.16.0.jar --shell yes
spark-submit --master local[*] --driver-memory 10G rumbledb-1.16.0.jar --shell yes
spark-submit --master local[*] rumbledb-1.16.1.jar --shell yes
spark-submit --master local[2] rumbledb-1.16.1.jar --shell yes
spark-submit --master local[*] --driver-memory 10G rumbledb-1.16.1.jar --shell yes

You can use RumbleDB remotely with:
spark-submit --master yarn rumbledb-1.16.0.jar --shell yes
spark-submit --master yarn rumbledb-1.16.1.jar --shell yes

(Although for clusters provided as a service, --master yarn is often implicit
and unnecessary).

For remote use (e.g., logged in on the Spark cluster with ssh), you can set the
number of executors, cores and memory, you can use:
spark-submit --executor-cores 3 --executor-memory 5G rumbledb-1.16.0.jar --shell yes
spark-submit --executor-cores 3 --executor-memory 5G rumbledb-1.16.1.jar --shell yes

For remote use, you can also use other file system paths such as S3, HDFS, etc:
spark-submit rumbledb-1.16.0.jar --query-path hdfs://server:port/my-query.jq --output-path hdfs://server:port/my-output.json
spark-submit rumbledb-1.16.1.jar --query-path hdfs://server:port/my-query.jq --output-path hdfs://server:port/my-output.json

More documentation on https://www.rumbledb.org/
More documentation on https://www.rumbledb.org/
2 changes: 1 addition & 1 deletion src/main/resources/assets/jsound-validator.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h2 style="font-family: liberation sans, Myriad, Bitstream Vera Sans, sans-serif
</span>
</div>
<div>
<button id="submit" style="margin: 0 auto; padding: 10px;">Validate with RumbleDB 1.16.0</button>
<button id="submit" style="margin: 0 auto; padding: 10px;">Validate with RumbleDB 1.16.1</button>
</div>

<h2 style="font-family: liberation sans, Myriad, Bitstream Vera Sans, sans-serif; color: #336699;">Results</h2>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/public.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h2 style="font-family: liberation sans, Myriad, Bitstream Vera Sans, sans-serif
</span>
</div>
<div>
<button id="submit" style="margin: 20px; padding: 10px;">Evaluate with RumbleDB 1.16.0</button>
<button id="submit" style="margin: 20px; padding: 10px;">Evaluate with RumbleDB 1.16.1</button>
</div>

</div>
Expand Down
0