You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrql.apache.org by fe...@apache.org on 2013/09/09 04:39:00 UTC

svn commit: r1520951 - in /incubator/mrql/site/trunk: index.html issue-tracking.html mail-lists.html team-list.html

Author: fegaras
Date: Mon Sep  9 02:39:00 2013
New Revision: 1520951

URL: http://svn.apache.org/r1520951
Log:
Added installation instruction

Modified:
    incubator/mrql/site/trunk/index.html
    incubator/mrql/site/trunk/issue-tracking.html
    incubator/mrql/site/trunk/mail-lists.html
    incubator/mrql/site/trunk/team-list.html

Modified: incubator/mrql/site/trunk/index.html
URL: http://svn.apache.org/viewvc/incubator/mrql/site/trunk/index.html?rev=1520951&r1=1520950&r2=1520951&view=diff
==============================================================================
--- incubator/mrql/site/trunk/index.html (original)
+++ incubator/mrql/site/trunk/index.html Mon Sep  9 02:39:00 2013
@@ -33,7 +33,7 @@
                 
                                 <ul class="nav">
                           <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">MRQL <b class="caret"></b></a>
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Information <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
                       <li>      <a href="index.html"  title="Overview">Overview</a>
@@ -47,6 +47,9 @@
         <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
+                      <li>      <a href="developers.html"  title="Developers">Developers</a>
+</li>
+                  
                       <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
 </li>
                   
@@ -54,6 +57,48 @@
 </li>
                           </ul>
       </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="getting_started.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="http://wiki.apache.org/mrql/Publications"  title="Research Papers and Presentations">Research Papers and Presentations</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Related Projects <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://hadoop.apache.org/"  title="Hadoop">Hadoop</a>
+</li>
+                  
+                      <li>      <a href="http://hama.apache.org/"  title="Hama">Hama</a>
+</li>
+                  
+                      <li>      <a href="http://spark.incubator.apache.org/"  title="Spark">Spark</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
                   </ul>
           
           
@@ -66,6 +111,10 @@
 </li>
       <li>      <a href="https://issues.apache.org/jira/browse/MRQL"  title="JIRA">JIRA</a>
 </li>
+      <li>      <a href="https://git-wip-us.apache.org/repos/asf?p=incubator-mrql.git"  title="GIT">GIT</a>
+</li>
+      <li>      <a href="http://twitter.com/apacheMRQL"  title="Twitter">Twitter</a>
+</li>
                   </ul>
               </li>
             </ul>
@@ -134,17 +183,23 @@
  See the License for the specific language governing permissions and
  limitations under the License. -->
   
-
     <div class="section"><h2>Apache MRQL<a name="Apache_MRQL"></a></h2></div>
     <p>MRQL is a query processing and optimization system for large-scale, distributed data analysis, built on top of Apache Hadoop, Hama, and Spark.
     <br /><br />
-    MRQL (pronounced miracle) is a query processing and optimization system for large-scale, distributed data analysis. MRQL (the MapReduce Query Language) is an SQL-like query language for large-scale data analysis on a cluster of computers. The MRQL query processing system can evaluate MRQL queries in three modes: in Map-Reduce mode using Apache Hadoop, in BSP mode (Bulk Synchronous Parallel mode) using Apache Hama, and in Spark mode using Apache Spark. The MRQL query language is powerful enough to express most common data analysis tasks over many forms of raw in-situ data, such as XML and JSON documents, binary files, and CSV documents. MRQL is more powerful than other current high-level MapReduce languages, such as Hive and PigLatin, since it can operate on more complex data and supports more powerful query constructs, thus eliminating the need for using explicit MapReduce code. With MRQL, users are able to express complex data analysis tasks, such as PageRank, k-means clusterin
 g, matrix factorization, etc, using SQL-like queries exclusively, while the MRQL query processing system is able to compile these queries to efficient Java code.</p>
+    MRQL (pronounced miracle) is a query processing and optimization system for large-scale, distributed data analysis. MRQL (the MapReduce Query Language) is an SQL-like query language for large-scale data analysis on a cluster of computers. The MRQL query processing system can evaluate MRQL queries in three modes:
+</p><ol style="list-style-type: decimal">
+<li>in Map-Reduce mode using Apache Hadoop,</li>
+<li>in BSP mode (Bulk Synchronous Parallel mode) using Apache Hama, and</li>
+<li>in Spark mode using Apache Spark.</li>
+</ol>
+The MRQL query language is powerful enough to express most common data analysis tasks over many forms of raw in-situ data, such as XML and JSON documents, binary files, and CSV documents. MRQL is more powerful than other current high-level MapReduce languages, such as Hive and PigLatin, since it can operate on more complex data and supports more powerful query constructs, thus eliminating the need for using explicit MapReduce code. With MRQL, users are able to express complex data analysis tasks, such as PageRank, k-means clustering, matrix factorization, etc, using SQL-like queries exclusively, while the MRQL query processing system is able to compile these queries to efficient Java code.
     <div class="section"><h2>News<a name="News"></a></h2></div>
     <p>
       </p><ul>
         <li>2013-03-13: MRQL project enters Apache Incubation.</li>
       </ul>
         
+
     <div class="section"><h2>Disclaimer<a name="Disclaimer"></a></h2></div>
     <p>Apache MRQL is an effort undergoing incubation at The Apache Software Foundation (ASF) sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p>
   

Modified: incubator/mrql/site/trunk/issue-tracking.html
URL: http://svn.apache.org/viewvc/incubator/mrql/site/trunk/issue-tracking.html?rev=1520951&r1=1520950&r2=1520951&view=diff
==============================================================================
--- incubator/mrql/site/trunk/issue-tracking.html (original)
+++ incubator/mrql/site/trunk/issue-tracking.html Mon Sep  9 02:39:00 2013
@@ -33,7 +33,7 @@
                 
                                 <ul class="nav">
                           <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">MRQL <b class="caret"></b></a>
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Information <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
                       <li>      <a href="index.html"  title="Overview">Overview</a>
@@ -47,6 +47,9 @@
         <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
+                      <li>      <a href="developers.html"  title="Developers">Developers</a>
+</li>
+                  
                       <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
 </li>
                   
@@ -54,6 +57,48 @@
 </li>
                           </ul>
       </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="getting_started.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="http://wiki.apache.org/mrql/Publications"  title="Research Papers and Presentations">Research Papers and Presentations</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Related Projects <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://hadoop.apache.org/"  title="Hadoop">Hadoop</a>
+</li>
+                  
+                      <li>      <a href="http://hama.apache.org/"  title="Hama">Hama</a>
+</li>
+                  
+                      <li>      <a href="http://spark.incubator.apache.org/"  title="Spark">Spark</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
                   </ul>
           
           
@@ -66,6 +111,10 @@
 </li>
       <li>      <a href="https://issues.apache.org/jira/browse/MRQL"  title="JIRA">JIRA</a>
 </li>
+      <li>      <a href="https://git-wip-us.apache.org/repos/asf?p=incubator-mrql.git"  title="GIT">GIT</a>
+</li>
+      <li>      <a href="http://twitter.com/apacheMRQL"  title="Twitter">Twitter</a>
+</li>
                   </ul>
               </li>
             </ul>

Modified: incubator/mrql/site/trunk/mail-lists.html
URL: http://svn.apache.org/viewvc/incubator/mrql/site/trunk/mail-lists.html?rev=1520951&r1=1520950&r2=1520951&view=diff
==============================================================================
--- incubator/mrql/site/trunk/mail-lists.html (original)
+++ incubator/mrql/site/trunk/mail-lists.html Mon Sep  9 02:39:00 2013
@@ -33,7 +33,7 @@
                 
                                 <ul class="nav">
                           <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">MRQL <b class="caret"></b></a>
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Information <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
                       <li>      <a href="index.html"  title="Overview">Overview</a>
@@ -47,6 +47,9 @@
         <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
+                      <li>      <a href="developers.html"  title="Developers">Developers</a>
+</li>
+                  
                       <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
 </li>
                   
@@ -54,6 +57,48 @@
 </li>
                           </ul>
       </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="getting_started.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="http://wiki.apache.org/mrql/Publications"  title="Research Papers and Presentations">Research Papers and Presentations</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Related Projects <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://hadoop.apache.org/"  title="Hadoop">Hadoop</a>
+</li>
+                  
+                      <li>      <a href="http://hama.apache.org/"  title="Hama">Hama</a>
+</li>
+                  
+                      <li>      <a href="http://spark.incubator.apache.org/"  title="Spark">Spark</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
                   </ul>
           
           
@@ -66,6 +111,10 @@
 </li>
       <li>      <a href="https://issues.apache.org/jira/browse/MRQL"  title="JIRA">JIRA</a>
 </li>
+      <li>      <a href="https://git-wip-us.apache.org/repos/asf?p=incubator-mrql.git"  title="GIT">GIT</a>
+</li>
+      <li>      <a href="http://twitter.com/apacheMRQL"  title="Twitter">Twitter</a>
+</li>
                   </ul>
               </li>
             </ul>
@@ -136,6 +185,17 @@
   
 
     <div class="section"><h2>Mailing Lists<a name="Mailing_Lists"></a></h2></div>
+    <div class="section"><h3>MRQL User List<a name="MRQL_User_List"></a></h3></div>
+    <p>
+    If you'd like to use MRQL, please subscribe to the MRQL user mailing list.<br /> 
+    The MRQL user mailing list is : 
+    <a class="externalLink" href="mailto:user@mrql.incubator.apache.org">user@mrql.incubator.apache.org</a>.
+    </p>
+    <ul>
+    <li><a class="externalLink" href="mailto:user-subscribe@mrql.incubator.apache.org">Subscribe to List</a></li>
+    <li><a class="externalLink" href="mailto:user-unsubscribe@mrql.incubator.apache.org">Unsubscribe from List</a></li>
+    </ul>
+
     <div class="section"><h3>MRQL Developer List<a name="MRQL_Developer_List"></a></h3></div>
     <p>
     If you'd like to contribute to MRQL, please subscribe to the MRQL developer mailing list.<br /> 
@@ -158,7 +218,6 @@
     <li><a class="externalLink" href="mailto:commits-subscribe@mrql.incubator.apache.org">Subscribe to List</a></li>
     <li><a class="externalLink" href="mailto:commits-unsubscribe@mrql.incubator.apache.org">Unsubscribe from List</a></li>
     </ul>
-    
 
   
 

Modified: incubator/mrql/site/trunk/team-list.html
URL: http://svn.apache.org/viewvc/incubator/mrql/site/trunk/team-list.html?rev=1520951&r1=1520950&r2=1520951&view=diff
==============================================================================
--- incubator/mrql/site/trunk/team-list.html (original)
+++ incubator/mrql/site/trunk/team-list.html Mon Sep  9 02:39:00 2013
@@ -33,7 +33,7 @@
                 
                                 <ul class="nav">
                           <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">MRQL <b class="caret"></b></a>
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Information <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
                       <li>      <a href="index.html"  title="Overview">Overview</a>
@@ -47,6 +47,9 @@
         <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
         <ul class="dropdown-menu">
         
+                      <li>      <a href="developers.html"  title="Developers">Developers</a>
+</li>
+                  
                       <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
 </li>
                   
@@ -54,6 +57,48 @@
 </li>
                           </ul>
       </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="getting_started.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="http://wiki.apache.org/mrql/Publications"  title="Research Papers and Presentations">Research Papers and Presentations</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Related Projects <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://hadoop.apache.org/"  title="Hadoop">Hadoop</a>
+</li>
+                  
+                      <li>      <a href="http://hama.apache.org/"  title="Hama">Hama</a>
+</li>
+                  
+                      <li>      <a href="http://spark.incubator.apache.org/"  title="Spark">Spark</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
                   </ul>
           
           
@@ -66,6 +111,10 @@
 </li>
       <li>      <a href="https://issues.apache.org/jira/browse/MRQL"  title="JIRA">JIRA</a>
 </li>
+      <li>      <a href="https://git-wip-us.apache.org/repos/asf?p=incubator-mrql.git"  title="GIT">GIT</a>
+</li>
+      <li>      <a href="http://twitter.com/apacheMRQL"  title="Twitter">Twitter</a>
+</li>
                   </ul>
               </li>
             </ul>
@@ -185,7 +234,7 @@
         </tr>
        <tr class="a" valign="top">
           <td align="center">fegaras</td>
-          <td align="center">Leonidas Fegaras</td>
+          <td align="center"><a class="externalLink" href="http://lambda.uta.edu/">Leonidas Fegaras</a></td>
           <td align="center">University of Texas at Arlington</td>
           <td align="center">committer</td>
         </tr>