Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make documentation/io/connectors/ canonical #23877

Merged
merged 2 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 0 additions & 60 deletions website/www/site/content/en/documentation/io/built-in.md

This file was deleted.

11 changes: 6 additions & 5 deletions website/www/site/content/en/documentation/io/connectors.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "I/O Connectors"
aliases: [built-in]
---
<!--
Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -133,7 +134,7 @@ This table provides a consolidated, at-a-glance overview of the available built-
<td class="present">✔</td>
</tr>
<tr>
<td>ParquetIO</td>
<td>ParquetIO (<a href="/documentation/io/built-in/parquet/">guide</a>)</td>
<td class="present">✔</td>
<td class="present">✔</td>
<td class="present">
Expand Down Expand Up @@ -390,7 +391,7 @@ This table provides a consolidated, at-a-glance overview of the available built-
<td class="absent">✘</td>
</tr>
<tr>
<td>HadoopFormatIO</td>
<td>HadoopFormatIO (<a href="/documentation/io/built-in/hadoop/">guide</a>)</td>
<td class="present">✔</td>
<td class="present">✔</td>
<td class="present">
Expand All @@ -416,7 +417,7 @@ This table provides a consolidated, at-a-glance overview of the available built-
<td class="absent">✘</td>
</tr>
<tr>
<td>HCatalogIO</td>
<td>HCatalogIO (<a href="/documentation/io/built-in/hcatalog/">guide</a>)</td>
<td class="present">✔</td>
<td class="present">✔</td>
<td class="present">
Expand Down Expand Up @@ -468,7 +469,7 @@ This table provides a consolidated, at-a-glance overview of the available built-
<td class="present">✔</td>
</tr>
<tr>
<td>BigQueryIO</td>
<td>BigQueryIO (<a href="/documentation/io/built-in/google-bigquery/">guide</a>)</td>
<td class="present">✔</td>
<td class="present">✔</td>
<td class="present">
Expand Down Expand Up @@ -522,7 +523,7 @@ This table provides a consolidated, at-a-glance overview of the available built-
<td class="present">✔</td>
</tr>
<tr>
<td>SnowflakeIO</td>
<td>SnowflakeIO (<a href="/documentation/io/built-in/snowflake">guide</a>)</td>
<td class="present">✔</td>
<td class="present">✔</td>
<td class="present">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ limitations under the License.

# Custom I/O patterns

This page describes common patterns in pipelines with [custom I/O connectors](/documentation/io/developing-io-overview/). Custom I/O connectors connect pipelines to databases that aren't supported by Beam's [built-in I/O transforms](/documentation/io/built-in/).
This page describes common patterns in pipelines with [custom I/O connectors](/documentation/io/developing-io-overview/). Custom I/O connectors connect pipelines to databases that aren't supported by Beam's [built-in I/O transforms](/documentation/io/connectors/).

{{< language-switcher java py >}}

## Choosing between built-in and custom connectors

[Built-in I/O connectors](/documentation/io/built-in/) are tested and hardened, so use them whenever possible. Only use custom I/O connectors when:
[Built-in I/O connectors](/documentation/io/connectors/) are tested and hardened, so use them whenever possible. Only use custom I/O connectors when:

* No built-in options exist
* Your pipeline pulls in a small subset of source data
Expand Down
Loading