Modified: tajo/site/docs/current/hbase_integration.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/hbase_integration.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/hbase_integration.html (original) +++ tajo/site/docs/current/hbase_integration.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>HBase Integration — Apache Tajo 0.11.0 documentation</title> + <title>HBase Integration — Apache Tajo 0.10.0 documentation</title> @@ -28,9 +28,9 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> - <link rel="next" title="OpenStack Swift Integration" href="swift_integration.html"/> - <link rel="prev" title="Hive Integration" href="hive_integration.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="index.html"/> + <link rel="next" title="Tajo JDBC Driver" href="jdbc_driver.html"/> + <link rel="prev" title="HCatalog Integration" href="hcatalog_integration.html"/> <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> @@ -112,7 +112,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -138,7 +137,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1 current"><a class="current reference internal" href="">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="#drop-table">DROP TABLE</a></li> @@ -146,17 +145,11 @@ <li class="toctree-l2"><a class="reference internal" href="#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -199,9 +192,9 @@ <h1>HBase Integration<a class="headerlink" href="#hbase-integration" title="Permalink to this headline">¶</a></h1> <p>Apache Tajo⢠storage supports integration with Apache HBaseâ¢. This integration allows Tajo to access all tables used in Apache HBase.</p> -<p>In order to use this feature, you need to build add some configs into <code class="docutils literal"><span class="pre">conf/tajo-env.sh</span></code> and then add some properties into a table create statement.</p> +<p>In order to use this feature, you need to build add some configs into <tt class="docutils literal"><span class="pre">conf/tajo-env.sh</span></tt> and then add some properties into a table create statement.</p> <p>This section describes how to setup HBase integration.</p> -<p>First, you need to set your HBase home directory to the environment variable <code class="docutils literal"><span class="pre">HBASE_HOME</span></code> in conf/tajo-env.sh as follows:</p> +<p>First, you need to set your HBase home directory to the environment variable <tt class="docutils literal"><span class="pre">HBASE_HOME</span></tt> in conf/tajo-env.sh as follows:</p> <div class="highlight-python"><div class="highlight"><pre>export HBASE_HOME=/path/to/your/hbase/directory </pre></div> </div> @@ -220,12 +213,12 @@ This integration allows Tajo to access a </div> <p>Options</p> <ul class="simple"> -<li><code class="docutils literal"><span class="pre">table</span></code> : Set hbase origin table name. If you want to create an external table, the table must exists on HBase. The other way, if you want to create a managed table, the table must doesn’t exist on HBase.</li> -<li><code class="docutils literal"><span class="pre">columns</span></code> : :key means HBase row key. The number of columns entry need to equals to the number of Tajo table column</li> -<li><code class="docutils literal"><span class="pre">hbase.zookeeper.quorum</span></code> : Set zookeeper quorum address. You can use different zookeeper cluster on the same Tajo database. If you don’t set the zookeeper address, Tajo will refer the property of hbase-site.xml file.</li> -<li><code class="docutils literal"><span class="pre">hbase.zookeeper.property.clientPort</span></code> : Set zookeeper client port. If you don’t set the port, Tajo will refer the property of hbase-site.xml file.</li> +<li><tt class="docutils literal"><span class="pre">table</span></tt> : Set hbase origin table name. If you want to create an external table, the table must exists on HBase. The other way, if you want to create a managed table, the table must doesn’t exist on HBase.</li> +<li><tt class="docutils literal"><span class="pre">columns</span></tt> : :key means HBase row key. The number of columns entry need to equals to the number of Tajo table column</li> +<li><tt class="docutils literal"><span class="pre">hbase.zookeeper.quorum</span></tt> : Set zookeeper quorum address. You can use different zookeeper cluster on the same Tajo database. If you don’t set the zookeeper address, Tajo will refer the property of hbase-site.xml file.</li> +<li><tt class="docutils literal"><span class="pre">hbase.zookeeper.property.clientPort</span></tt> : Set zookeeper client port. If you don’t set the port, Tajo will refer the property of hbase-site.xml file.</li> </ul> -<p><code class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></code> allows <code class="docutils literal"><span class="pre">CREATE</span> <span class="pre">[EXTERNAL]</span> <span class="pre">TABLE</span></code> statement to avoid an error which occurs when the table does not exist.</p> +<p><tt class="docutils literal"><span class="pre">IF</span> <span class="pre">NOT</span> <span class="pre">EXISTS</span></tt> allows <tt class="docutils literal"><span class="pre">CREATE</span> <span class="pre">[EXTERNAL]</span> <span class="pre">TABLE</span></tt> statement to avoid an error which occurs when the table does not exist.</p> </div> <div class="section" id="drop-table"> <h2>DROP TABLE<a class="headerlink" href="#drop-table" title="Permalink to this headline">¶</a></h2> @@ -233,11 +226,11 @@ This integration allows Tajo to access a <div class="highlight-sql"><div class="highlight"><pre><span class="k">DROP</span> <span class="k">TABLE</span> <span class="p">[</span><span class="n">IF</span> <span class="k">EXISTS</span><span class="p">]</span> <span class="o"><</span><span class="k">table_name</span><span class="o">></span> <span class="p">[</span><span class="n">PURGE</span><span class="p">]</span> </pre></div> </div> -<p><code class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></code> allows <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement to avoid an error which occurs when the table does not exist. <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement removes a table from Tajo catalog, but it does not remove the contents on HBase cluster. If <code class="docutils literal"><span class="pre">PURGE</span></code> option is given, <code class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></code> statement will eliminate the entry in the catalog as well as the contents on HBase cluster.</p> +<p><tt class="docutils literal"><span class="pre">IF</span> <span class="pre">EXISTS</span></tt> allows <tt class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></tt> statement to avoid an error which occurs when the table does not exist. <tt class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></tt> statement removes a table from Tajo catalog, but it does not remove the contents on HBase cluster. If <tt class="docutils literal"><span class="pre">PURGE</span></tt> option is given, <tt class="docutils literal"><span class="pre">DROP</span> <span class="pre">TABLE</span></tt> statement will eliminate the entry in the catalog as well as the contents on HBase cluster.</p> </div> <div class="section" id="insert-overwrite-into"> <h2>INSERT (OVERWRITE) INTO<a class="headerlink" href="#insert-overwrite-into" title="Permalink to this headline">¶</a></h2> -<p>INSERT OVERWRITE statement overwrites a table data of an existing table. Tajo’s INSERT OVERWRITE statement follows <code class="docutils literal"><span class="pre">INSERT</span> <span class="pre">INTO</span> <span class="pre">SELECT</span></code> statement of SQL. The examples are as follows:</p> +<p>INSERT OVERWRITE statement overwrites a table data of an existing table. Tajo’s INSERT OVERWRITE statement follows <tt class="docutils literal"><span class="pre">INSERT</span> <span class="pre">INTO</span> <span class="pre">SELECT</span></tt> statement of SQL. The examples are as follows:</p> <div class="highlight-sql"><div class="highlight"><pre><span class="c1">-- when a target table schema and output schema are equivalent to each other</span> <span class="k">INSERT</span> <span class="n">OVERWRITE</span> <span class="k">INTO</span> <span class="n">t1</span> <span class="k">SELECT</span> <span class="n">l_orderkey</span><span class="p">,</span> <span class="n">l_partkey</span><span class="p">,</span> <span class="n">l_quantity</span> <span class="k">FROM</span> <span class="n">lineitem</span><span class="p">;</span> <span class="c1">-- or</span> @@ -278,7 +271,7 @@ put 'blog', 'jhkim-01', put 'blog', 'jhkim-01', 'info:date', '2014-10-22' </pre></div> </div> -<p>And then create the table and query the table meta data with <code class="docutils literal"><span class="pre">\d</span></code> option:</p> +<p>And then create the table and query the table meta data with <tt class="docutils literal"><span class="pre">\d</span></tt> option:</p> <div class="highlight-sql"><div class="highlight"><pre>default> \d blog; table name: default.blog @@ -344,10 +337,10 @@ blrunner-01, Jaehwa Jung, 2014-10-31, <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> - <a href="swift_integration.html" class="btn btn-neutral float-right" title="OpenStack Swift Integration"/>Next <span class="fa fa-arrow-circle-right"></span></a> + <a href="jdbc_driver.html" class="btn btn-neutral float-right" title="Tajo JDBC Driver"/>Next <span class="fa fa-arrow-circle-right"></span></a> - <a href="hive_integration.html" class="btn btn-neutral" title="Hive Integration"><span class="fa fa-arrow-circle-left"></span> Previous</a> + <a href="hcatalog_integration.html" class="btn btn-neutral" title="HCatalog Integration"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> @@ -376,7 +369,7 @@ blrunner-01, Jaehwa Jung, 2014-10-31, <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true
Modified: tajo/site/docs/current/index.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/index.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/index.html (original) +++ tajo/site/docs/current/index.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Apache Tajo⢠(dev) - User documentation — Apache Tajo 0.11.0 documentation</title> + <title>Apache Tajo⢠0.10.0 - User documentation — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="#"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="#"/> <link rel="next" title="Introduction" href="introduction.html"/> @@ -111,7 +111,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -137,7 +136,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -145,17 +144,11 @@ <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -183,7 +176,7 @@ <ul class="wy-breadcrumbs"> <li><a href="#">Docs</a> »</li> - <li>Apache Tajo⢠(dev) - User documentation</li> + <li>Apache Tajo⢠0.10.0 - User documentation</li> <li class="wy-breadcrumbs-aside"> <a href="_sources/index.txt" rel="nofollow"> View page source</a> @@ -194,13 +187,8 @@ </div> <div role="main"> - <div class="section" id="apache-tajo-dev-user-documentation"> -<h1>Apache Tajo⢠(dev) - User documentation<a class="headerlink" href="#apache-tajo-dev-user-documentation" title="Permalink to this headline">¶</a></h1> -<div class="admonition warning"> -<p class="first admonition-title">Warning</p> -<p class="last">This documentation is based on the development branch (master). -As a result, some contents can be mismatched to the actual implementation.</p> -</div> + <div class="section" id="apache-tajo-0-10-0-user-documentation"> +<h1>Apache Tajo⢠0.10.0 - User documentation<a class="headerlink" href="#apache-tajo-0-10-0-user-documentation" title="Permalink to this headline">¶</a></h1> <p>Table of Contents:</p> <div class="toctree-wrapper compound"> <ul> @@ -242,7 +230,7 @@ As a result, some contents can be mismat <li class="toctree-l2"><a class="reference internal" href="configuration/catalog_configuration.html">Catalog Configuration</a><ul> <li class="toctree-l3"><a class="reference internal" href="configuration/catalog_configuration.html#derby-configuration">Derby Configuration</a></li> <li class="toctree-l3"><a class="reference internal" href="configuration/catalog_configuration.html#mysql-mariadb-postgresql-oracle-configuration">MySQL/MariaDB/PostgreSQL/Oracle Configuration</a></li> -<li class="toctree-l3"><a class="reference internal" href="configuration/catalog_configuration.html#hivecatalogstore-configuration">HiveCatalogStore Configuration</a></li> +<li class="toctree-l3"><a class="reference internal" href="configuration/catalog_configuration.html#hcatalogstore-configuration">HCatalogStore Configuration</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="configuration/ha_configuration.html">High Availability for TajoMaster</a><ul> @@ -349,7 +337,6 @@ As a result, some contents can be mismat <li class="toctree-l3"><a class="reference internal" href="functions/network_func_and_operators.html#supported-functions">Supported Functions</a></li> </ul> </li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -362,7 +349,7 @@ As a result, some contents can be mismat </ul> </li> <li class="toctree-l2"><a class="reference internal" href="table_management/file_formats.html">File Formats</a><ul> -<li class="toctree-l3"><a class="reference internal" href="table_management/text.html">TEXT</a></li> +<li class="toctree-l3"><a class="reference internal" href="table_management/csv.html">CSV (TextFile)</a></li> <li class="toctree-l3"><a class="reference internal" href="table_management/rcfile.html">RCFile</a></li> <li class="toctree-l3"><a class="reference internal" href="table_management/parquet.html">Parquet</a></li> <li class="toctree-l3"><a class="reference internal" href="table_management/sequencefile.html">SequenceFile</a></li> @@ -404,7 +391,7 @@ As a result, some contents can be mismat </li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -412,26 +399,18 @@ As a result, some contents can be mismat <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a><ul> -<li class="toctree-l3"><a class="reference internal" href="swift_integration.html#common-configurations">Common configurations</a></li> -<li class="toctree-l3"><a class="reference internal" href="swift_integration.html#configurations-per-provider">Configurations per provider</a></li> -</ul> -</li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a><ul> -<li class="toctree-l3"><a class="reference internal" href="jdbc_driver.html#direct-download">Direct Download</a></li> <li class="toctree-l3"><a class="reference internal" href="jdbc_driver.html#from-binary-distribution">From Binary Distribution</a></li> <li class="toctree-l3"><a class="reference internal" href="jdbc_driver.html#from-building-source-code">From Building Source Code</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a><ul> +<li class="toctree-l3"><a class="reference internal" href="jdbc_driver.html#java-nio-channels-unresolvedaddressexception">java.nio.channels.UnresolvedAddressException</a></li> +</ul> +</li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -484,7 +463,7 @@ As a result, some contents can be mismat <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/index/future_work.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/index/future_work.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/index/future_work.html (original) +++ tajo/site/docs/current/index/future_work.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Future Works — Apache Tajo 0.11.0 documentation</title> + <title>Future Works — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/> <link rel="next" title="Backup and Restore" href="../backup_and_restore.html"/> <link rel="prev" title="How to use index?" href="how_to_use.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -246,7 +239,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/index/how_to_use.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/index/how_to_use.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/index/how_to_use.html (original) +++ tajo/site/docs/current/index/how_to_use.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>How to use index? — Apache Tajo 0.11.0 documentation</title> + <title>How to use index? — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/> <link rel="next" title="Future Works" href="future_work.html"/> <link rel="prev" title="Index Types" href="types.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -297,7 +290,7 @@ Indexes: <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/index/types.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/index/types.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/index/types.html (original) +++ tajo/site/docs/current/index/types.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Index Types — Apache Tajo 0.11.0 documentation</title> + <title>Index Types — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Index (Experimental Feature)" href="../index_overview.html"/> <link rel="next" title="How to use index?" href="how_to_use.html"/> <link rel="prev" title="Index (Experimental Feature)" href="../index_overview.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -200,7 +193,7 @@ <div class="section" id="index-types"> <h1>Index Types<a class="headerlink" href="#index-types" title="Permalink to this headline">¶</a></h1> -<p>Currently, Tajo supports only one type of index, <code class="docutils literal"><span class="pre">TWO_LEVEL_BIN_TREE</span></code>, shortly <code class="docutils literal"><span class="pre">BST</span></code>. The BST index is a kind of binary search tree which is extended to be permanently stored on disk. It consists of two levels of nodes; a leaf node indexes the keys with the positions of data in an HDFS block and a root node indexes the keys with the leaf node indices.</p> +<p>Currently, Tajo supports only one type of index, <tt class="docutils literal"><span class="pre">TWO_LEVEL_BIN_TREE</span></tt>, shortly <tt class="docutils literal"><span class="pre">BST</span></tt>. The BST index is a kind of binary search tree which is extended to be permanently stored on disk. It consists of two levels of nodes; a leaf node indexes the keys with the positions of data in an HDFS block and a root node indexes the keys with the leaf node indices.</p> <p>When an index scan is started, the query engine first reads the root node and finds the search key. If it finds a leaf node corresponding to the search key, it subsequently finds the search key in that leaf node. Finally, it directly reads a tuple corresponding to the search key from HDFS.</p> </div> @@ -242,7 +235,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/index_overview.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/index_overview.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/index_overview.html (original) +++ tajo/site/docs/current/index_overview.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Index (Experimental Feature) — Apache Tajo 0.11.0 documentation</title> + <title>Index (Experimental Feature) — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="index.html"/> <link rel="next" title="Index Types" href="index/types.html"/> <link rel="prev" title="Hash Partitioning" href="partitioning/hash_partitioning.html"/> @@ -112,7 +112,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -138,7 +137,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -146,17 +145,11 @@ <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -198,7 +191,7 @@ <div class="section" id="index-experimental-feature"> <h1>Index (Experimental Feature)<a class="headerlink" href="#index-experimental-feature" title="Permalink to this headline">¶</a></h1> <p>An index is a data structure that is used for efficient query processing. Using an index, the Tajo query engine can directly retrieve search values.</p> -<p>This is still an experimental feature. In order to use indexes, you must check out the source code of the <code class="docutils literal"><span class="pre">index_support</span></code> branch:</p> +<p>This is still an experimental feature. In order to use indexes, you must check out the source code of the <tt class="docutils literal"><span class="pre">index_support</span></tt> branch:</p> <div class="highlight-python"><div class="highlight"><pre>git clone -b index_support https://git-wip-us.apache.org/repos/asf/tajo.git tajo-index </pre></div> </div> @@ -251,7 +244,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/introduction.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/introduction.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/introduction.html (original) +++ tajo/site/docs/current/introduction.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Introduction — Apache Tajo 0.11.0 documentation</title> + <title>Introduction — Apache Tajo 0.10.0 documentation</title> @@ -28,9 +28,9 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="index.html"/> <link rel="next" title="Getting Started" href="getting_started.html"/> - <link rel="prev" title="Apache Tajo⢠(dev) - User documentation" href="index.html"/> + <link rel="prev" title="Apache Tajo⢠0.10.0 - User documentation" href="index.html"/> <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> @@ -112,7 +112,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -138,7 +137,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -146,17 +145,11 @@ <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -217,7 +210,7 @@ queries in order to avoid the worst quer <a href="getting_started.html" class="btn btn-neutral float-right" title="Getting Started"/>Next <span class="fa fa-arrow-circle-right"></span></a> - <a href="index.html" class="btn btn-neutral" title="Apache Tajo⢠(dev) - User documentation"><span class="fa fa-arrow-circle-left"></span> Previous</a> + <a href="index.html" class="btn btn-neutral" title="Apache Tajo⢠0.10.0 - User documentation"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> @@ -246,7 +239,7 @@ queries in order to avoid the worst quer <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/jdbc_driver.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/jdbc_driver.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/jdbc_driver.html (original) +++ tajo/site/docs/current/jdbc_driver.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Tajo JDBC Driver — Apache Tajo 0.11.0 documentation</title> + <title>Tajo JDBC Driver — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="index.html"/> <link rel="next" title="Tajo Client API" href="tajo_client_api.html"/> <link rel="prev" title="OpenStack Swift Integration" href="swift_integration.html"/> @@ -112,7 +112,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -138,7 +137,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -204,11 +203,11 @@ In this section, we explain how to get J <h2>How to get JDBC driver<a class="headerlink" href="#how-to-get-jdbc-driver" title="Permalink to this headline">¶</a></h2> <div class="section" id="direct-download"> <h3>Direct Download<a class="headerlink" href="#direct-download" title="Permalink to this headline">¶</a></h3> -<p>You can directly download a JDBC driver jar file (<code class="docutils literal"><span class="pre">tajo-jdbc-x.y.z.jar</span></code>) from <a class="reference external" href="http://tajo.apache.org/downloads.html">Downloads</a>.</p> +<p>You can directly download a JDBC driver jar file (<tt class="docutils literal"><span class="pre">tajo-jdbc-x.y.z.jar</span></tt>) from <a class="reference external" href="http://tajo.apache.org/downloads.html">Downloads</a>.</p> </div> <div class="section" id="from-binary-distribution"> <h3>From Binary Distribution<a class="headerlink" href="#from-binary-distribution" title="Permalink to this headline">¶</a></h3> -<p>Tajo binary distribution provides JDBC jar file located in <code class="docutils literal"><span class="pre">${TAJO_HOME}/share/jdbc-dist/tajo-jdbc-x.y.z.jar</span></code>.</p> +<p>Tajo binary distribution provides JDBC jar file located in <tt class="docutils literal"><span class="pre">${TAJO_HOME}/share/jdbc-dist/tajo-jdbc-x.y.z.jar</span></tt>.</p> </div> <div class="section" id="from-building-source-code"> <h3>From Building Source Code<a class="headerlink" href="#from-building-source-code" title="Permalink to this headline">¶</a></h3> @@ -222,22 +221,22 @@ In this section, we explain how to get J </div> <div class="section" id="setting-the-classpath"> <h2>Setting the CLASSPATH<a class="headerlink" href="#setting-the-classpath" title="Permalink to this headline">¶</a></h2> -<p>In order to use the JDBC driver, you should add <code class="docutils literal"><span class="pre">tajo-jdbc-x.y.z.jar</span></code> in your <code class="docutils literal"><span class="pre">CLASSPATH</span></code>.</p> +<p>In order to use the JDBC driver, you should add <tt class="docutils literal"><span class="pre">tajo-jdbc-x.y.z.jar</span></tt> in your <tt class="docutils literal"><span class="pre">CLASSPATH</span></tt>.</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">CLASSPATH</span><span class="o">=</span>path/to/tajo-jdbc-x.y.z.jar:<span class="nv">$CLASSPATH</span> </pre></div> </div> </div> <div class="section" id="an-example-jdbc-client"> <h2>An Example JDBC Client<a class="headerlink" href="#an-example-jdbc-client" title="Permalink to this headline">¶</a></h2> -<p>The JDBC driver class name is <code class="docutils literal"><span class="pre">org.apache.tajo.jdbc.TajoDriver</span></code>. -You can get the driver <code class="docutils literal"><span class="pre">Class.forName("org.apache.tajo.jdbc.TajoDriver")</span></code>. -The connection url should be <code class="docutils literal"><span class="pre">jdbc:tajo://<TajoMaster</span> <span class="pre">hostname>:<TajoMaster</span> <span class="pre">client</span> <span class="pre">rpc</span> <span class="pre">port>/<database</span> <span class="pre">name></span></code>. -The default TajoMaster client rpc port is <code class="docutils literal"><span class="pre">26002</span></code>. +<p>The JDBC driver class name is <tt class="docutils literal"><span class="pre">org.apache.tajo.jdbc.TajoDriver</span></tt>. +You can get the driver <tt class="docutils literal"><span class="pre">Class.forName("org.apache.tajo.jdbc.TajoDriver")</span></tt>. +The connection url should be <tt class="docutils literal"><span class="pre">jdbc:tajo://<TajoMaster</span> <span class="pre">hostname>:<TajoMaster</span> <span class="pre">client</span> <span class="pre">rpc</span> <span class="pre">port>/<database</span> <span class="pre">name></span></tt>. +The default TajoMaster client rpc port is <tt class="docutils literal"><span class="pre">26002</span></tt>. If you want to change the listening port, please refer <a class="reference internal" href="configuration/cluster_setup.html"><em>Cluster Setup</em></a>.</p> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">Currently, Tajo does not support the concept of database and namespace. -All tables are contained in <code class="docutils literal"><span class="pre">default</span></code> database. So, you don’t need to specify any database name.</p> +All tables are contained in <tt class="docutils literal"><span class="pre">default</span></tt> database. So, you don’t need to specify any database name.</p> </div> <p>The following shows an example of JDBC Client.</p> <div class="highlight-java"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">java.sql.Connection</span><span class="o">;</span> @@ -317,7 +316,7 @@ All tables are contained in <code class= <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true @@ -344,4 +343,4 @@ All tables are contained in <code class= </body> -</html> \ No newline at end of file +</html> Modified: tajo/site/docs/current/objects.inv URL: http://svn.apache.org/viewvc/tajo/site/docs/current/objects.inv?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== Binary files - no diff available. Modified: tajo/site/docs/current/partitioning/column_partitioning.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/partitioning/column_partitioning.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/partitioning/column_partitioning.html (original) +++ tajo/site/docs/current/partitioning/column_partitioning.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Column Partitioning — Apache Tajo 0.11.0 documentation</title> + <title>Column Partitioning — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/> <link rel="next" title="Range Partitioning" href="range_partitioning.html"/> <link rel="prev" title="Introduction to Partitioning" href="intro_to_partitioning.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -203,15 +196,15 @@ <p>The column table partition is designed to support the partition of Apache Hiveâ¢.</p> <div class="section" id="how-to-create-a-column-partitioned-table"> <h2>How to Create a Column Partitioned Table<a class="headerlink" href="#how-to-create-a-column-partitioned-table" title="Permalink to this headline">¶</a></h2> -<p>You can create a partitioned table by using the <code class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">BY</span></code> clause. For a column partitioned table, you should use -the <code class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">BY</span> <span class="pre">COLUMN</span></code> clause with partition keys.</p> -<p>For example, assume there is a table <code class="docutils literal"><span class="pre">orders</span></code> composed of the following schema.</p> +<p>You can create a partitioned table by using the <tt class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">BY</span></tt> clause. For a column partitioned table, you should use +the <tt class="docutils literal"><span class="pre">PARTITION</span> <span class="pre">BY</span> <span class="pre">COLUMN</span></tt> clause with partition keys.</p> +<p>For example, assume there is a table <tt class="docutils literal"><span class="pre">orders</span></tt> composed of the following schema.</p> <div class="highlight-python"><div class="highlight"><pre>id INT, item_name TEXT, price FLOAT </pre></div> </div> -<p>Also, assume that you want to use <code class="docutils literal"><span class="pre">order_date</span> <span class="pre">TEXT</span></code> and <code class="docutils literal"><span class="pre">ship_date</span> <span class="pre">TEXT</span></code> as the partition keys. +<p>Also, assume that you want to use <tt class="docutils literal"><span class="pre">order_date</span> <span class="pre">TEXT</span></tt> and <tt class="docutils literal"><span class="pre">ship_date</span> <span class="pre">TEXT</span></tt> as the partition keys. Then, you should create a table as follows:</p> <div class="highlight-sql"><div class="highlight"><pre><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">orders</span> <span class="p">(</span> <span class="n">id</span> <span class="nb">INT</span><span class="p">,</span> @@ -223,15 +216,15 @@ Then, you should create a table as follo </div> <div class="section" id="partition-pruning-on-column-partitioned-tables"> <h2>Partition Pruning on Column Partitioned Tables<a class="headerlink" href="#partition-pruning-on-column-partitioned-tables" title="Permalink to this headline">¶</a></h2> -<p>The following predicates in the <code class="docutils literal"><span class="pre">WHERE</span></code> clause can be used to prune unqualified column partitions without processing +<p>The following predicates in the <tt class="docutils literal"><span class="pre">WHERE</span></tt> clause can be used to prune unqualified column partitions without processing during query planning phase.</p> <ul class="simple"> -<li><code class="docutils literal"><span class="pre">=</span></code></li> -<li><code class="docutils literal"><span class="pre"><></span></code></li> -<li><code class="docutils literal"><span class="pre">></span></code></li> -<li><code class="docutils literal"><span class="pre"><</span></code></li> -<li><code class="docutils literal"><span class="pre">>=</span></code></li> -<li><code class="docutils literal"><span class="pre"><=</span></code></li> +<li><tt class="docutils literal"><span class="pre">=</span></tt></li> +<li><tt class="docutils literal"><span class="pre"><></span></tt></li> +<li><tt class="docutils literal"><span class="pre">></span></tt></li> +<li><tt class="docutils literal"><span class="pre"><</span></tt></li> +<li><tt class="docutils literal"><span class="pre">>=</span></tt></li> +<li><tt class="docutils literal"><span class="pre"><=</span></tt></li> <li>LIKE predicates with a leading wild-card character</li> <li>IN list predicates</li> </ul> @@ -281,7 +274,7 @@ There haven’t known compatibility <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/partitioning/hash_partitioning.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/partitioning/hash_partitioning.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/partitioning/hash_partitioning.html (original) +++ tajo/site/docs/current/partitioning/hash_partitioning.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Hash Partitioning — Apache Tajo 0.11.0 documentation</title> + <title>Hash Partitioning — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/> <link rel="next" title="Index (Experimental Feature)" href="../index_overview.html"/> <link rel="prev" title="Range Partitioning" href="range_partitioning.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -243,7 +236,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/partitioning/intro_to_partitioning.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/partitioning/intro_to_partitioning.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/partitioning/intro_to_partitioning.html (original) +++ tajo/site/docs/current/partitioning/intro_to_partitioning.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Introduction to Partitioning — Apache Tajo 0.11.0 documentation</title> + <title>Introduction to Partitioning — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/> <link rel="next" title="Column Partitioning" href="column_partitioning.html"/> <link rel="prev" title="Table Partitioning" href="../table_partitioning.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -254,7 +247,7 @@ Currently, Apache Tajo only provides Apa <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/partitioning/range_partitioning.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/partitioning/range_partitioning.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/partitioning/range_partitioning.html (original) +++ tajo/site/docs/current/partitioning/range_partitioning.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Range Partitioning — Apache Tajo 0.11.0 documentation</title> + <title>Range Partitioning — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="../index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="../index.html"/> <link rel="up" title="Table Partitioning" href="../table_partitioning.html"/> <link rel="next" title="Hash Partitioning" href="hash_partitioning.html"/> <link rel="prev" title="Column Partitioning" href="column_partitioning.html"/> @@ -113,7 +113,6 @@ <li class="toctree-l2"><a class="reference internal" href="../functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="../functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="../functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../table_management.html">Table Management</a><ul> @@ -139,7 +138,7 @@ <li class="toctree-l2"><a class="reference internal" href="../backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="../hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="../hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -147,17 +146,11 @@ <li class="toctree-l2"><a class="reference internal" href="../hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="../swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="../swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="../jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="../jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../tajo_client_api.html">Tajo Client API</a></li> @@ -243,7 +236,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true Modified: tajo/site/docs/current/search.html URL: http://svn.apache.org/viewvc/tajo/site/docs/current/search.html?rev=1674465&r1=1674464&r2=1674465&view=diff ============================================================================== --- tajo/site/docs/current/search.html (original) +++ tajo/site/docs/current/search.html Sat Apr 18 08:50:16 2015 @@ -7,7 +7,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>Search — Apache Tajo 0.11.0 documentation</title> + <title>Search — Apache Tajo 0.10.0 documentation</title> @@ -28,7 +28,7 @@ - <link rel="top" title="Apache Tajo 0.11.0 documentation" href="index.html"/> + <link rel="top" title="Apache Tajo 0.10.0 documentation" href="index.html"/> <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> @@ -110,7 +110,6 @@ <li class="toctree-l2"><a class="reference internal" href="functions/string_func_and_operators.html">String Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/datetime_func_and_operators.html">DateTime Functions and Operators</a></li> <li class="toctree-l2"><a class="reference internal" href="functions/network_func_and_operators.html">Network Functions and Operators</a></li> -<li class="toctree-l2"><a class="reference internal" href="functions/json_func.html">JSON Functions</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="table_management.html">Table Management</a><ul> @@ -136,7 +135,7 @@ <li class="toctree-l2"><a class="reference internal" href="backup_and_restore/catalog.html">Backup and Restore Catalog</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="hive_integration.html">Hive Integration</a></li> +<li class="toctree-l1"><a class="reference internal" href="hcatalog_integration.html">HCatalog Integration</a></li> <li class="toctree-l1"><a class="reference internal" href="hbase_integration.html">HBase Integration</a><ul> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#create-table">CREATE TABLE</a></li> <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#drop-table">DROP TABLE</a></li> @@ -144,17 +143,11 @@ <li class="toctree-l2"><a class="reference internal" href="hbase_integration.html#usage">Usage</a></li> </ul> </li> -<li class="toctree-l1"><a class="reference internal" href="swift_integration.html">OpenStack Swift Integration</a><ul> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#swift-configuration">Swift configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#hadoop-configurations">Hadoop configurations</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#tajo-configuration">Tajo configuration</a></li> -<li class="toctree-l2"><a class="reference internal" href="swift_integration.html#querying-on-swift">Querying on Swift</a></li> -</ul> -</li> <li class="toctree-l1"><a class="reference internal" href="jdbc_driver.html">Tajo JDBC Driver</a><ul> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#how-to-get-jdbc-driver">How to get JDBC driver</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#setting-the-classpath">Setting the CLASSPATH</a></li> <li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#an-example-jdbc-client">An Example JDBC Client</a></li> +<li class="toctree-l2"><a class="reference internal" href="jdbc_driver.html#faq">FAQ</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="tajo_client_api.html">Tajo Client API</a></li> @@ -233,7 +226,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', - VERSION:'0.11.0', + VERSION:'0.10.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true
