ferenc-csaky commented on code in PR #9: URL: https://github.com/apache/flink-connector-kudu/pull/9#discussion_r1970137712
########## content/docs/connectors/table/kudu/overview.md: ########## @@ -0,0 +1,129 @@ +--- +title: Overview +weight: 1 +type: docs +aliases: +- /docs/connectors/table/kudu/ +- /docs/connectors/table/kudu/overview.html +--- +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +# Apache Kudu + +[Apache Kudu](https://kudu.apache.org) is a column-oriented, distributed data storage engine, specifically designed for use cases that require fast analytics on fast (rapidly changing) data. It lowers query latency significantly for Apache Flink and similar engines (Apache Impala, Apache NiFi, Apache Spark, and more). + +This connector allows reading and writing to [Kudu](https://kudu.apache.org) by providing: + +- a source (```KuduInputFormat```), +- a sink (```KuduSink```) and output (```KuduOutputFormat```) +- a table source (`KuduTableSource`), +- an upsert table sink (`KuduTableSink`), +- and a catalog (`KuduCatalog`). Review Comment: Lets remove this enumeration. DataStream API parts should not be referred here, and the rest will be elaborated in the following sections. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
