| CloudTable HBase Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "cloudtable",
region = "",
cluster_id = "",
table_name = "",
table_columns = "",
create_if_not_exist = ""
)
| |
| CloudTable OpenTSDB Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "opentsdb",
region = "",
cluster_id = "",
tsdb_metrics = "",
tsdb_timestamps = "",
tsdb_values = "",
tsdb_tags = "",
batch_insert_data_num = ""
)
| |
| CSS Elasticsearch Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "es",
region = "",
cluster_address = "",
es_index = "",
es_type= "",
es_fields= "",
batch_insert_data_num= ""
);
| |
| DCS Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "dcs_redis",
region = "",
cluster_address = "",
password = "",
value_type= "",key_value= ""
);
| |
| DDS Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "dds",
username = "",
password = "",
db_url = "",
field_names = ""
);
| |
| DIS Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "dis",
region = "",
channel = "",
partition_key = "",
encode= "",
field_delimiter= ""
);
| |
| DMS Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH(
type = "kafka",
kafka_bootstrap_servers = "",
kafka_topic = "",
encode = "json"
)
| |
| DWS Sink Stream (JDBC Mode) | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "rds",
username = "",
password = "",
db_url = "",
table_name = ""
);
| |
| DWS Sink Stream (OBS-based Dumping) | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "dws",
region = "",
encode = "",
field_delimiter = "",
quote = "",
db_obs_server = "",
obs_dir = "",
username = "",
password = "",
db_url = "",
table_name = "",
max_record_num_per_file = "",
dump_interval = ""
);
| |
| Edge-Hub Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "edgehub",
topic = "",
encode = "",
json_config = "",
ENABLE_OUTPUT_NULL = "",
field_delimiter = ''
);
| |
| MRS HBase Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "mrs_hbase",
region = "",
cluster_address = "",
table_name = "",
table_columns = "",
illegal_data_table = "",
batch_insert_data_num = "",
action = ""
)
| |
| MRS Kafka Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH(
type = "kafka",
kafka_bootstrap_servers = "",
kafka_topic = "",
encode = "json"
)
| |
| Open-Source Kafka Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH(
type = "kafka",
kafka_bootstrap_servers = "",
kafka_topic = "",
encode = "json"
)
| |
| OBS Sink Stream | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "obs",
region = "",
encode = "",
field_delimiter = "",
row_delimiter = "",
obs_dir = "",
file_prefix = "",
rolling_size = "",
rolling_interval = "",
quote = "",
array_bracket = "",
append = "",
max_record_num_per_file = "",
dump_interval = "",
dis_notice_channel = "",
max_record_num_cache = "",
carbon_properties = ""
)
| |
| RDS Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH (
type = "rds",
username = "",
password = "",
db_url = "",
table_name = ""
);
| |
| SMN Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
WITH(
type = "smn",
region = "",
topic_urn = "",
urn_column = "",
message_subject = "",
message_column = ""
)
| |
| File System Sink Stream | | | CREATE SINK STREAM stream_id (attr_name attr_type (',' attr_name attr_type)* )
[PARTITIONED BY (attr_name (',' attr_name)*]
WITH (
type = "filesystem",
file.path = "obs://bucket/xx",
encode = "parquet",
ak = "",
sk = ""
);
| |
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.