Overview of the DataX Kudu Writer Plugin
masterThe datax-kudu-plugin is a writer plugin for DataX designed to sink data into Apache Kudu.
Compatibility Note: This plugin has only been tested with Kudu 1.11.
repository·master·Indexed 12 days ago
https://github.com/alibaba/dataxAn open-source data synchronization framework designed to move data between heterogeneous sources using a plugin-based architecture of Readers and Writers. It supports a wide range of data channels including RDBMS (MySQL, Oracle, PostgreSQL), NoSQL (HBase, MongoDB, OTS), Big Data systems (HDFS, Hive, ODPS), and others like Apache Kudu 1.11. Includes tools like datax-example for local plugin debugging and specialized plugins such as TableStoreStreamReader for incremental data export from Alibaba Cloud TableStore.
The datax-kudu-plugin is a writer plugin for DataX designed to sink data into Apache Kudu.
Compatibility Note: This plugin has only been tested with Kudu 1.11.
Gremlin Client to connect to remote GDB instances, consuming data from a DataX Reader, generating appropriate DSL statements, and executing them to write the data into the graph.TableStoreStreamReader is a DataX data channel designed for incremental data export from Alibaba Cloud TableStore (OTS). It supports different reading modes (Column mode and Row mode) and provides specific configurations for data type conversion and field mapping to facilitate seamless data movement from TableStore to other destinations.The databendwriter is a DataX plugin designed to write data from DataX records into Databend tables. It utilizes the databend JDBC driver and communicates via the RESTful HTTP protocol to execute queries on both open-source Databend and Databend Cloud.
Write Mechanism:
During each write batch, the plugin uploads batch data into an internal S3 stage and executes the corresponding INSERT SQL to load the data into the target Databend table.
Best Practices: If using the Databend community distribution, it is recommended to use S3, MinIO, or OSS as the underlying storage layer. These support presigned upload operations, which helps avoid unnecessary data transfer costs.
DataX is an open-source offline data synchronization tool designed for heterogeneous data sources. It enables stable and efficient data transfer between various sources such as relational databases (MySQL, Oracle, etc.), HDFS, Hive, ODPS, HBase, and FTP.
Its core design philosophy uses a star topology rather than a complex mesh. DataX acts as the central transport carrier; to add a new data source, you only need to connect it to DataX, allowing seamless synchronization with all existing data sources.
TSDBReader plugin is designed to read data from Alibaba Cloud Time Series Database (TSDB). TSDB is a database service optimized for efficient read/write, compressed storage, and real-time computing of time-series data, commonly used for IoT and internet-scale real-time monitoring and alerting.The obhbasewriter plugin is used to write data into ObHBase. It implements this by using the HBase Java client to connect to a remote HBase service and performing put operations.
Key Features:
rowkeyColumn configuration.The OTSReader plugin is designed to read data from OTS (Table Store) and supports incremental data extraction by allowing users to specify a data range. It currently supports three extraction modes:
全表抽取): Reads the entire table.范围抽取): Reads data within a specific range.指定分片抽取): Reads data from specific partitions.This version also supports reading multi-version data while maintaining compatibility with older configuration files.
hbase20xsqlwriter is a DataX plugin designed for bulk importing data into Phoenix SQL tables (built on HBase).
Unlike standard HBase APIs that require manual data encoding for rowkeys, this plugin uses the Phoenix QueryServer's lightweight client driver to execute UPSERT statements. This approach ensures that data is written via the high-level SQL interface, allowing for automatic synchronization of all associated index tables.
HdfsReader is a DataX plugin designed to read data from the Hadoop Distributed File System (HDFS) and convert it into the DataX transmission protocol for delivery to a Writer.
Supported File Formats:
textfile (text)orcfile (orc)rcfile (rc)sequence file (seq)csv (logical 2D table)Requirements:
SELECT statements based on your configuration (table, column, where) or executes a custom querySql to fetch datasets for downstream writers.