我创建了一个源主题订阅者有这样的输入消息:
{
"ip_router": "",
"ip_lan": "",
"isdn": "2046573688",
"end_datetime": "",
"shop_code": "1000405100",
"reg_type_id": "5131615",
"contract_id": "",
"update_datetime": "20170801171355",
"project": "",
"telecom_service_id": "2",
"local_speed": "",
"password": "",
"price_plan": "",
"vip": "",
"local_price_plan": "",
"sub_id": "1083168000",
"sta_datetime": "20090511152847",
"update_number_1": "1",
"act_status": "000",
"network_class": "",
"limit_usage": "",
"num_reset_zone": "",
"deposit": "",
"create_user": "TUDV_POPBGG",
"num_of_computer": "",
"cust_id": "10922428129",
"status": "2",
"active_datetime": "20090511152102",
"ip_view": "",
"channel_type_id": "",
"ip_wan": "",
"imsi": "452049760887694",
"infrastructure_type": "",
"product_code": "HPN03",
"expire_datetime": "",
"speed": "",
"private_ip": "",
"update_user": "MIGRATE",
"ip_static": "",
"vlan": "",
"sub_type": "",
"create_datetime": "20090511152102",
"is_info_completed": "1",
"pay_type": "2",
"up_link": "",
"promotion_code": "",
"technology": "",
"offer_id": "400001035",
"dev_staff_id": "",
"account_id": "",
"deploy_accept_date": "",
"serial": "8984049767000887694",
"group_id": "",
"ip_gateway": "",
"first_connect": "",
"org_product_code": "MIGRATE",
"start_money": "100000",
"keep_alive": "",
"account": ""
}
然后我在上面创建了一个流和一个表:
CREATE STREAM str_subscriber_json (sub_id VARCHAR,contract_id VARCHAR,cust_id VARCHAR,account_id VARCHAR,telecom_service_id VARCHAR,isdn VARCHAR,imsi VARCHAR,serial VARCHAR,status VARCHAR,product_code VARCHAR,offer_id VARCHAR,act_status VARCHAR,sta_datetime BIGINT,active_datetime BIGINT,sub_type VARCHAR,end_datetime BIGINT,expire_datetime BIGINT,shop_code VARCHAR,dev_staff_id VARCHAR,promotion_code VARCHAR,vip VARCHAR,account VARCHAR,create_datetime BIGINT,create_user VARCHAR,update_datetime BIGINT,update_user VARCHAR,deposit VARCHAR,limit_usage VARCHAR,password VARCHAR,org_product_code VARCHAR,num_reset_zone VARCHAR,start_money VARCHAR,is_info_completed VARCHAR,channel_type_id VARCHAR,first_connect VARCHAR,speed VARCHAR,keep_alive VARCHAR,price_plan VARCHAR,local_price_plan VARCHAR,project VARCHAR,local_speed VARCHAR,technology VARCHAR,network_class VARCHAR,infrastructure_type VARCHAR,deploy_accept_date BIGINT,group_id VARCHAR,ip_static VARCHAR,ip_view VARCHAR,ip_lan VARCHAR,ip_wan VARCHAR,ip_gateway VARCHAR,ip_router VARCHAR,num_of_computer VARCHAR,vlan VARCHAR,up_link VARCHAR,private_ip VARCHAR,pay_type VARCHAR,update_number_1 VARCHAR,reg_type_id VARCHAR,type VARCHAR,update_number VARCHAR) WITH (KAFKA_TOPIC='subscriber', VALUE_FORMAT='JSON');
CREATE TABLE tbl_subscriber_json (sub_id VARCHAR,contract_id VARCHAR,cust_id VARCHAR,account_id VARCHAR,telecom_service_id VARCHAR,isdn VARCHAR,imsi VARCHAR,serial VARCHAR,status VARCHAR,product_code VARCHAR,offer_id VARCHAR,act_status VARCHAR,sta_datetime BIGINT,active_datetime BIGINT,sub_type VARCHAR,end_datetime BIGINT,expire_datetime BIGINT,shop_code VARCHAR,dev_staff_id VARCHAR,promotion_code VARCHAR,vip VARCHAR,account VARCHAR,create_datetime BIGINT,create_user VARCHAR,update_datetime BIGINT,update_user VARCHAR,deposit VARCHAR,limit_usage VARCHAR,password VARCHAR,org_product_code VARCHAR,num_reset_zone VARCHAR,start_money VARCHAR,is_info_completed VARCHAR,channel_type_id VARCHAR,first_connect VARCHAR,speed VARCHAR,keep_alive VARCHAR,price_plan VARCHAR,local_price_plan VARCHAR,project VARCHAR,local_speed VARCHAR,technology VARCHAR,network_class VARCHAR,infrastructure_type VARCHAR,deploy_accept_date BIGINT,group_id VARCHAR,ip_static VARCHAR,ip_view VARCHAR,ip_lan VARCHAR,ip_wan VARCHAR,ip_gateway VARCHAR,ip_router VARCHAR,num_of_computer VARCHAR,vlan VARCHAR,up_link VARCHAR,private_ip VARCHAR,pay_type VARCHAR,update_number_1 VARCHAR,reg_type_id VARCHAR,type VARCHAR,update_number VARCHAR) WITH (KAFKA_TOPIC='subscriber', VALUE_FORMAT='JSON', KEY = 'sub_id' );
我尝试使用 ksql 进行测试:
SELECT * FROM str_subscriber_json;
(当我将新的 json 放入订阅者主题时打印结果)
SELECT * FROM tbl_subscriber_json;
(当我将新的 json 放入订阅者主题时没有显示任何内容)
所以请为我澄清这个案子有什么问题?
非常感谢。