Components
Components
Contents
This module contains components supporting various basic functions, which can be used for developing. Currently, we support 5 functional components:
bitsail-component-clients:- Support conveniently creating some clients, such as KafkaProducer.
- Details can be seen: bitsail_component_clients
bitsail-component-formats-flink:- Support converting different data types (such as hive
Writables) intobitsail rows. - Details can be seen: bitsail_component_format
- Support converting different data types (such as hive
bitsail-conversion-flink:- Support converting
bitsailrows into different data types (such as hiveWritables). - Details can be seen: bitsail_component_conversion
- Support converting
bitsail-flink-row-parser:- Support converting
bytesarray intobitsailrows according to determined format. - Details can be seen: bitsail_component_parser
- Support converting
How to use
Developers can use these modules by importing them in maven dependencies.
<dependency>
<groupId>com.bytedance.bitsail</groupId>
<artifactId>bitsail-xxxxx</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
