Installing from source (for the adventurous)
Last updated
$ cd some_directory$ git clone https://github.com/RumbleDB/rumble.git$ cd rumble$ mvn clean compile assembly:single$ spark-submit target/rumbledb-2.1.0-jar-with-dependencies.jar replUsing Spark's default log4j profile: org/apache/spark/log4j-defaults.properties
____ __ __ ____ ____
/ __ \__ ______ ___ / /_ / /__ / __ \/ __ )
/ /_/ / / / / __ `__ \/ __ \/ / _ \/ / / / __ | The distributed JSONiq engine
/ _, _/ /_/ / / / / / / /_/ / / __/ /_/ / /_/ / 2.1.0 "Cedrus Libani" beta
/_/ |_|\__,_/_/ /_/ /_/_.___/_/\___/_____/_____/
Master: local[2]
Item Display Limit: 1000
Output Path: -
Log Path: -
Query Path : -
rumble$rumble$ "Hello, world!"rumble$ "Hello, world!"
>>>
>>>
Hello, worldrumble$ 2 + 2
>>>
>>>
4
rumble$ 1 to 10
>>>
>>>
( 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)