@@ -60,26 +60,26 @@ appear before the `AS` clause to resolve any parsing ambiguities.
6060A connector specification consists of three parts:
6161
6262* [ Generic attributes] ( #generic-attributes ) common to all connectors, such as backpressure thresholds.
63- * Transport specification (` transport ` ) for either [ input] ( /docs/ connectors/sources/ ) or [ output] ( /docs /connectors/sinks/)
63+ * Transport specification (` transport ` ) for either [ input] ( /connectors/sources/ ) or [ output] ( /connectors/sinks/ )
6464 defines the data transport to be used by the connector.
65- Example transports include [ Kafka] ( /docs/ connectors/sources/kafka ) ,
66- [ URL] ( /docs/ connectors/sources/http-get ) , [ Delta Lake] ( /docs /connectors/sources/delta) , etc.
67- * [ Data format specification] ( /docs/ formats ) (` format ` ), which defines the data format for the connector.
68- Example data formats include [ CSV] ( /docs/ formats/csv ) , [ JSON] ( /docs/ formats/json ) , [ Parquet] ( /docs /formats/parquet) , or
65+ Example transports include [ Kafka] ( /connectors/sources/kafka ) ,
66+ [ URL] ( /connectors/sources/http-get ) , [ Delta Lake] ( /connectors/sources/delta ) , etc.
67+ * [ Data format specification] ( /formats ) (` format ` ), which defines the data format for the connector.
68+ Example data formats include [ CSV] ( /formats/csv ) , [ JSON] ( /formats/json ) , [ Parquet] ( /formats/parquet ) , or
6969 Avro).
7070
7171:::note
7272
73- Some transports, e.g., [ Delta Lake] ( /docs/ connectors/sinks/delta ) and
74- [ datagen] ( /docs/ connectors/sources/datagen ) , use fixed predefined data formats and do not require the
73+ Some transports, e.g., [ Delta Lake] ( /connectors/sinks/delta ) and
74+ [ datagen] ( /connectors/sources/datagen ) , use fixed predefined data formats and do not require the
7575format section in the connector specification.
7676
7777:::
7878
7979This architecture allows the user to combine different transports and data formats.
8080
81- These basics apply to all connectors ** except** the HTTP [ input] ( /docs/ connectors/sources/http ) and
82- [ output] ( /docs/ connectors/sinks/http ) connectors which are not managed by the user, as they directly feed/fetch data
81+ These basics apply to all connectors ** except** the HTTP [ input] ( /connectors/sources/http ) and
82+ [ output] ( /connectors/sinks/http ) connectors which are not managed by the user, as they directly feed/fetch data
8383into/from a pipeline via dedicated pipeline endpoints and therefore do not need to be configured in the ` WITH ` clauses
8484of tables and views.
8585
@@ -98,8 +98,8 @@ The following attributes are common to all connectors:
9898By default a Feldera pipeline sends a batch of changes to the output transport
9999for each batch of input updates it processes. This can result in a stream of
100100small updates, which is normal and even preferable for output transports like
101- [ Kafka] ( /docs/ connectors/sinks/kafka ) ; however it can cause performance problems
102- for other connectors, such as the [ Delta Lake connector] ( /docs/ connectors/sinks/delta )
101+ [ Kafka] ( /connectors/sinks/kafka ) ; however it can cause performance problems
102+ for other connectors, such as the [ Delta Lake connector] ( /connectors/sinks/delta )
103103by creating a large number of small files.
104104
105105The output buffer mechanism is designed to solve this problem by decoupling the
@@ -147,14 +147,14 @@ specified.
147147
148148:::
149149
150- See [ Delta Lake output connector documentation] ( /docs/ connectors/sinks/delta#curl )
150+ See [ Delta Lake output connector documentation] ( /connectors/sinks/delta )
151151for an example of configuring the output buffer.
152152
153153## Additional resources
154154
155155For more information, see:
156156
157- * [ Tutorial on using input and output connectors] ( /docs/ tutorials/basics/part3 )
158- * [ Tutorial on using HTTP-based Input and Output] ( /docs/ tutorials/basics/part2 )
159- * [ Supported source transports] ( /docs/ connectors/sources )
160- * [ Supported sinks transports] ( /docs/ connectors/sinks )
157+ * [ Tutorial on using input and output connectors] ( /tutorials/basics/part3 )
158+ * [ Tutorial on using HTTP-based Input and Output] ( /tutorials/basics/part2 )
159+ * [ Supported source transports] ( /connectors/sources )
160+ * [ Supported sinks transports] ( /connectors/sinks )
0 commit comments