You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrql.apache.org by Apache Wiki <wi...@apache.org> on 2014/02/04 20:54:46 UTC

[Mrql Wiki] Update of "GettingStarted" by LeonidasFegaras

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Mrql Wiki" for change notification.

The "GettingStarted" page has been changed by LeonidasFegaras:
https://wiki.apache.org/mrql/GettingStarted?action=diff&rev1=9&rev2=10

  in BSP mode (Bulk Synchronous Parallel mode) using [[http://hama.apache.org/|Apache Hama]],
  and in Spark mode using [[http://spark.incubator.apache.org/|Apache Spark]].
  
+ The latest stable MRQL version, MRQL-0.9.0-incubating, is compatible with the following Apache releases: 
- The MRQL !MapReduce mode has been tested on Apache Hadoop !MapReduce releases 1.0.1, and 1.0.3. 
+ The MRQL !MapReduce mode is compatible with Apache Hadoop releases 1.0.1 and 1.0.3. 
- You can download the latest tarball from [[http://hadoop.apache.org/mapreduce/|Apache Hadoop]].
+ You can download the Hadoop tarball from [[http://hadoop.apache.org/mapreduce/|Apache Hadoop]].
- The BSP and Spark modes are optional. The BSP mode has been tested on Apache Hama 0.5.0 and 0.6.2.
+ The BSP and Spark modes are optional. The BSP mode is compatible with Apache Hama 0.5.0 and 0.6.2.
  You can download the latest tarball from [[http://hama.apache.org/|Apache Hama]].
- The Spark mode has been tested on Apache Spark 0.8.0-incubating in both local and standalone deploy modes.
+ The Spark mode is compatible with Apache Spark 0.8.0-incubating.
+ You can download the latest tarball prebuilt for Hadoop1 from [[http://spark.incubator.apache.org/|Apache Spark]].
  
  The following instructions assume that you have already installed Hadoop !MapReduce
  and you have deployed it on your cluster successfully.
- Otherwise, follow the directions in
- [[http://www.michael-noll.com/tutorials/running-hadoop-on-ubuntu-linux-multi-node-cluster/|Running Hadoop On Ubuntu Linux]].
  
  === How to install MRQL ===
  
@@ -57, +57 @@

  To build MRQL using maven, use {{{mvn install}}}. To validate the installation, use {{{mvn install -Dtests}}},
  which runs the queries in {{{tests/queries}}} in memory, local Hadoop mode, local Hama mode, and local Spark mode.
  
+ The latest source code from GIT supports the Hadoop releases 0.20.x, 1.x, and 2.x (yarn),
+ the Hama releases 0.5.0 and 0.6.x, and the Spark release 0.9.0-incubating.
+ Currently, the "mvn install" builds MRQL with Hadoop 1.2.1, Hama 0.6.3, and Spark 0.9.0-incubating. 
+ To build MRQL on some other Hadoop 1.x, such as 1.0.3, use: 
+ 
+ {{{
+ mvn -Dhadoop.version=1.0.3 install 
+ }}}
+ 
+ To build MRQL on Hadoop 2.x (yarn) use: 
+ 
+ {{{
+ mvn -Pyarn -Dyarn.version=2.2.0 -Dhadoop.version=1.2.1 install 
+ }}}
+ 
+ To build MRQL on Hadoop 0.20.x use: 
+ 
+ {{{
+ mvn -PMultipleInputs -Dhadoop.version=0.20.2 install
+ }}}
+