http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/parquet.html ---------------------------------------------------------------------- diff --git a/docs/python/parquet.html b/docs/python/parquet.html index d3a08ee..47fb4f3 100644 --- a/docs/python/parquet.html +++ b/docs/python/parquet.html @@ -73,7 +73,8 @@ <li class="toctree-l1"><a class="reference internal" href="memory.html">Memory and IO Interfaces</a></li> <li class="toctree-l1"><a class="reference internal" href="data.html">In-Memory Data Model</a></li> <li class="toctree-l1"><a class="reference internal" href="ipc.html">IPC: Fast Streaming and Serialization</a></li> -<li class="toctree-l1"><a class="reference internal" href="filesystems.html">Filesystem Interfaces</a></li> +<li class="toctree-l1"><a class="reference internal" href="filesystems.html">File System Interfaces</a></li> +<li class="toctree-l1"><a class="reference internal" href="plasma.html">The Plasma In-Memory Object Store</a></li> <li class="toctree-l1"><a class="reference internal" href="pandas.html">Using PyArrow with pandas</a></li> <li class="toctree-l1 current"><a class="current reference internal" href="#">Reading and Writing the Apache Parquet Format</a></li> <li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li> @@ -217,7 +218,7 @@ the whole file (due to the columnar layout):</p> <span class="go">one: double</span> <span class="go">three: bool</span> <span class="go">-- metadata --</span> -<span class="go">pandas: {"pandas_version": "0.19.2", "index_columns": ["__index_level_0__"], "columns": [{"metadata": null, "numpy_type": "float64", "pandas_type": "float64", "name": "one"}, {"metadata": null, "numpy_type": "bool", "pandas_type": "bool", "name": "three"}, {"metadata": null, "numpy_type": "object", "pandas_type": "unicode", "name": "two"}, {"metadata": null, "numpy_type": "int64", "pandas_type": "int64", "name": "__index_level_0__"}]}</span> +<span class="go">pandas: {"columns": [{"name": "one", "pandas_type": "float64", "metadata": null, "numpy_type": "float64"}, {"name": "three", "pandas_type": "bool", "metadata": null, "numpy_type": "bool"}, {"name": "two", "pandas_type": "unicode", "metadata": null, "numpy_type": "object"}], "pandas_version": "0.20.3", "index_columns": ["__index_level_0__"]}</span> </pre></div> </div> <p>We need not use a string to specify the origin of the file. It can be any of:</p> @@ -237,17 +238,17 @@ maps) will perform the best.</p> <span class="gp">In [13]: </span><span class="n">parquet_file</span><span class="o">.</span><span class="n">metadata</span> <span class="gh">Out[13]: </span><span class="go"></span> -<span class="go"><pyarrow._parquet.FileMetaData object at 0x2b9643b72cc8></span> -<span class="go"> created_by: parquet-cpp version 1.1.1-SNAPSHOT</span> +<span class="go"><pyarrow._parquet.FileMetaData object at 0x7fdbd8c8ecc8></span> +<span class="go"> created_by: parquet-cpp version 1.2.1-SNAPSHOT</span> <span class="go"> num_columns: 4</span> <span class="go"> num_rows: 3</span> <span class="go"> num_row_groups: 1</span> <span class="go"> format_version: 1.0</span> -<span class="go"> serialized_size: 804</span> +<span class="go"> serialized_size: 708</span> <span class="gp">In [14]: </span><span class="n">parquet_file</span><span class="o">.</span><span class="n">schema</span> <span class="go">