Update create_dos_tables.sql

This commit is contained in:
戚岱杰
2021-08-25 06:32:06 +00:00
parent b70d07abd6
commit 8d97e6b635

View File

@@ -1,6 +1,5 @@
CREATE TABLE tsg_galaxy_v3.dos_event_log_local on cluster ck_cluster(
log_id UInt64,
log_id UInt64,
start_time Int64,
end_time Int64,
attack_type String,
@@ -31,3 +30,20 @@ CREATE TABLE tsg_galaxy_v3.dos_event_log on cluster ck_query(
packet_rate Int64,
bit_rate Int64
) ENGINE = Distributed('ck_cluster', 'tsg_galaxy_v3', 'dos_event_log_local', rand());
CREATE TABLE tsg_galaxy_v3.dos_event_log on cluster ck_cluster(
log_id UInt64,
start_time Int64,
end_time Int64,
attack_type String,
severity String,
conditions String,
destination_ip String,
destination_country String,
source_ip_list String,
source_country_list String,
session_rate Int64,
packet_rate Int64,
bit_rate Int64
) ENGINE = Distributed('ck_cluster', 'tsg_galaxy_v3', 'dos_event_log_local', rand());