Skip to content

Commit

Permalink
doc update for tag
Browse files Browse the repository at this point in the history
  • Loading branch information
deltars committed Jul 27, 2023
1 parent f330fcd commit 909c77b
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 48 deletions.
88 changes: 50 additions & 38 deletions python/api_reference.html

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion python/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down Expand Up @@ -101,6 +101,10 @@ <h2 id="A">A</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api_reference.html#deltalake.schema.ArrayType">ArrayType (class in deltalake.schema)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api_reference.html#deltalake.data_catalog.DataCatalog.AWS">AWS (deltalake.data_catalog.DataCatalog attribute)</a>
</li>
</ul></td>
</tr></table>
Expand Down Expand Up @@ -423,6 +427,10 @@ <h2 id="T">T</h2>

<h2 id="U">U</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api_reference.html#deltalake.data_catalog.DataCatalog.UNITY">UNITY (deltalake.data_catalog.DataCatalog attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api_reference.html#deltalake.table.DeltaTable.update_incremental">update_incremental() (deltalake.table.DeltaTable method)</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion python/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
Binary file modified python/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion python/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="#" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python/searchindex.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions python/usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
delta-rs
</a>
<div class="version">
0.10.0
0.10.1
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down Expand Up @@ -181,9 +181,9 @@ <h3>Custom Storage Backends<a class="headerlink" href="#custom-storage-backends"
<p>While delta always needs its internal storage backend to work and be properly configured, in order to manage the delta log,
it may sometime be advantageous - and is common practice in the arrow world - to customize the storage interface used for
reading the bulk data.</p>
<p><code class="docutils literal notranslate"><span class="pre">deltalake</span></code> will work with any storage compliant with <a class="reference external" href="https://arrow.apache.org/docs/python/generated/pyarrow.fs.FileSystem.html#pyarrow.fs.FileSystem" title="(in Apache Arrow v12.0.0)"><code class="xref py py-class docutils literal notranslate"><span class="pre">pyarrow.fs.FileSystem</span></code></a>, however the root of the filesystem has
<p><code class="docutils literal notranslate"><span class="pre">deltalake</span></code> will work with any storage compliant with <a class="reference external" href="https://arrow.apache.org/docs/python/generated/pyarrow.fs.FileSystem.html#pyarrow.fs.FileSystem" title="(in Apache Arrow v12.0.1)"><code class="xref py py-class docutils literal notranslate"><span class="pre">pyarrow.fs.FileSystem</span></code></a>, however the root of the filesystem has
to be adjusted to point at the root of the Delta table. We can achieve this by wrapping the custom filesystem into
a <a class="reference external" href="https://arrow.apache.org/docs/python/generated/pyarrow.fs.SubTreeFileSystem.html#pyarrow.fs.SubTreeFileSystem" title="(in Apache Arrow v12.0.0)"><code class="xref py py-class docutils literal notranslate"><span class="pre">pyarrow.fs.SubTreeFileSystem</span></code></a>.</p>
a <a class="reference external" href="https://arrow.apache.org/docs/python/generated/pyarrow.fs.SubTreeFileSystem.html#pyarrow.fs.SubTreeFileSystem" title="(in Apache Arrow v12.0.1)"><code class="xref py py-class docutils literal notranslate"><span class="pre">pyarrow.fs.SubTreeFileSystem</span></code></a>.</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">pyarrow.fs</span> <span class="k">as</span> <span class="nn">fs</span>
<span class="kn">from</span> <span class="nn">deltalake</span> <span class="kn">import</span> <span class="n">DeltaTable</span>

Expand Down Expand Up @@ -499,7 +499,7 @@ <h2>Writing Delta Tables<a class="headerlink" href="#writing-delta-tables" title
<div class="admonition note">
<p class="admonition-title">Note</p>
<p><a class="reference internal" href="api_reference.html#deltalake.write_deltalake" title="deltalake.write_deltalake"><code class="xref py py-func docutils literal notranslate"><span class="pre">write_deltalake()</span></code></a> accepts a Pandas DataFrame, but will convert it to
a Arrow table before writing. See caveats in <a class="reference external" href="https://arrow.apache.org/docs/python/pandas.html" title="(in Apache Arrow v12.0.0)"><span>Pandas Integration</span></a>.</p>
a Arrow table before writing. See caveats in <a class="reference external" href="https://arrow.apache.org/docs/python/pandas.html" title="(in Apache Arrow v12.0.1)"><span>Pandas Integration</span></a>.</p>
</div>
<p>By default, writes create a new table and error if it already exists. This is
controlled by the <code class="docutils literal notranslate"><span class="pre">mode</span></code> parameter, which mirrors the behavior of Spark’s
Expand Down

0 comments on commit 909c77b

Please sign in to comment.