diff --git a/battery_swap_station/src/model.py b/battery_swap_station/src/model.py index ab5dd0a..c0d1f13 100644 --- a/battery_swap_station/src/model.py +++ b/battery_swap_station/src/model.py @@ -10,8 +10,8 @@ SITE_CODE = "124127" TOPIC_REQUEST = f"HCMS/{SITE_CODE}/M2S/request" TOPIC_RESPONSE = f"HCMS/{SITE_CODE}/S2M/response" -# HTTP 接口配置(示例) -RATE_API_URL = "http://example.com/api/rate_model" # 替换为实际接口地址 + +RATE_API_URL = "http://example.com/api/rate_model" def fetch_rate_model_from_api(): diff --git a/charging_pile_proxy/hejin_forward/battery.py b/charging_pile_proxy/hejin_forward/battery.py new file mode 100644 index 0000000..dd1bf93 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/battery.py @@ -0,0 +1,206 @@ +import paho.mqtt.client as mqtt +import json +import logging +import taos +import binascii +from datetime import datetime + +conn = taos.connect(host="123.6.102.119", user="readonly_user ", password="Aassword123", database="antsev.charge_jiuxing") +print("Connected successfully") +conn.close() + +# 配置日志 +logging.basicConfig( + filename='parsed_data.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeDataParser: + def __init__(self, mqtt_host="123.6.102.119", mqtt_port=1883, mqtt_username="emqx_test", mqtt_password="emqx_test", + tdengine_host="localhost", tdengine_user="root", tdengine_password="taosdata"): + # MQTT 配置 + self.mqtt_client = mqtt.Client(client_id="ChargeDataParser", protocol=mqtt.MQTTv311, + callback_api_version=mqtt.CallbackAPIVersion.VERSION1) + self.mqtt_client.username_pw_set(mqtt_username, mqtt_password) + self.mqtt_client.on_connect = self.on_connect + self.mqtt_client.on_message = self.on_message + self.mqtt_host = mqtt_host + self.mqtt_port = mqtt_port + self.connected = False + + # TDengine 配置 + self.tdengine_host = tdengine_host + self.tdengine_user = tdengine_user + self.tdengine_password = tdengine_password + self.tdengine_conn = None + self.tdengine_cursor = None + + def connect(self): + """连接 MQTT 和 TDengine""" + # 连接 MQTT + try: + self.mqtt_client.connect(self.mqtt_host, self.mqtt_port, 60) + self.mqtt_client.loop_start() + logging.info("Connected to MQTT broker") + except Exception as e: + logging.error(f"MQTT connection error: {str(e)}") + raise + + # 连接 TDengine + try: + self.tdengine_conn = taos.connect( + host=self.tdengine_host, + user=self.tdengine_user, + password=self.tdengine_password, + database="tms_design" + ) + self.tdengine_cursor = self.tdengine_conn.cursor() + logging.info("Connected to TDengine") + except Exception as e: + logging.error(f"TDengine connection error: {str(e)}") + raise + + def on_connect(self, client, userdata, flags, rc): + if rc == 0: + self.connected = True + self.mqtt_client.subscribe("hejin/charging/log", qos=1) + logging.info("Subscribed to hejin/charging/log") + else: + logging.error(f"Failed to connect to MQTT broker with code: {rc}") + + def on_message(self, client, userdata, msg): + """处理接收到的 MQTT 消息""" + try: + payload = msg.payload.decode('utf-8') + data = json.loads(payload) + logging.info(f"Received message: {data}") + + # 解析报文并存储 + sql = self.parse_and_generate_sql(data) + if sql: + self.tdengine_cursor.execute(sql) + self.tdengine_conn.commit() + logging.info(f"Inserted into TDengine: {sql}") + except Exception as e: + logging.error(f"Error processing message: {str(e)}") + + def hex_to_ascii(self, hex_str): + """将 HEX 字符串转为 ASCII""" + try: + return bytes.fromhex(hex_str).decode('ascii').strip('\x00') + except: + return "" + + def parse_bcd_time(self, bcd): + """解析 BCD 码时间(格式:YYMMDDHHMMSS)""" + try: + year = f"20{bcd[0:2]}" # 假设 19 表示 2019 + month = bcd[2:4] + day = bcd[4:6] + hour = bcd[6:8] + minute = bcd[8:10] + second = bcd[10:12] + return f"{year}-{month}-{day}T{hour}:{minute}:{second}+08:00" + except: + return None + + def parse_and_generate_sql(self, data): + """解析报文并生成插入 SQL""" + hex_data = data[3].replace(" ", "") # 移除空格 + pile_id = data[4] # 桩号 + time = data[2].replace(" ", "T") + "+08:00" # 时间 + + # 提取基本字段 + if len(hex_data) < 30: # 最小长度:14字节(HEX表示为28字符)+校验码(2) + logging.warning(f"数据包长度不足: {hex_data}") + return None + + company = hex_data[0:4] # 4A58 + if company != "4A58": + logging.warning(f"无效帧起始: {company}") + return None + + cmd = hex_data[4:6] # 命令码 + length_str = hex_data[24:28] # 数据域长度 + length = int(length_str, 16) * 2 # HEX字符数 + data_domain = hex_data[28:28 + length] if length > 0 else "" + + # 从桩号提取信息 + operator_id = pile_id[0:4] # 运营商编号 + station_id = pile_id[6:12] # 站点编号 + cabinet_no = pile_id[12:16] # 站内桩地址(作为柜号) + + # 初始化默认值 + battery_id = "unknown" + battery_bun_id = "unknown" + battery_faults = "" + created_at = time + updated_at = time + soc = 0.0 + + # 根据命令码解析数据域 + if cmd == "0B": # 平台心跳 + if len(data_domain) >= 12: # 6字节时间 + 1字节超时次数 + time_str = data_domain[0:12] # BCD码时间 + parsed_time = self.parse_bcd_time(time_str) + if parsed_time: + created_at = parsed_time + updated_at = parsed_time + + elif cmd == "25": # 充电信息(表 3.9.9) + if len(data_domain) >= 92: # 确保数据域足够长 + # 充电用户编号(字节 0-15,ASCII) + battery_id = self.hex_to_ascii(data_domain[0:32]) + # 充电电压(字节 16-17,HEX,单位 0.1V) + voltage = int(data_domain[32:36], 16) / 10.0 + # 充电电流(字节 18-19,HEX,单位 0.1A) + current = int(data_domain[36:40], 16) / 10.0 + # 充电电量(字节 20-21,HEX,单位 0.01kWh) + energy = int(data_domain[40:44], 16) / 100.0 + # SOC(字节 22,HEX,单位 %) + soc = int(data_domain[44:46], 16) + # 故障状态(字节 23-26,HEX) + battery_faults = data_domain[46:54] + # 其他字段可以继续解析... + + else: + logging.info(f"未处理的命令码: {cmd}") + return None # 跳过未处理的命令 + + # 构建插入 SQL + sql = ( + "INSERT INTO battery_charge_jiuxing (battery_id, operator_id, station_id, battery_bun_id, cabinet_no, " + "battery_faults, created_at, updated_at, SOC) VALUES " + f"('{battery_id}', '{operator_id}', '{station_id}', '{battery_bun_id}', '{cabinet_no}', " + f"'{battery_faults}', '{created_at}', '{updated_at}', {soc})" + ) + return sql + + def run(self): + """启动程序""" + self.connect() + try: + while True: + pass # 保持程序运行 + except KeyboardInterrupt: + self.mqtt_client.loop_stop() + self.mqtt_client.disconnect() + if self.tdengine_cursor: + self.tdengine_cursor.close() + if self.tdengine_conn: + self.tdengine_conn.close() + logging.info("Program stopped") + +if __name__ == "__main__": + parser = ChargeDataParser( + mqtt_host="123.6.102.119", + mqtt_port=1883, + mqtt_username="emqx_test", + mqtt_password="emqx_test", + tdengine_host="localhost", # 根据实际环境修改 + tdengine_user="root", + tdengine_password="taosdata" + ) + parser.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge.py b/charging_pile_proxy/hejin_forward/charge.py new file mode 100644 index 0000000..c284ba3 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge.py @@ -0,0 +1,214 @@ +import paho.mqtt.client as mqtt +import json +import logging +import taosrest +from datetime import datetime + +# 配置日志 +logging.basicConfig( + filename='charge_jiuxing.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeJiuxingParser: + def __init__(self, mqtt_host="123.6.102.119", mqtt_port=1883, mqtt_username="emqx_test", mqtt_password="emqx_test", + tdengine_url="http://123.6.102.119:6041", tdengine_user="root", tdengine_password="taosdata"): + # MQTT 配置 + self.mqtt_client = mqtt.Client(client_id="ChargeJiuxingParser", protocol=mqtt.MQTTv311, + callback_api_version=mqtt.CallbackAPIVersion.VERSION2) + self.mqtt_client.username_pw_set(mqtt_username, mqtt_password) + self.mqtt_client.on_connect = self.on_connect + self.mqtt_client.on_message = self.on_message + self.mqtt_host = mqtt_host + self.mqtt_port = mqtt_port + self.connected = False + + # TDengine 配置 + self.tdengine_url = tdengine_url + self.tdengine_user = tdengine_user + self.tdengine_password = tdengine_password + self.tdengine_conn = None + + def connect(self): + """连接 MQTT 和 TDengine""" + # 连接 MQTT + try: + self.mqtt_client.connect(self.mqtt_host, self.mqtt_port, 60) + self.mqtt_client.loop_start() + logging.info("Connected to MQTT broker") + except Exception as e: + logging.error(f"MQTT connection error: {str(e)}") + raise + + # 连接 TDengine + try: + self.tdengine_conn = taosrest.connect( + url=self.tdengine_url, + user=self.tdengine_user, + password=self.tdengine_password, + database="tms_design" + ) + logging.info("Connected to TDengine via REST") + except Exception as e: + logging.error(f"TDengine connection error: {str(e)}") + raise + + def on_connect(self, client, userdata, flags, rc, properties=None): + if rc == 0: + self.connected = True + self.mqtt_client.subscribe("hejin/charging/log", qos=1) + logging.info("Subscribed to hejin/charging/log") + else: + logging.error(f"Failed to connect to MQTT broker with code: {rc}") + + def on_message(self, client, userdata, msg, properties=None): + """处理接收到的 MQTT 消息""" + try: + payload = msg.payload.decode('utf-8') + data = json.loads(payload) + logging.info(f"Received message: {data}") + + # 解析报文并存储 + sql = self.parse_and_generate_sql(data) + if sql: + self.tdengine_conn.execute(sql) + logging.info(f"Inserted into TDengine: {sql}") + except Exception as e: + logging.error(f"Error processing message: {str(e)}") + + def hex_to_ascii(self, hex_str): + """将 HEX 字符串转为 ASCII""" + try: + return bytes.fromhex(hex_str).decode('ascii').strip('\x00') + except: + return "" + + def parse_bcd_time(self, bcd): + """解析 BCD 码时间(格式:YYMMDDHHMMSS)""" + try: + year = f"20{bcd[0:2]}" # 假设 19 表示 2019 + month = bcd[2:4] + day = bcd[4:6] + hour = bcd[6:8] + minute = bcd[8:10] + second = bcd[10:12] + return f"{year}-{month}-{day}T{hour}:{minute}:{second}+08:00" + except: + return None + + def parse_and_generate_sql(self, data): + """解析报文并生成插入 SQL""" + hex_data = data[3].replace(" ", "") # 移除空格 + pile_id = data[4] # 桩号 + time = data[2].replace(" ", "T") + "+08:00" # 时间 + + # 提取基本字段 + if len(hex_data) < 30: # 最小长度:14字节(HEX表示为28字符)+校验码(2) + logging.warning(f"数据包长度不足: {hex_data}") + return None + + company = hex_data[0:4] # 4A58 + if company != "4A58": + logging.warning(f"无效帧起始: {company}") + return None + + cmd = hex_data[4:6] # 命令码 + length_str = hex_data[24:28] # 数据域长度 + length = int(length_str, 16) * 2 # HEX字符数 + data_domain = hex_data[28:28 + length] if length > 0 else "" + + # 从桩号提取信息 + operator_id = pile_id[0:4] # 运营商编号 + station_id = pile_id[6:12] # 站点编号 + charger_no = pile_id[12:16] # 站内桩地址(作为充电桩编号) + + # 初始化默认值 + battery_bun_id = "unknown" + org_code = "unknown" + merchant_id = "unknown" + chg_run_status = 0 # 默认待机 + chg_fau_lts = "" + charger_name = "unknown" + charger_power = 0.0 + created_at = time + updated_at = time + battery_bun_no = 0 + + # 根据命令码解析数据域 + if cmd == "0B": # 平台心跳 + if len(data_domain) >= 12: # 6字节时间 + 1字节超时次数 + time_str = data_domain[0:12] # BCD码时间 + parsed_time = self.parse_bcd_time(time_str) + if parsed_time: + created_at = parsed_time + updated_at = parsed_time + chg_run_status = 0 # 心跳表示待机 + + elif cmd == "25": # 充电信息(表 3.9.9) + if len(data_domain) >= 92: # 确保数据域足够长 + # 充电用户编号(字节 0-15,ASCII) + battery_bun_id = self.hex_to_ascii(data_domain[0:32]) + # 充电电压(字节 16-17,HEX,单位 0.1V) + charger_power = int(data_domain[32:36], 16) / 10.0 # 电压作为功率(示例) + # 充电电流(字节 18-19,HEX,单位 0.1A) + current = int(data_domain[36:40], 16) / 10.0 + # 充电电量(字节 20-21,HEX,单位 0.01kWh) + energy = int(data_domain[40:44], 16) / 100.0 + # SOC(字节 22,HEX,单位 %) + soc = int(data_domain[44:46], 16) + # 故障状态(字节 23-26,HEX) + chg_fau_lts = data_domain[46:54] + # 充电状态(字节 27,HEX) + charge_status = int(data_domain[54:56], 16) + # 映射充电状态 + if charge_status == 0: + chg_run_status = 0 # 待机 + elif charge_status == 1: + chg_run_status = 1 # 充电中 + elif charge_status == 2: + chg_run_status = 2 # 充电结束 + elif charge_status == 3: + chg_run_status = 3 # 充电异常 + else: + chg_run_status = 4 # 故障 + + else: + logging.info(f"未处理的命令码: {cmd}") + return None # 跳过未处理的命令 + + # 构建插入 SQL + sql = ( + "INSERT INTO charge_jiuxing (charger_no, battery_bun_id, station_id, operator_id, org_code, " + "merchant_id, chg_run_status, chg_fau_lts, charger_name, charger_power, created_at, updated_at, battery_bun_no) VALUES " + f"('{charger_no}', '{battery_bun_id}', '{station_id}', '{operator_id}', '{org_code}', " + f"'{merchant_id}', {chg_run_status}, '{chg_fau_lts}', '{charger_name}', {charger_power}, " + f"'{created_at}', '{updated_at}', {battery_bun_no})" + ) + return sql + + def run(self): + """启动程序""" + self.connect() + try: + while True: + pass # 保持程序运行 + except KeyboardInterrupt: + self.mqtt_client.loop_stop() + self.mqtt_client.disconnect() + if self.tdengine_conn: + self.tdengine_conn.close() + logging.info("Program stopped") + +if __name__ == "__main__": + parser = ChargeJiuxingParser( + mqtt_host="123.6.102.119", + mqtt_port=1883, + mqtt_username="emqx_test", + mqtt_password="emqx_test", + tdengine_url="http://localhost:6041", # 根据实际环境修改 + tdengine_user="root", + tdengine_password="taosdata" + ) + parser.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_gun.log b/charging_pile_proxy/hejin_forward/charge_gun.log new file mode 100644 index 0000000..31efeff --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_gun.log @@ -0,0 +1,3359 @@ +2025-03-24 10:04:32,439 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:04:32,439 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:04:32,439 - INFO - 数据库连接已关闭 +2025-03-24 11:08:42,195 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 11:08:42,195 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 11:08:42,195 - INFO - 数据库连接已关闭 +2025-03-24 12:07:07,351 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 12:07:08,904 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 12:07:08,905 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 12:07:08,906 - INFO - 数据库连接已关闭 +2025-03-24 12:09:22,982 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 12:09:24,538 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 12:09:24,538 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 12:09:24,538 - INFO - 数据库连接已关闭 +2025-03-24 12:11:16,701 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 12:11:18,243 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 12:11:18,243 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 12:11:18,243 - INFO - 数据库连接已关闭 +2025-03-24 15:05:54,117 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 15:05:55,684 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 15:05:55,684 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 15:05:55,684 - INFO - 数据库连接已关闭 +2025-03-24 15:08:03,772 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 15:08:05,317 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 15:08:05,317 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 15:08:05,317 - INFO - 数据库连接已关闭 +2025-03-24 15:09:55,335 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 15:09:56,877 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 15:09:56,877 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 15:09:56,877 - INFO - 数据库连接已关闭 +2025-03-24 15:13:31,241 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev', 'protocol': 'REST'} +2025-03-24 15:13:32,799 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 15:13:32,799 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 15:13:32,799 - INFO - 数据库连接已关闭 +2025-03-24 16:29:40,730 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 16:30:12,048 - INFO - 成功连接到TDengine +2025-03-24 16:30:12,104 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:30:12,104 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 16:30:12,305 - INFO - 成功连接到PostgreSQL +2025-03-24 16:30:12,305 - ERROR - 迁移失败: 'ChargeGunMigrator' object has no attribute 'create_pg_table' +2025-03-24 16:30:12,305 - INFO - 数据库连接已关闭 +2025-03-24 16:32:22,264 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 16:32:53,578 - INFO - 成功连接到TDengine +2025-03-24 16:32:53,618 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:32:53,618 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 16:32:53,762 - INFO - 成功连接到PostgreSQL +2025-03-24 16:32:53,762 - ERROR - 迁移失败: 'ChargeGunMigrator' object has no attribute 'create_pg_table' +2025-03-24 16:32:53,762 - INFO - 数据库连接已关闭 +2025-03-24 16:39:24,486 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 16:39:44,727 - INFO - 成功连接到TDengine +2025-03-24 16:39:44,764 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:39:44,764 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 16:39:44,900 - INFO - 成功连接到PostgreSQL +2025-03-24 16:39:44,937 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:39:54,977 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:05,015 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:15,051 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:25,088 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:35,144 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:45,181 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:40:55,222 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:05,264 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:15,309 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:25,347 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:35,392 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:45,430 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:41:55,470 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:05,505 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:15,543 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:25,591 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:35,636 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:45,684 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:42:55,722 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:43:05,764 - ERROR - 迁移过程中出错: [0x2802]: Invalid parameter data type : max +2025-03-24 16:43:05,881 - INFO - 数据库连接已关闭 +2025-03-24 16:55:44,524 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 16:56:04,734 - INFO - 成功连接到TDengine +2025-03-24 16:56:04,774 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:56:04,774 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 16:56:04,890 - INFO - 成功连接到PostgreSQL +2025-03-24 16:56:04,930 - INFO - 初始化last_processed_ts: 2025-03-24 16:56:02.900000 +2025-03-24 16:56:04,974 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:56:15,085 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:15,104 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,104 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:15,120 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,120 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:15,141 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,141 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:15,156 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,156 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:15,173 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,173 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:15,190 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,190 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:15,208 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,208 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:15,225 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,225 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:15,242 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,242 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:15,259 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,259 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:15,274 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,275 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:15,291 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,291 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:15,306 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,307 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:15,323 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,323 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:15,338 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,338 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:15,355 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,355 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:15,372 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,372 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:15,387 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,437 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:15,454 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,454 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:15,468 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,469 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:15,484 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,484 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:15,500 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,500 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:15,522 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,522 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:15,539 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,539 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:15,553 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,553 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:15,570 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,570 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:15,587 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,587 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:15,602 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,603 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:15,620 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,620 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:15,637 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,637 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:15,653 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,653 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:15,668 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,668 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:15,684 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,685 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:15,700 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,700 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:15,716 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,716 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:15,731 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,773 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:15,789 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,789 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:15,805 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,805 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:15,820 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,820 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:15,837 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,837 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:15,856 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,856 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:15,873 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,873 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:15,889 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,889 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:15,906 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,906 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:15,923 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,923 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:15,939 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,939 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:15,956 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,956 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:15,973 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,973 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:15,991 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:15,991 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:16,008 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,014 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:16,032 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,032 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:16,046 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,046 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:16,060 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,062 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:16,076 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,076 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:16,092 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,143 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:16,159 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,159 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:16,177 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,177 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:16,192 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,192 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:16,208 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,208 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:16,225 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,225 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:16,240 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,240 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:16,255 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,255 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:16,271 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,271 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:16,286 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,286 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:16,303 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,303 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:16,318 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,318 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:16,333 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,333 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:16,349 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,349 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:16,364 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,364 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:16,380 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,380 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:16,395 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,395 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:16,412 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,412 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:16,427 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,427 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:16,442 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,484 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:16,499 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,500 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:16,516 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,516 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:16,531 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,531 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:16,547 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,547 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:16,563 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,563 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:16,579 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,579 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:16,595 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,595 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:16,668 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,668 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:16,682 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,682 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:16,699 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,700 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:16,715 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,715 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:16,732 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,732 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:16,747 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,747 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:16,766 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,766 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:16,782 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,782 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:16,799 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,799 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:16,815 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,815 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:16,831 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,831 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:16,848 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,892 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:16,908 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,908 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:16,923 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,923 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:16,938 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,938 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:16,956 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,956 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:16,973 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,973 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:16,988 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:16,988 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:17,003 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,003 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:17,018 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,018 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:17,033 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,033 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:17,048 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,048 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:17,064 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,064 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:17,080 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,080 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:17,096 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,097 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:17,113 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,114 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:17,129 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,129 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:17,145 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,145 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:17,161 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,161 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:17,176 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,176 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:17,191 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,236 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:17,260 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,260 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:17,277 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,277 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:17,293 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,294 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:17,309 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,309 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:17,324 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,324 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:17,340 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,340 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:17,357 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,357 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:17,375 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,375 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:17,393 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,393 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:17,409 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,409 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:17,425 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,425 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:17,440 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,440 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:17,457 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,457 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:17,476 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,476 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:17,490 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,492 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:17,507 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,507 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:17,523 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,523 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:17,540 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,540 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:17,556 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,556 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:17,571 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,615 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:17,631 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,631 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:17,645 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,645 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:17,661 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,661 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:17,675 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,675 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:17,692 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,693 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:17,711 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,711 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:17,726 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,726 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:17,742 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,742 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:17,758 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,758 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:17,773 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,774 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:17,789 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,789 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:17,805 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,805 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:17,823 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,823 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:17,838 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,839 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:17,855 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,855 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:17,871 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,871 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:17,890 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,890 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:17,907 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,907 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:17,923 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,923 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:17,938 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:17,985 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:18,001 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,001 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:18,016 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,016 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:18,032 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,032 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:18,048 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,048 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:18,062 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,062 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:18,078 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,078 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:18,095 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,095 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:18,112 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,112 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:18,128 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,128 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:18,143 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,143 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:18,158 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,158 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:18,173 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,173 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:18,188 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,189 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:18,206 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,206 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:18,221 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,222 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:18,237 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,237 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:18,252 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,252 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:18,267 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,268 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:18,283 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,283 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:18,307 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,307 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:18,323 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,375 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:18,392 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,392 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:18,407 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,407 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:18,425 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,425 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:18,441 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,441 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:18,457 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,457 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:18,473 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,473 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:18,489 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,489 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:18,507 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,507 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:18,525 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,525 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:18,542 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,542 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:18,557 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,557 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:18,571 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,572 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:18,588 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,588 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:18,604 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,605 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:18,620 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,620 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:18,637 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,637 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:18,652 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,652 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:18,667 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,667 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:18,684 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,684 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:18,700 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,700 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:18,718 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,764 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:18,778 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,779 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:18,794 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,794 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:18,809 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,809 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:18,825 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,826 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:18,841 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,841 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:18,855 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,855 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:18,872 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,872 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:18,888 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,888 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:18,904 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,904 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:18,922 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,922 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:18,939 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,939 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:18,954 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,955 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:18,971 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,971 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:18,987 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:18,987 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:19,002 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,002 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:19,018 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,019 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:19,035 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,035 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:19,050 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,050 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:19,066 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,066 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:19,082 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,082 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:19,098 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,098 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:19,115 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,163 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:19,178 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,178 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:19,193 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,193 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:19,210 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,210 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:19,225 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,225 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:19,244 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,244 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:19,260 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,260 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:19,276 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,276 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:19,292 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,292 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:19,308 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,308 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:19,323 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,323 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:19,339 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,339 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:19,355 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,355 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:19,371 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,371 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:19,388 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,388 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:19,403 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,403 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:19,419 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,419 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:19,435 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,435 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:19,450 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,450 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:19,465 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,465 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:19,482 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,482 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:19,497 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,497 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:19,514 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,514 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:19,530 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,530 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:19,546 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,592 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:19,608 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,608 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:19,623 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,623 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:19,639 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,640 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:19,655 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,655 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:19,672 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,672 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:19,688 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,688 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:19,708 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,708 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:19,725 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,725 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:19,741 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,742 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:19,758 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,758 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:19,774 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,774 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:19,791 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,791 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:19,807 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,807 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:19,823 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,823 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:19,839 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,839 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:19,855 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,855 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:19,872 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,872 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:19,888 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,888 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:19,905 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,905 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:19,920 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,920 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:19,935 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,936 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:19,950 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,952 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:19,968 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:19,968 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:19,983 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,027 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:20,046 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,046 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:20,062 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,062 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:20,078 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,079 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:20,094 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,094 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:20,110 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,110 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:20,126 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,126 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:20,143 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,143 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:20,159 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,159 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:20,175 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,175 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:20,191 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,191 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:20,207 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,207 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:20,225 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,225 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:20,242 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,242 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:20,257 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,257 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:20,273 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,273 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:20,290 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,290 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:20,306 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,306 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:20,322 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,322 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:20,337 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,337 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:20,352 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,352 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:20,368 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,369 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:20,384 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,384 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:20,400 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,400 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:20,417 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,418 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:20,436 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,436 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:20,453 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,453 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:20,472 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,531 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:20,550 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,550 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:20,567 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,567 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:20,583 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,583 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:20,600 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,600 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:20,617 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,617 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:20,633 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,633 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:20,653 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,653 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:20,670 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,670 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:20,688 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,688 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:20,704 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,704 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:20,719 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,720 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:20,737 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,737 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:20,752 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,753 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:20,768 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,768 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:20,784 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,784 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:20,800 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,800 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:20,818 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,818 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:20,847 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,847 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:20,874 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,874 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:20,890 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,890 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:20,907 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,907 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:20,922 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,922 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:20,938 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,938 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:20,954 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,954 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:20,970 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,970 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:20,989 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:20,989 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:21,013 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,013 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:21,028 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,069 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:21,084 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,084 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:21,101 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,101 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:21,117 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,118 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:21,134 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,134 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:21,150 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,150 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:21,169 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,169 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:21,187 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,188 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:21,208 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,208 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:21,225 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,225 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:21,240 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,240 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:21,257 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,257 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:21,272 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,273 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:21,290 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,290 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:21,306 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,306 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:21,324 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,324 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:21,339 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,339 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:21,355 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,355 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:21,373 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,374 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:21,389 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,389 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:21,405 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,406 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:21,423 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,423 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:21,442 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,442 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:21,463 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,464 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:21,479 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,479 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:21,497 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,497 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:21,513 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,513 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:21,529 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,529 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:21,547 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,547 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:21,564 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,564 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:21,582 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,626 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:21,644 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,644 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:21,659 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,659 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:21,678 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,678 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:21,696 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,696 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:21,716 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,716 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:21,734 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,734 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:21,751 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,751 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:21,772 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,772 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:21,789 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,789 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:21,805 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,805 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:21,820 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,820 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:21,837 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,837 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:21,856 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,856 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:21,872 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,872 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:21,888 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,888 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:21,907 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,907 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:21,924 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,924 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:21,939 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,939 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:21,956 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,956 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:21,972 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,972 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:21,988 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:21,988 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:22,003 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,003 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:22,019 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,019 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:22,037 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,037 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:22,052 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,053 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:22,067 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,067 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:22,083 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,084 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:22,098 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,099 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:22,114 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,114 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:22,130 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,172 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:22,188 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,188 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:22,207 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,207 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:22,224 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,224 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:22,240 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,240 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:22,255 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,255 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:22,271 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,271 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:22,287 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,287 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:22,308 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,308 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:22,326 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,326 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:22,342 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,342 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:22,360 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,360 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:22,375 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,375 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:22,390 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,390 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:22,407 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,407 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:22,423 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,423 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:22,439 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,439 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:22,453 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,453 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:22,472 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,472 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:22,487 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,487 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:22,502 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,502 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:22,519 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,519 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:22,535 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,535 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:22,550 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,551 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:22,567 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,567 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:22,583 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,583 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:22,597 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,598 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:22,615 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,615 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:22,632 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,632 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:22,649 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,649 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:22,663 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,707 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:22,723 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,723 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:22,739 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,740 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:22,756 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,756 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:22,772 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,772 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:22,787 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,787 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:22,804 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,804 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:22,821 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,821 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:22,836 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,836 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:22,850 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,851 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:22,867 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,867 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:22,883 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,883 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:22,898 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,899 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:22,915 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,915 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:22,932 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,932 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:22,950 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,950 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:22,965 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,965 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:22,982 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,982 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:22,998 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:22,998 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:23,016 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,016 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:23,033 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,033 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:23,049 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,049 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:23,065 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,065 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:23,081 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,081 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:23,097 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,097 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:23,113 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,113 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:23,128 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,128 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:23,144 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,144 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:23,159 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,159 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:23,174 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,174 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:23,191 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,191 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:23,207 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,253 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:23,268 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,269 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:23,285 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,285 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:23,301 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,301 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:23,317 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,317 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:23,332 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,333 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:23,349 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,349 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:23,364 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,364 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:23,386 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,386 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:23,402 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,402 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:23,417 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,418 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:23,433 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,433 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:23,449 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,449 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:23,465 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,466 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:23,497 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,498 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:23,513 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,513 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:23,530 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,530 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:23,547 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,547 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:23,564 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,564 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:23,579 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,579 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:23,595 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,595 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:23,612 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,612 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:23,628 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,628 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:23,644 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,644 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:23,659 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,659 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:23,675 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,675 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:23,691 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,691 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:23,708 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,708 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:23,723 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,723 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:23,738 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,738 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:23,753 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,753 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:23,769 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,769 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:23,784 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,834 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:23,851 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,851 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:23,865 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,865 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:23,882 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,882 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:23,898 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,898 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:23,915 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,915 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:23,930 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,930 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:23,946 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,946 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:23,963 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,963 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:23,979 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,979 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:23,996 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:23,996 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:24,012 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,012 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:24,028 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,028 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:24,044 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,044 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:24,059 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,059 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:24,081 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,081 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:24,096 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,097 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:24,112 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,112 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:24,128 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,128 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:24,145 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,145 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:24,160 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,160 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:24,176 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,177 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:24,193 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,193 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:24,209 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,209 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:24,225 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,225 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:24,243 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,243 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:24,258 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,258 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:24,275 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,275 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:24,290 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,290 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:24,305 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,305 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:24,320 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,320 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:24,336 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,336 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:24,352 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,399 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:24,414 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,414 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:24,430 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,430 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:24,446 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,447 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:24,463 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,463 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:24,478 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,478 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:24,493 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,493 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:24,508 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,508 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:24,525 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,525 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:24,540 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,540 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:24,556 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,556 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:24,572 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,572 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:24,587 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,587 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:24,603 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,603 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:24,622 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,622 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:24,637 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,637 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:24,652 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,652 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:24,670 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,670 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:24,685 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,685 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:24,701 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,701 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:24,717 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,717 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:24,733 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,733 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:24,749 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,749 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:24,764 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,764 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:24,778 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,779 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:24,796 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,796 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:24,810 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,810 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:24,828 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,828 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:24,843 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,843 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:24,858 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,858 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:24,873 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,873 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:24,890 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,892 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:24,906 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,906 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:24,921 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,961 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:24,978 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,978 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:24,992 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:24,992 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:25,008 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,008 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:25,026 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,026 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:25,042 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,042 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:25,058 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,058 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:25,073 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,073 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:25,089 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,089 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:25,106 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,106 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:25,122 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,122 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:25,138 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,138 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:25,153 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,153 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:25,173 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,173 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:25,189 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,189 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:25,209 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,209 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:25,225 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,225 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:25,240 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,240 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:25,257 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,257 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:25,273 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,273 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:25,287 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,287 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:25,304 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,304 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:25,319 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,319 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:25,336 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,336 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:25,353 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,353 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:25,367 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,367 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:25,383 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,383 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:25,398 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,398 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:25,416 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,416 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:25,430 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,430 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:25,447 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,447 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:25,464 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,464 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:25,479 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,479 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:25,494 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,494 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:25,509 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,509 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:25,525 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,525 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:25,540 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,648 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:25,665 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,665 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:25,682 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,682 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:25,697 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,697 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:25,713 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,713 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:25,729 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,730 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:25,745 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,745 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:25,760 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,760 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:25,777 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,777 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:25,793 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,793 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:25,807 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,807 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:25,823 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,823 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:25,839 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,839 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:25,854 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,854 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:25,870 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,870 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:25,884 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,884 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:25,902 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,902 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:25,918 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,918 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:25,933 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,933 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:25,949 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,949 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:25,963 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,963 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:25,984 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:25,984 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:26,001 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,001 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:26,015 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,015 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:26,030 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,030 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:26,046 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,047 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:26,062 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,062 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:26,077 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,077 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:26,096 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,096 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:26,124 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,124 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:26,140 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,140 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:26,156 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,157 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:26,173 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,173 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:26,188 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,188 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:26,203 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,203 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:26,219 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,219 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:26,235 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,235 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:26,252 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,252 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:26,273 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,314 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:26,329 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,329 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:26,345 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,345 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:26,361 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,361 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:26,377 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,377 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:26,393 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,393 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:26,409 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,409 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:26,426 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,426 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:26,446 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,446 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:26,464 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,464 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:26,479 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,479 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:26,496 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,497 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:26,512 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,512 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:26,529 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,529 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:26,545 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,545 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:26,562 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,562 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:26,578 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,578 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:26,594 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,594 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:26,610 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,610 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:26,690 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,690 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:26,707 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,707 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:26,724 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,724 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:26,739 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,739 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:26,754 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,754 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:26,770 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,772 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:26,787 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,787 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:26,804 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,804 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:26,820 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,820 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:26,835 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,835 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:26,851 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,851 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:26,866 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,866 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:26,882 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,882 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:26,897 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,898 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:26,913 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,913 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:26,929 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,929 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:26,945 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,945 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:26,960 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,960 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:26,990 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:26,990 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:27,006 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,006 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:27,024 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,065 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:27,082 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,082 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:27,100 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,100 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:27,115 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,116 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:27,130 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,130 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:27,146 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,146 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:27,165 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,165 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:27,182 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,182 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:27,200 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,200 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:27,216 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,216 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:27,230 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,230 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:27,249 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,249 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:27,264 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,264 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:27,284 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,284 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:27,299 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,300 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:27,315 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,315 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:27,330 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,330 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:27,346 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,347 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:27,363 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,363 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:27,378 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,379 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:27,394 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,394 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:27,409 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,409 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:27,428 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,428 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:27,447 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,447 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:27,464 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,464 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:27,480 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,480 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:27,495 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,495 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:27,510 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,510 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:27,525 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,525 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:27,540 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,540 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:27,555 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,555 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:27,569 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,569 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:27,587 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,587 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:27,602 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,602 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:27,619 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,619 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:27,634 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,635 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:27,654 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,654 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:27,670 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,670 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:27,686 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,686 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:27,704 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,750 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:27,765 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,765 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:27,781 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,781 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:27,795 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,795 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:27,810 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,810 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:27,825 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,825 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:27,841 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,841 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:27,858 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,858 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:27,872 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,872 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:27,888 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,888 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:27,905 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,905 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:27,924 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,924 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:27,941 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,941 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:27,958 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,958 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:27,975 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,975 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:27,991 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:27,991 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:28,006 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,006 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:28,022 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,022 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:28,037 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,037 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:28,053 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,053 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:28,069 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,069 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:28,084 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,084 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:28,099 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,099 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:28,114 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,115 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:28,131 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,131 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:28,147 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,147 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:28,161 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,161 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:28,183 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,183 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:28,205 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,205 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:28,222 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,222 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:28,237 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,238 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:28,255 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,255 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:28,269 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,270 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:28,285 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,285 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:28,305 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,305 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:28,320 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,320 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:28,334 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,335 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:28,350 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,350 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:28,365 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,365 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:28,379 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,425 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:28,441 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,441 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:28,456 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,457 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:28,471 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,472 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:28,486 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,486 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:28,503 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,503 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:28,518 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,518 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:28,534 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,534 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:28,553 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,553 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:28,570 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,570 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:28,586 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,586 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:28,603 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,603 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:28,618 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,618 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:28,634 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,634 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:28,651 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,651 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:28,668 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,668 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:28,685 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,685 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:28,699 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,699 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:28,715 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,716 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:28,730 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,730 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:28,746 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,746 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:28,762 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,762 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:28,778 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,778 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:28,794 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,794 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:28,809 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,809 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:28,824 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,824 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:28,839 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,839 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:28,855 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,855 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:28,872 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,872 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:28,888 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,888 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:28,904 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,904 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:28,920 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,920 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:28,935 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,935 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:28,950 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,950 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:28,965 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,965 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:28,981 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,981 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:28,995 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:28,995 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:29,010 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,010 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:29,025 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,026 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:29,041 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,041 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:29,058 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,058 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:29,073 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,115 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:29,132 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,132 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:29,148 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,148 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:29,163 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,163 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:29,178 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,178 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:29,193 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,193 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:29,207 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,207 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:29,223 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,223 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:29,238 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,238 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:29,254 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,254 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:29,270 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,270 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:29,284 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,284 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:29,299 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,299 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:29,313 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,313 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:29,329 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,329 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:29,344 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,344 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:29,360 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,360 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:29,375 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,375 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:29,392 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,392 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:29,408 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,408 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:29,421 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,422 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:29,440 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,440 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:29,455 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,455 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:29,472 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,472 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:29,486 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,486 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:29,502 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,502 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:29,517 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,517 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:29,533 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,533 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:29,548 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,548 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:29,565 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,565 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:29,579 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,579 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:29,594 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,594 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:29,610 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,610 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:29,625 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,625 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:29,640 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,640 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:29,658 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,658 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:29,673 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,674 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:29,690 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,690 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:29,708 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,708 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:29,723 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,723 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:29,738 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,738 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:29,754 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,754 - INFO - 处理记录: ts=2025-03-24 16:56:27.624000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 38 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 16:56:29,770 - ERROR - 处理时间戳为 2025-03-24 16:56:27.624000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,771 - INFO - 处理记录: ts=2025-03-24 16:56:27.707000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 1B 01 9F 09 00 00 3D +2025-03-24 16:56:29,785 - ERROR - 处理时间戳为 2025-03-24 16:56:27.707000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,829 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:29,845 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,845 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:29,860 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,862 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:29,876 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,876 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:29,893 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,893 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:29,907 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,907 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:29,922 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,922 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:29,936 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,936 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:29,952 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,952 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:29,967 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,968 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:29,983 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,983 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:29,999 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:29,999 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:30,015 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,015 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:30,031 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,031 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:30,047 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,047 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:30,064 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,064 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:30,079 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,079 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:30,093 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,094 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:30,110 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,110 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:30,126 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,126 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:30,142 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,142 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:30,158 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,158 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:30,174 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,174 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:30,190 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,190 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:30,205 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,205 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:30,220 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,220 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:30,237 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,237 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:30,254 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,255 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:30,270 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,270 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:30,284 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,285 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:30,300 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,300 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:30,317 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,317 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:30,332 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,332 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:30,348 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,348 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:30,363 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,363 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:30,381 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,381 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:30,395 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,395 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:30,411 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,411 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:30,425 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,425 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:30,442 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,442 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:30,460 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,460 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:30,477 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,477 - INFO - 处理记录: ts=2025-03-24 16:56:27.624000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 38 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 16:56:30,494 - ERROR - 处理时间戳为 2025-03-24 16:56:27.624000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,494 - INFO - 处理记录: ts=2025-03-24 16:56:27.707000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 1B 01 9F 09 00 00 3D +2025-03-24 16:56:30,510 - ERROR - 处理时间戳为 2025-03-24 16:56:27.707000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,561 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:30,575 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,576 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:30,592 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,592 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:30,607 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,608 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:30,624 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,624 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:30,639 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,639 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:30,654 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,654 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:30,669 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,669 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:30,690 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,690 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:30,706 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,706 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:30,722 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,722 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:30,737 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,737 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:30,752 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,753 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:30,767 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,767 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:30,782 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,783 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:30,799 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,799 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:30,813 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,813 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:30,829 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,830 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:30,845 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,845 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:30,860 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,860 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:30,877 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,877 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:30,892 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,892 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:30,907 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,907 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:30,921 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,921 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:30,936 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,937 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:30,954 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,954 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:30,969 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,969 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:30,985 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,985 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:30,999 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:30,999 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:31,015 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,015 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:31,029 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,029 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:31,045 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,045 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:31,061 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,061 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:31,079 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,079 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:31,096 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,096 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:31,111 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,111 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:31,127 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,127 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:31,143 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,143 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:31,159 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,159 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:31,174 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,174 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:31,190 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,190 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:31,205 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,205 - INFO - 处理记录: ts=2025-03-24 16:56:27.624000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 38 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 16:56:31,220 - ERROR - 处理时间戳为 2025-03-24 16:56:27.624000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,220 - INFO - 处理记录: ts=2025-03-24 16:56:27.707000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 1B 01 9F 09 00 00 3D +2025-03-24 16:56:31,236 - ERROR - 处理时间戳为 2025-03-24 16:56:27.707000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,236 - INFO - 处理记录: ts=2025-03-24 16:56:28.925000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 9B +2025-03-24 16:56:31,250 - ERROR - 处理时间戳为 2025-03-24 16:56:28.925000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,250 - INFO - 处理记录: ts=2025-03-24 16:56:28.951000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 1D 00 08 +2025-03-24 16:56:31,264 - ERROR - 处理时间戳为 2025-03-24 16:56:28.951000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,308 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:31,325 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,325 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:31,340 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,340 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:31,356 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,356 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:31,373 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,373 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:31,389 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,390 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:31,406 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,406 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:31,421 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,421 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:31,436 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,436 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:31,450 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,452 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:31,466 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,466 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:31,486 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,486 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:31,503 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,503 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:31,518 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,518 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:31,535 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,536 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:31,550 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,550 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:31,565 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,565 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:31,582 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,583 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:31,599 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,599 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:31,615 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,615 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:31,631 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,631 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:31,646 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,646 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:31,660 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,660 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:31,676 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,677 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:31,693 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,693 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:31,709 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,709 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:31,725 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,725 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:31,740 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,740 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:31,756 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,756 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:31,773 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,773 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:31,789 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,789 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:31,805 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,805 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:31,820 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,820 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:31,836 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,836 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:31,857 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,857 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:31,873 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,873 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:31,888 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,888 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:31,904 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,904 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:31,918 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,918 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:31,936 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,936 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:31,951 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,951 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:31,966 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,966 - INFO - 处理记录: ts=2025-03-24 16:56:27.624000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 38 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 16:56:31,981 - ERROR - 处理时间戳为 2025-03-24 16:56:27.624000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,981 - INFO - 处理记录: ts=2025-03-24 16:56:27.707000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 1B 01 9F 09 00 00 3D +2025-03-24 16:56:31,998 - ERROR - 处理时间戳为 2025-03-24 16:56:27.707000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:31,998 - INFO - 处理记录: ts=2025-03-24 16:56:28.925000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 9B +2025-03-24 16:56:32,013 - ERROR - 处理时间戳为 2025-03-24 16:56:28.925000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,013 - INFO - 处理记录: ts=2025-03-24 16:56:28.951000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 1D 00 08 +2025-03-24 16:56:32,030 - ERROR - 处理时间戳为 2025-03-24 16:56:28.951000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,030 - INFO - 处理记录: ts=2025-03-24 16:56:29.784000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 10 38 1F 01 02 01 01 01 01 63 +2025-03-24 16:56:32,045 - ERROR - 处理时间戳为 2025-03-24 16:56:29.784000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,090 - INFO - 处理记录: ts=2025-03-24 16:56:03.601000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 03 00 42 +2025-03-24 16:56:32,104 - ERROR - 处理时间戳为 2025-03-24 16:56:03.601000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,104 - INFO - 处理记录: ts=2025-03-24 16:56:03.614000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B9 +2025-03-24 16:56:32,176 - ERROR - 处理时间戳为 2025-03-24 16:56:03.614000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,176 - INFO - 处理记录: ts=2025-03-24 16:56:04.729000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 04 00 00 02 01 01 00 00 00 01 01 00 00 00 47 +2025-03-24 16:56:32,195 - ERROR - 处理时间戳为 2025-03-24 16:56:04.729000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,195 - INFO - 处理记录: ts=2025-03-24 16:56:05.727000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 16:56:32,212 - ERROR - 处理时间戳为 2025-03-24 16:56:05.727000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,212 - INFO - 处理记录: ts=2025-03-24 16:56:06.004000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 0E 01 02 01 01 01 01 14 +2025-03-24 16:56:32,228 - ERROR - 处理时间戳为 2025-03-24 16:56:06.004000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,228 - INFO - 处理记录: ts=2025-03-24 16:56:06.184000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 0D 01 02 01 01 01 01 43 +2025-03-24 16:56:32,244 - ERROR - 处理时间戳为 2025-03-24 16:56:06.184000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,244 - INFO - 处理记录: ts=2025-03-24 16:56:06.323000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 06 01 02 01 01 01 01 5E +2025-03-24 16:56:32,260 - ERROR - 处理时间戳为 2025-03-24 16:56:06.323000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,260 - INFO - 处理记录: ts=2025-03-24 16:56:06.344000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 3A +2025-03-24 16:56:32,275 - ERROR - 处理时间戳为 2025-03-24 16:56:06.344000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,275 - INFO - 处理记录: ts=2025-03-24 16:56:07.360000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 16:56:32,292 - ERROR - 处理时间戳为 2025-03-24 16:56:07.360000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,292 - INFO - 处理记录: ts=2025-03-24 16:56:07.466000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 07 01 9F 09 00 00 21 +2025-03-24 16:56:32,308 - ERROR - 处理时间戳为 2025-03-24 16:56:07.466000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,308 - INFO - 处理记录: ts=2025-03-24 16:56:08.414000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 38 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 10 +2025-03-24 16:56:32,323 - ERROR - 处理时间戳为 2025-03-24 16:56:08.414000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,323 - INFO - 处理记录: ts=2025-03-24 16:56:08.459000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 38 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 B0 +2025-03-24 16:56:32,337 - ERROR - 处理时间戳为 2025-03-24 16:56:08.459000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,337 - INFO - 处理记录: ts=2025-03-24 16:56:09.331000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 09 00 7A +2025-03-24 16:56:32,353 - ERROR - 处理时间戳为 2025-03-24 16:56:09.331000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,353 - INFO - 处理记录: ts=2025-03-24 16:56:10.069000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 38 0A 00 88 +2025-03-24 16:56:32,369 - ERROR - 处理时间戳为 2025-03-24 16:56:10.069000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,369 - INFO - 处理记录: ts=2025-03-24 16:56:11.537000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 13 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC +2025-03-24 16:56:32,384 - ERROR - 处理时间戳为 2025-03-24 16:56:11.537000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,384 - INFO - 处理记录: ts=2025-03-24 16:56:12.434000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 29 00 02 01 01 01 01 AA +2025-03-24 16:56:32,400 - ERROR - 处理时间戳为 2025-03-24 16:56:12.434000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,400 - INFO - 处理记录: ts=2025-03-24 16:56:12.867000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 0C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:56:32,416 - ERROR - 处理时间戳为 2025-03-24 16:56:12.867000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,416 - INFO - 处理记录: ts=2025-03-24 16:56:13.089000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 0D 00 A3 03 00 00 C9 +2025-03-24 16:56:32,432 - ERROR - 处理时间戳为 2025-03-24 16:56:13.089000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,432 - INFO - 处理记录: ts=2025-03-24 16:56:14.056000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 38 0E 00 1B +2025-03-24 16:56:32,448 - ERROR - 处理时间戳为 2025-03-24 16:56:14.056000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,448 - INFO - 处理记录: ts=2025-03-24 16:56:15.563000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 38 0F 00 58 +2025-03-24 16:56:32,464 - ERROR - 处理时间戳为 2025-03-24 16:56:15.563000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,464 - INFO - 处理记录: ts=2025-03-24 16:56:16.349000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 10 00 02 01 01 01 01 49 +2025-03-24 16:56:32,480 - ERROR - 处理时间戳为 2025-03-24 16:56:16.349000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,480 - INFO - 处理记录: ts=2025-03-24 16:56:17.306000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A7 +2025-03-24 16:56:32,496 - ERROR - 处理时间戳为 2025-03-24 16:56:17.306000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,496 - INFO - 处理记录: ts=2025-03-24 16:56:17.488000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D7 +2025-03-24 16:56:32,517 - ERROR - 处理时间戳为 2025-03-24 16:56:17.488000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,517 - INFO - 处理记录: ts=2025-03-24 16:56:17.569000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 38 11 01 9F 09 00 00 37 +2025-03-24 16:56:32,534 - ERROR - 处理时间戳为 2025-03-24 16:56:17.569000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,534 - INFO - 处理记录: ts=2025-03-24 16:56:18.484000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 38 12 00 53 +2025-03-24 16:56:32,551 - ERROR - 处理时间戳为 2025-03-24 16:56:18.484000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,551 - INFO - 处理记录: ts=2025-03-24 16:56:18.556000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 38 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 73 +2025-03-24 16:56:32,565 - ERROR - 处理时间戳为 2025-03-24 16:56:18.556000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,565 - INFO - 处理记录: ts=2025-03-24 16:56:18.604000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 38 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 89 00 00 00 00 11 +2025-03-24 16:56:32,580 - ERROR - 处理时间戳为 2025-03-24 16:56:18.604000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,580 - INFO - 处理记录: ts=2025-03-24 16:56:18.659000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 37 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 16:56:32,595 - ERROR - 处理时间戳为 2025-03-24 16:56:18.659000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,595 - INFO - 处理记录: ts=2025-03-24 16:56:19.428000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 38 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:56:32,672 - ERROR - 处理时间戳为 2025-03-24 16:56:19.428000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,672 - INFO - 处理记录: ts=2025-03-24 16:56:19.475000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 38 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C7 +2025-03-24 16:56:32,687 - ERROR - 处理时间戳为 2025-03-24 16:56:19.475000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,687 - INFO - 处理记录: ts=2025-03-24 16:56:21.233000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 38 1D 01 02 01 01 01 01 07 +2025-03-24 16:56:32,708 - ERROR - 处理时间戳为 2025-03-24 16:56:21.233000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,708 - INFO - 处理记录: ts=2025-03-24 16:56:21.333000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 38 1C 01 02 01 01 01 01 52 +2025-03-24 16:56:32,723 - ERROR - 处理时间戳为 2025-03-24 16:56:21.333000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,723 - INFO - 处理记录: ts=2025-03-24 16:56:22.464000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 37 33 01 02 01 01 01 01 B1 +2025-03-24 16:56:32,739 - ERROR - 处理时间戳为 2025-03-24 16:56:22.464000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,739 - INFO - 处理记录: ts=2025-03-24 16:56:23.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 38 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A1 +2025-03-24 16:56:32,755 - ERROR - 处理时间戳为 2025-03-24 16:56:23.015000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,756 - INFO - 处理记录: ts=2025-03-24 16:56:23.100000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 38 17 00 A3 03 00 00 D3 +2025-03-24 16:56:32,771 - ERROR - 处理时间戳为 2025-03-24 16:56:23.100000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,771 - INFO - 处理记录: ts=2025-03-24 16:56:23.135000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 38 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A1 +2025-03-24 16:56:32,786 - ERROR - 处理时间戳为 2025-03-24 16:56:23.135000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,786 - INFO - 处理记录: ts=2025-03-24 16:56:23.673000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 37 34 00 00 02 01 01 00 00 00 01 01 00 00 00 AD +2025-03-24 16:56:32,802 - ERROR - 处理时间戳为 2025-03-24 16:56:23.673000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,802 - INFO - 处理记录: ts=2025-03-24 16:56:24.235000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 38 18 00 6B +2025-03-24 16:56:32,817 - ERROR - 处理时间戳为 2025-03-24 16:56:24.235000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,817 - INFO - 处理记录: ts=2025-03-24 16:56:24.788000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 38 18 00 00 02 01 01 00 00 00 01 01 00 00 00 5B +2025-03-24 16:56:32,831 - ERROR - 处理时间戳为 2025-03-24 16:56:24.788000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,831 - INFO - 处理记录: ts=2025-03-24 16:56:26.378000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 38 1A 01 02 01 01 01 01 42 +2025-03-24 16:56:32,848 - ERROR - 处理时间戳为 2025-03-24 16:56:26.378000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,848 - INFO - 处理记录: ts=2025-03-24 16:56:26.399000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 38 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 26 +2025-03-24 16:56:32,865 - ERROR - 处理时间戳为 2025-03-24 16:56:26.399000 的记录时出错: there is no unique or exclusion constraint matching the ON CONFLICT specification + +2025-03-24 16:56:32,865 - INFO - 处理记录: ts=2025-03-24 16:56:27.624000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 37 38 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 16:56:32,882 - INFO - 数据库连接已关闭 +2025-03-24 16:58:41,170 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 16:58:50,328 - INFO - 成功连接到TDengine +2025-03-24 16:58:50,377 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:58:50,377 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 16:58:50,494 - INFO - 成功连接到PostgreSQL +2025-03-24 16:58:50,537 - INFO - 初始化last_processed_ts: 2025-03-24 16:58:48.480000 +2025-03-24 16:58:50,575 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:59:00,623 - INFO - 处理记录: ts=2025-03-24 16:58:49.416000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3A 12 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E6 +2025-03-24 16:59:00,672 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:00,672 - INFO - 处理记录: ts=2025-03-24 16:58:49.505000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3A 31 01 9F 09 00 00 15 +2025-03-24 16:59:00,714 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:00,714 - INFO - 处理记录: ts=2025-03-24 16:58:50.038000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 3A 32 00 B2 +2025-03-24 16:59:00,757 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:00,757 - INFO - 处理记录: ts=2025-03-24 16:58:50.391000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 3A 33 00 00 02 01 01 0A 00 00 01 01 0A 00 00 56 +2025-03-24 16:59:00,797 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:00,797 - INFO - 处理记录: ts=2025-03-24 16:58:50.448000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 3A 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 35 +2025-03-24 16:59:00,831 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:00,831 - INFO - 处理记录: ts=2025-03-24 16:58:51.309000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 3A 3A 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 16:59:00,923 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:00,923 - INFO - 处理记录: ts=2025-03-24 16:58:51.362000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 3A 3A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 E4 +2025-03-24 16:59:01,106 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:01,106 - INFO - 处理记录: ts=2025-03-24 16:58:52.899000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 3A 15 00 02 01 01 01 01 9B +2025-03-24 16:59:01,314 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:01,314 - INFO - 处理记录: ts=2025-03-24 16:58:53.933000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 01 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 16:59:01,357 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:01,357 - INFO - 处理记录: ts=2025-03-24 16:58:54.945000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 3A 37 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 16:59:01,447 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:01,447 - INFO - 处理记录: ts=2025-03-24 16:58:55.028000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 3A 37 00 A3 03 00 00 F1 +2025-03-24 16:59:01,507 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:01,507 - INFO - 处理记录: ts=2025-03-24 16:58:55.421000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 3A 37 00 62 +2025-03-24 16:59:01,581 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:01,581 - INFO - 处理记录: ts=2025-03-24 16:58:55.837000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 3B 03 01 02 01 01 01 01 4E +2025-03-24 16:59:01,623 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:01,623 - INFO - 处理记录: ts=2025-03-24 16:58:56.817000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 3A 38 00 02 01 01 01 01 63 +2025-03-24 16:59:01,657 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:01,657 - INFO - 处理记录: ts=2025-03-24 16:58:58.947000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 3A 3B 00 2C +2025-03-24 16:59:01,707 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:01,707 - INFO - 处理记录: ts=2025-03-24 16:58:59.119000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 3A 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 60 +2025-03-24 16:59:01,739 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:01,778 - INFO - 处理记录: ts=2025-03-24 16:58:59.544000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3A 1C 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E8 +2025-03-24 16:59:01,824 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:01,824 - INFO - 处理记录: ts=2025-03-24 16:58:59.625000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3A 3B 01 9F 09 00 00 1F +2025-03-24 16:59:01,864 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:01,864 - INFO - 处理记录: ts=2025-03-24 16:58:59.701000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 07 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BB +2025-03-24 16:59:01,899 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:01,942 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:59:11,991 - INFO - 处理记录: ts=2025-03-24 16:59:02.928000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 3A 1F 01 02 01 01 01 01 90 +2025-03-24 16:59:12,030 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:12,030 - INFO - 处理记录: ts=2025-03-24 16:59:03.310000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 10 3B 04 01 02 01 01 01 01 7B +2025-03-24 16:59:12,114 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:12,114 - INFO - 处理记录: ts=2025-03-24 16:59:03.480000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 3B 03 00 41 +2025-03-24 16:59:12,156 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:12,156 - INFO - 处理记录: ts=2025-03-24 16:59:04.136000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 3A 20 00 00 02 01 01 00 00 00 01 01 00 00 00 B4 +2025-03-24 16:59:12,197 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:12,197 - INFO - 处理记录: ts=2025-03-24 16:59:05.074000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 3B 05 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B0 +2025-03-24 16:59:12,238 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:12,238 - INFO - 处理记录: ts=2025-03-24 16:59:05.159000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 3B 05 00 A3 03 00 00 C2 +2025-03-24 16:59:12,284 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:12,284 - INFO - 处理记录: ts=2025-03-24 16:59:05.235000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 3B 05 00 00 02 01 01 00 00 00 01 01 00 00 00 45 +2025-03-24 16:59:12,322 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:12,322 - INFO - 处理记录: ts=2025-03-24 16:59:05.468000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 0D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 16:59:12,367 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:12,368 - INFO - 处理记录: ts=2025-03-24 16:59:06.217000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 3B 0E 00 00 02 01 01 0A 00 00 01 01 0A 00 00 0C +2025-03-24 16:59:12,434 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:12,434 - INFO - 处理记录: ts=2025-03-24 16:59:06.265000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 3B 0E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 AC +2025-03-24 16:59:12,486 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:12,486 - INFO - 处理记录: ts=2025-03-24 16:59:06.840000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 3B 06 01 02 01 01 01 01 5D +2025-03-24 16:59:12,547 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:12,547 - INFO - 处理记录: ts=2025-03-24 16:59:06.859000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 3B 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 39 +2025-03-24 16:59:12,589 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:12,589 - INFO - 处理记录: ts=2025-03-24 16:59:09.229000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 3B 09 00 79 +2025-03-24 16:59:12,623 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:12,623 - INFO - 处理记录: ts=2025-03-24 16:59:09.596000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 3B 12 01 02 01 01 01 01 0B +2025-03-24 16:59:12,664 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:12,664 - INFO - 处理记录: ts=2025-03-24 16:59:09.672000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3A 26 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D2 +2025-03-24 16:59:12,706 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:12,706 - INFO - 处理记录: ts=2025-03-24 16:59:09.751000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3B 09 01 9F 09 00 00 2C +2025-03-24 16:59:12,756 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:12,756 - INFO - 处理记录: ts=2025-03-24 16:59:10.037000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 3B 0A 00 8B +2025-03-24 16:59:12,798 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:12,844 - INFO - 处理记录: ts=2025-03-24 16:59:11.259000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 12 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AE +2025-03-24 16:59:12,889 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:12,933 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:59:22,974 - INFO - 处理记录: ts=2025-03-24 16:59:11.697000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 3B 13 01 02 01 01 01 01 5E +2025-03-24 16:59:23,023 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:23,023 - INFO - 处理记录: ts=2025-03-24 16:59:12.955000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 3A 29 00 02 01 01 01 01 A7 +2025-03-24 16:59:23,073 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:23,073 - INFO - 处理记录: ts=2025-03-24 16:59:13.947000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 3B 0E 00 18 +2025-03-24 16:59:23,123 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:23,123 - INFO - 处理记录: ts=2025-03-24 16:59:15.215000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 3B 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 BA +2025-03-24 16:59:23,173 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:23,173 - INFO - 处理记录: ts=2025-03-24 16:59:15.299000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 3B 0F 00 A3 03 00 00 C8 +2025-03-24 16:59:23,223 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:23,223 - INFO - 处理记录: ts=2025-03-24 16:59:15.420000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 3B 0F 00 5B +2025-03-24 16:59:23,273 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:23,273 - INFO - 处理记录: ts=2025-03-24 16:59:15.770000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 3B 11 00 00 02 01 01 0A 00 00 01 01 0A 00 00 75 +2025-03-24 16:59:23,315 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:23,315 - INFO - 处理记录: ts=2025-03-24 16:59:15.826000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 3B 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 16 +2025-03-24 16:59:23,395 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:23,395 - INFO - 处理记录: ts=2025-03-24 16:59:16.867000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 3B 10 00 02 01 01 01 01 4A +2025-03-24 16:59:23,439 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:23,439 - INFO - 处理记录: ts=2025-03-24 16:59:17.046000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A4 +2025-03-24 16:59:23,532 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:23,532 - INFO - 处理记录: ts=2025-03-24 16:59:17.487000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 3B 19 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4F +2025-03-24 16:59:23,584 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:23,584 - INFO - 处理记录: ts=2025-03-24 16:59:17.537000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 10 3B 19 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C6 +2025-03-24 16:59:23,640 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:23,640 - INFO - 处理记录: ts=2025-03-24 16:59:18.478000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 3B 12 00 50 +2025-03-24 16:59:23,698 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:23,698 - INFO - 处理记录: ts=2025-03-24 16:59:18.599000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 10 3B 14 01 02 01 01 01 01 6B +2025-03-24 16:59:23,765 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:23,765 - INFO - 处理记录: ts=2025-03-24 16:59:19.174000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 3A 2F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 54 +2025-03-24 16:59:23,817 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:23,817 - INFO - 处理记录: ts=2025-03-24 16:59:19.800000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3A 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C4 +2025-03-24 16:59:23,865 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:23,865 - INFO - 处理记录: ts=2025-03-24 16:59:19.890000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3B 13 01 9F 09 00 00 36 +2025-03-24 16:59:23,932 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:23,982 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:59:34,025 - INFO - 处理记录: ts=2025-03-24 16:59:22.858000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 1E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A2 +2025-03-24 16:59:34,080 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:34,080 - INFO - 处理记录: ts=2025-03-24 16:59:22.983000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 3A 33 01 02 01 01 01 01 BC +2025-03-24 16:59:34,131 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:34,131 - INFO - 处理记录: ts=2025-03-24 16:59:24.191000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 10 3A 35 00 00 02 01 01 00 00 00 01 01 00 00 00 A1 +2025-03-24 16:59:34,189 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:34,189 - INFO - 处理记录: ts=2025-03-24 16:59:24.229000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 3B 18 00 68 +2025-03-24 16:59:34,248 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:34,248 - INFO - 处理记录: ts=2025-03-24 16:59:24.916000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 3B 21 01 02 01 01 01 01 38 +2025-03-24 16:59:34,482 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:34,482 - INFO - 处理记录: ts=2025-03-24 16:59:25.302000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 10 3B 19 00 00 02 01 01 00 00 00 01 01 00 00 00 59 +2025-03-24 16:59:34,523 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:34,523 - INFO - 处理记录: ts=2025-03-24 16:59:25.323000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 3B 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 AC +2025-03-24 16:59:34,564 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:34,564 - INFO - 处理记录: ts=2025-03-24 16:59:25.443000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 3B 19 00 A3 03 00 00 DE +2025-03-24 16:59:34,606 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:34,606 - INFO - 处理记录: ts=2025-03-24 16:59:26.866000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 3B 22 01 02 01 01 01 01 6F +2025-03-24 16:59:34,647 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:34,647 - INFO - 处理记录: ts=2025-03-24 16:59:26.895000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 3B 1A 01 02 01 01 01 01 41 +2025-03-24 16:59:34,699 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:34,699 - INFO - 处理记录: ts=2025-03-24 16:59:26.915000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 10 3B 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 25 +2025-03-24 16:59:34,739 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:34,739 - INFO - 处理记录: ts=2025-03-24 16:59:28.646000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 98 +2025-03-24 16:59:34,906 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:34,906 - INFO - 处理记录: ts=2025-03-24 16:59:28.945000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 10 3B 1D 00 0B +2025-03-24 16:59:34,972 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:34,973 - INFO - 处理记录: ts=2025-03-24 16:59:29.917000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3A 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 CE +2025-03-24 16:59:35,057 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:35,057 - INFO - 处理记录: ts=2025-03-24 16:59:29.998000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3B 1E 01 9F 09 00 00 3B +2025-03-24 16:59:35,140 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:35,142 - INFO - 处理记录: ts=2025-03-24 16:59:30.037000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 10 3B 1E 00 9F +2025-03-24 16:59:35,227 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:35,227 - INFO - 处理记录: ts=2025-03-24 16:59:31.556000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 10 3B 28 00 00 02 01 01 0A 00 00 01 01 0A 00 00 2A +2025-03-24 16:59:35,303 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:35,303 - INFO - 处理记录: ts=2025-03-24 16:59:31.612000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 10 3B 28 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 87 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 85 00 00 00 00 8A +2025-03-24 16:59:35,364 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:35,364 - INFO - 处理记录: ts=2025-03-24 16:59:32.149000, pile_id=0317344611360613, hex_data=4A 58 08 03 17 34 46 11 36 06 13 01 11 00 19 03 18 10 3B 21 00 00 00 00 02 00 00 00 00 00 00 46 +2025-03-24 16:59:35,458 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:35,502 - INFO - 处理记录: ts=2025-03-24 16:59:33.020000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 10 3B 01 02 02 01 01 01 01 8C +2025-03-24 16:59:35,555 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:35,556 - INFO - 处理记录: ts=2025-03-24 16:59:33.480000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 10 3B 21 00 63 +2025-03-24 16:59:35,598 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:35,598 - INFO - 处理记录: ts=2025-03-24 16:59:33.829000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 10 3B 23 01 02 01 01 01 01 5C +2025-03-24 16:59:35,641 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:35,687 - INFO - 没有新数据,休眠10秒 +2025-03-24 16:59:45,818 - INFO - 处理记录: ts=2025-03-24 16:59:34.459000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 2A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 96 +2025-03-24 16:59:45,855 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:45,855 - INFO - 处理记录: ts=2025-03-24 16:59:35.421000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 10 3B 23 00 77 +2025-03-24 16:59:45,981 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:45,981 - INFO - 处理记录: ts=2025-03-24 16:59:35.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 10 3B 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 96 +2025-03-24 16:59:46,048 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:46,049 - INFO - 处理记录: ts=2025-03-24 16:59:35.537000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 10 3B 23 00 A3 03 00 00 E4 +2025-03-24 16:59:46,164 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:46,164 - INFO - 处理记录: ts=2025-03-24 16:59:36.926000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 10 3B 25 00 02 01 01 01 01 7F +2025-03-24 16:59:46,231 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 16:59:46,231 - INFO - 处理记录: ts=2025-03-24 16:59:39.222000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 10 3B 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 72 +2025-03-24 16:59:46,340 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:46,341 - INFO - 处理记录: ts=2025-03-24 16:59:39.229000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 10 3B 27 00 57 +2025-03-24 16:59:46,381 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:46,381 - INFO - 处理记录: ts=2025-03-24 16:59:40.048000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 10 3B 08 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 FD +2025-03-24 16:59:46,414 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:46,414 - INFO - 处理记录: ts=2025-03-24 16:59:40.128000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 10 3B 28 01 9F 09 00 00 0D +2025-03-24 16:59:46,456 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 16:59:46,456 - INFO - 处理记录: ts=2025-03-24 16:59:40.135000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 10 3B 30 01 02 01 01 01 01 29 +2025-03-24 16:59:46,597 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 16:59:46,597 - INFO - 处理记录: ts=2025-03-24 16:59:40.271000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 10 3B 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 93 +2025-03-24 16:59:46,638 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:46,638 - INFO - 处理记录: ts=2025-03-24 16:59:41.098000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 10 3B 2A 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 16:59:46,800 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:46,800 - INFO - 处理记录: ts=2025-03-24 16:59:41.148000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 10 3B 2A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 2D +2025-03-24 16:59:46,848 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 16:59:46,849 - INFO - 处理记录: ts=2025-03-24 16:59:42.176000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 10 3B 31 01 02 01 01 01 01 7C +2025-03-24 16:59:47,005 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 16:59:47,006 - INFO - 处理记录: ts=2025-03-24 16:59:42.615000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 10 3B 32 00 00 02 01 01 0A 00 00 01 01 0A 00 00 64 +2025-03-24 16:59:47,022 - INFO - 数据库连接已关闭 +2025-03-24 17:05:33,415 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:05:42,600 - INFO - 成功连接到TDengine +2025-03-24 17:05:42,644 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:05:42,644 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:05:42,807 - INFO - 成功连接到PostgreSQL +2025-03-24 17:05:42,849 - INFO - 初始化last_processed_ts: 2025-03-24 17:05:40.293000 +2025-03-24 17:05:42,897 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:05:52,943 - INFO - 处理记录: ts=2025-03-24 17:05:42.547000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 05 2C 01 02 01 01 01 01 6C +2025-03-24 17:05:53,003 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 17:05:53,003 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317344611360613', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 42, 547000)} +2025-03-24 17:05:53,004 - INFO - 处理记录: ts=2025-03-24 17:05:43.936000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 05 2C 00 05 +2025-03-24 17:05:53,062 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 17:05:53,062 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317665611360637', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 43, 936000)} +2025-03-24 17:05:53,062 - INFO - 处理记录: ts=2025-03-24 17:05:44.098000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 05 0C 01 02 01 01 01 01 BD +2025-03-24 17:05:53,193 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:05:53,193 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 44, 98000)} +2025-03-24 17:05:53,193 - INFO - 处理记录: ts=2025-03-24 17:05:44.726000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 05 0D 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C7 +2025-03-24 17:05:53,245 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:05:53,245 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 44, 726000)} +2025-03-24 17:05:53,245 - INFO - 处理记录: ts=2025-03-24 17:05:44.808000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 05 2C 01 9F 09 00 00 36 +2025-03-24 17:05:53,295 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:05:53,295 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 44, 808000)} +2025-03-24 17:05:53,295 - INFO - 处理记录: ts=2025-03-24 17:05:45.295000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 05 0E 00 00 02 01 01 00 00 00 01 01 00 00 00 A4 +2025-03-24 17:05:53,337 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:05:53,337 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 45, 295000)} +2025-03-24 17:05:53,337 - INFO - 处理记录: ts=2025-03-24 17:05:45.464000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 05 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B6 +2025-03-24 17:05:53,386 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:05:53,386 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': 6056865.42, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 45, 464000)} +2025-03-24 17:05:53,386 - INFO - 处理记录: ts=2025-03-24 17:05:46.411000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 05 2E 00 00 02 01 01 00 00 00 01 01 00 00 00 51 +2025-03-24 17:05:53,428 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:05:53,428 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 46, 411000)} +2025-03-24 17:05:53,428 - INFO - 处理记录: ts=2025-03-24 17:05:48.002000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 05 30 01 02 01 01 01 01 54 +2025-03-24 17:05:53,470 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:05:53,470 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 48, 2000)} +2025-03-24 17:05:53,471 - INFO - 处理记录: ts=2025-03-24 17:05:48.022000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 05 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 30 +2025-03-24 17:05:53,512 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:05:53,512 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 48, 22000)} +2025-03-24 17:05:53,512 - INFO - 处理记录: ts=2025-03-24 17:05:48.221000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 05 38 01 02 01 01 01 01 1E +2025-03-24 17:05:53,553 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 17:05:53,553 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317665611360637', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 48, 221000)} +2025-03-24 17:05:53,553 - INFO - 处理记录: ts=2025-03-24 17:05:48.468000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 05 30 00 4D +2025-03-24 17:05:53,803 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:05:53,803 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 48, 468000)} +2025-03-24 17:05:53,803 - INFO - 处理记录: ts=2025-03-24 17:05:50.034000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 05 32 00 8C +2025-03-24 17:05:53,853 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:05:53,853 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 50, 34000)} +2025-03-24 17:05:53,853 - INFO - 处理记录: ts=2025-03-24 17:05:50.238000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 05 32 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B8 +2025-03-24 17:05:53,894 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:05:53,895 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 50, 238000)} +2025-03-24 17:05:53,895 - INFO - 处理记录: ts=2025-03-24 17:05:50.342000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 05 32 00 A3 03 00 00 CA +2025-03-24 17:05:53,938 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:05:53,938 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 50, 342000)} +2025-03-24 17:05:53,938 - INFO - 处理记录: ts=2025-03-24 17:05:51.254000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 05 3A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:05:53,978 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:05:53,978 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': 6056865.42, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 51, 254000)} +2025-03-24 17:05:54,017 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:06:04,062 - INFO - 处理记录: ts=2025-03-24 17:05:53.162000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 06 00 01 02 01 01 01 01 71 +2025-03-24 17:06:04,102 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,102 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 53, 162000)} +2025-03-24 17:06:04,102 - INFO - 处理记录: ts=2025-03-24 17:05:54.114000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 05 16 00 02 01 01 01 01 A6 +2025-03-24 17:06:04,143 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:06:04,143 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 54, 114000)} +2025-03-24 17:06:04,143 - INFO - 处理记录: ts=2025-03-24 17:05:54.219000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 05 36 00 79 +2025-03-24 17:06:04,185 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 17:06:04,185 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317344611360613', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 54, 219000)} +2025-03-24 17:06:04,185 - INFO - 处理记录: ts=2025-03-24 17:05:54.632000, pile_id=0317676311360657, hex_data=4A 58 08 03 17 67 63 11 36 06 57 01 11 00 19 03 18 11 06 02 00 00 00 00 02 00 00 00 00 00 00 6B +2025-03-24 17:06:04,254 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,254 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 54, 632000)} +2025-03-24 17:06:04,254 - INFO - 处理记录: ts=2025-03-24 17:05:54.929000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 05 17 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DD +2025-03-24 17:06:04,294 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:06:04,294 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 54, 929000)} +2025-03-24 17:06:04,294 - INFO - 处理记录: ts=2025-03-24 17:05:55.009000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 05 37 01 9F 09 00 00 2D +2025-03-24 17:06:04,335 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:06:04,335 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 55, 9000)} +2025-03-24 17:06:04,335 - INFO - 处理记录: ts=2025-03-24 17:05:55.424000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 05 37 00 5C +2025-03-24 17:06:04,376 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:06:04,376 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 55, 424000)} +2025-03-24 17:06:04,376 - INFO - 处理记录: ts=2025-03-24 17:05:57.027000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 06 04 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 84 +2025-03-24 17:06:04,418 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,418 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': 6056865.42, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 57, 27000)} +2025-03-24 17:06:04,418 - INFO - 处理记录: ts=2025-03-24 17:05:57.916000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 05 3B 01 02 01 01 01 01 7B +2025-03-24 17:06:04,460 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 17:06:04,460 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317344611360613', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 57, 916000)} +2025-03-24 17:06:04,460 - INFO - 处理记录: ts=2025-03-24 17:05:58.046000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 05 3A 00 02 01 01 01 01 5F +2025-03-24 17:06:04,501 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:06:04,501 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 58, 46000)} +2025-03-24 17:06:04,501 - INFO - 处理记录: ts=2025-03-24 17:05:58.935000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 05 3B 00 12 +2025-03-24 17:06:04,543 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 17:06:04,543 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317665611360637', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 5, 58, 935000)} +2025-03-24 17:06:04,543 - INFO - 处理记录: ts=2025-03-24 17:06:00.345000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 05 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 58 +2025-03-24 17:06:04,584 - INFO - 更新充电桩 0317288703151018 的记录,枪号 A +2025-03-24 17:06:04,584 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317288703151018', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 0, 345000)} +2025-03-24 17:06:04,584 - INFO - 处理记录: ts=2025-03-24 17:06:00.362000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 06 00 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 89 +2025-03-24 17:06:04,626 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:06:04,626 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 0, 362000)} +2025-03-24 17:06:04,626 - INFO - 处理记录: ts=2025-03-24 17:06:00.445000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 06 00 00 A3 03 00 00 FB +2025-03-24 17:06:04,701 - INFO - 更新充电桩 0317446603151040 的记录,枪号 A +2025-03-24 17:06:04,701 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317446603151040', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 0, 445000)} +2025-03-24 17:06:04,702 - INFO - 处理记录: ts=2025-03-24 17:06:01.026000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 06 02 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5A +2025-03-24 17:06:04,743 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 17:06:04,743 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317344611360613', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 1, 26000)} +2025-03-24 17:06:04,743 - INFO - 处理记录: ts=2025-03-24 17:06:01.084000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 06 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 39 +2025-03-24 17:06:04,784 - INFO - 更新充电桩 0317344611360613 的记录,枪号 A +2025-03-24 17:06:04,784 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317344611360613', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 1, 84000)} +2025-03-24 17:06:04,823 - INFO - 处理记录: ts=2025-03-24 17:06:02.849000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 06 0A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 8A +2025-03-24 17:06:04,868 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,868 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': 6056865.42, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 2, 849000)} +2025-03-24 17:06:04,868 - INFO - 处理记录: ts=2025-03-24 17:06:03.291000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 06 0A 00 00 02 01 01 0A 00 00 01 01 0A 00 00 60 +2025-03-24 17:06:04,909 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,909 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 3, 291000)} +2025-03-24 17:06:04,909 - INFO - 处理记录: ts=2025-03-24 17:06:03.334000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 06 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 89 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 E9 +2025-03-24 17:06:04,951 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:04,951 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 3, 334000)} +2025-03-24 17:06:04,990 - INFO - 处理记录: ts=2025-03-24 17:06:03.468000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 06 03 00 7D +2025-03-24 17:06:05,034 - INFO - 更新充电桩 0317676311360657 的记录,枪号 A +2025-03-24 17:06:05,034 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317676311360657', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 3, 468000)} +2025-03-24 17:06:05,077 - INFO - 处理记录: ts=2025-03-24 17:06:03.601000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 06 0C 01 02 01 01 01 01 29 +2025-03-24 17:06:05,118 - INFO - 更新充电桩 0317665611360637 的记录,枪号 A +2025-03-24 17:06:05,118 - INFO - 更新到 charge_gun 表的数据: {'pile_id': '0317665611360637', 'connector_name': 'A', 'status': 0, 'power': None, 'voltage_upper_limits': 1000, 'voltage_lower_limits': 200, 'updated_at': datetime.datetime(2025, 3, 24, 17, 6, 3, 601000)} +2025-03-24 17:06:05,157 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:06:06,047 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_gun.py b/charging_pile_proxy/hejin_forward/charge_gun.py new file mode 100644 index 0000000..13c97ac --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_gun.py @@ -0,0 +1,335 @@ +import taosrest +import psycopg2 +from datetime import datetime +import binascii +import logging +import time + +# 配置日志 +logging.basicConfig( + filename='charge_gun.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeGunMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_connectors = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_hex_data(self, hex_data): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 提取枪号(假设在协议中枪号位于第11字节,0x01表示A枪,0x02表示B枪) + connector_name = 'A' if hex_bytes[11] == 0x01 else 'B' + + # 初始化数据字典 + data = { + 'command': command, + 'connector_name': connector_name, + 'status': 0, # 默认空闲 + 'power': None, + 'voltage_upper_limits': None, + 'voltage_lower_limits': None, + 'park_status': 0, # 默认空闲 + 'lock_status': 0 # 默认未锁 + } + + # 25H - 充电信息 + if command == '25': + # 充电电压(字节7-8,分辨率0.1V) + voltage = int.from_bytes(hex_bytes[7:9], byteorder='little') * 0.1 + # 充电电量(字节11-14,分辨率0.01kWh) + power = int.from_bytes(hex_bytes[11:15], byteorder='little') * 0.01 + + data.update({ + 'status': 1, # 充电中 + 'power': power, + 'voltage_upper_limits': int(voltage + 50), # 假设上限比当前电压高50V + 'voltage_lower_limits': int(voltage - 50) # 假设下限比当前电压低50V + }) + + # 23H - 最新充电订单 + elif command == '23': + # 起始充电电量(字节119-122,分辨率0.01kWh) + start_power = int.from_bytes(hex_bytes[119:123], byteorder='little') * 0.01 + # 结束充电电量(字节123-126,分辨率0.01kWh) + end_power = int.from_bytes(hex_bytes[123:127], byteorder='little') * 0.01 + # 计算总电量 + power = end_power - start_power + + data.update({ + 'status': 0, # 充电完成,枪状态为空闲 + 'power': power + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的charge_gun表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID (pile_id) + hex_data = row[12] # 十六进制数据 (hex_data) + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 构造唯一标识(pile_id + connector_name) + connector_key = f"{pile_id}_{parsed_data['connector_name']}" + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM charge_gun WHERE pile_id = %s AND connector_name = %s + """ + self.pg_cursor.execute(check_query, (pile_id, parsed_data['connector_name'])) + exists = self.pg_cursor.fetchone() is not None + + # 如果该充电枪已处理过或记录已存在,更新状态 + update_existing = exists or connector_key in self.processed_connectors + + # 准备插入或更新PostgreSQL的数据 + if not update_existing: + insert_query = """ + INSERT INTO charge_gun ( + pile_id, connector_name, connector_type, voltage_upper_limits, + voltage_lower_limits, power, park_no, national_standard, + status, park_status, lock_status, created_at, updated_at, + entity_id, station_id, operator_id, sum_period, org_code, merchant_id + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + else: + insert_query = """ + UPDATE charge_gun + SET status = %s, + power = %s, + voltage_upper_limits = %s, + voltage_lower_limits = %s, + updated_at = %s + WHERE pile_id = %s AND connector_name = %s + """ + + values = ( + pile_id, + parsed_data['connector_name'], + 4, # connector_type: 直流充电桩 + parsed_data['voltage_upper_limits'] if parsed_data['voltage_upper_limits'] else 1000, + parsed_data['voltage_lower_limits'] if parsed_data['voltage_lower_limits'] else 200, + parsed_data['power'], + '1', # park_no: 默认值 + 2, # national_standard: 2015标准 + parsed_data['status'], + parsed_data['park_status'], + parsed_data['lock_status'], + timestamp, + timestamp, + 'default_entity', + 'default_station', + 'K1TUBMOLH', + 0, + 'MAD2BYGQX', + '1863849140684009473' + ) if not update_existing else ( + parsed_data['status'], + parsed_data['power'], + parsed_data['voltage_upper_limits'] if parsed_data['voltage_upper_limits'] else 1000, + parsed_data['voltage_lower_limits'] if parsed_data['voltage_lower_limits'] else 200, + timestamp, + pile_id, + parsed_data['connector_name'] + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_connectors.add(connector_key) + logging.info(f"{'更新' if update_existing else '插入'}充电桩 {pile_id} 的记录,枪号 {parsed_data['connector_name']}") + + # 记录插入或更新的完整数据 + if not update_existing: + log_values = { + 'pile_id': pile_id, + 'connector_name': parsed_data['connector_name'], + 'connector_type': 4, + 'voltage_upper_limits': parsed_data['voltage_upper_limits'] if parsed_data['voltage_upper_limits'] else 1000, + 'voltage_lower_limits': parsed_data['voltage_lower_limits'] if parsed_data['voltage_lower_limits'] else 200, + 'power': parsed_data['power'], + 'park_no': '1', + 'national_standard': 2, + 'status': parsed_data['status'], + 'park_status': parsed_data['park_status'], + 'lock_status': parsed_data['lock_status'], + 'created_at': timestamp, + 'updated_at': timestamp, + 'entity_id': 'default_entity', + 'station_id': 'default_station', + 'operator_id': 'K1TUBMOLH', + 'sum_period': 0, + 'org_code': 'MAD2BYGQX', + 'merchant_id': '1863849140684009473' + } + else: + log_values = { + 'pile_id': pile_id, + 'connector_name': parsed_data['connector_name'], + 'status': parsed_data['status'], + 'power': parsed_data['power'], + 'voltage_upper_limits': parsed_data['voltage_upper_limits'] if parsed_data['voltage_upper_limits'] else 1000, + 'voltage_lower_limits': parsed_data['voltage_lower_limits'] if parsed_data['voltage_lower_limits'] else 200, + 'updated_at': timestamp + } + logging.info(f"{'插入' if not update_existing else '更新'}到 charge_gun 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = ChargeGunMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_gun_state_migration.log b/charging_pile_proxy/hejin_forward/charge_gun_state_migration.log new file mode 100644 index 0000000..4fd584d --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_gun_state_migration.log @@ -0,0 +1,8 @@ +2025-03-24 10:02:15,747 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:02:17,310 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:02:17,310 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:02:17,310 - INFO - 数据库连接已关闭 +2025-03-24 10:02:57,762 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:02:59,317 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:02:59,317 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:02:59,319 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_gun_state_record.log b/charging_pile_proxy/hejin_forward/charge_gun_state_record.log new file mode 100644 index 0000000..7a62f88 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_gun_state_record.log @@ -0,0 +1,217 @@ +2025-03-24 17:10:57,880 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:11:02,520 - ERROR - 连接错误 (第 1 次): HTTP Error 401: Unauthorized +2025-03-24 17:11:02,520 - INFO - 将在 10 秒后重试... +2025-03-24 17:11:12,522 - INFO - 尝试连接到TDengine (第 2 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:11:17,112 - ERROR - 连接错误 (第 2 次): HTTP Error 401: Unauthorized +2025-03-24 17:11:17,112 - INFO - 将在 10 秒后重试... +2025-03-24 17:11:27,113 - INFO - 尝试连接到TDengine (第 3 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:11:31,711 - ERROR - 连接错误 (第 3 次): HTTP Error 401: Unauthorized +2025-03-24 17:11:31,711 - ERROR - 迁移失败: HTTP Error 401: Unauthorized +2025-03-24 17:11:31,712 - INFO - 数据库连接已关闭 +2025-03-24 17:11:49,648 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:11:54,235 - ERROR - 连接错误 (第 1 次): HTTP Error 401: Unauthorized +2025-03-24 17:11:54,235 - INFO - 将在 10 秒后重试... +2025-03-24 17:12:04,236 - INFO - 尝试连接到TDengine (第 2 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:12:08,830 - ERROR - 连接错误 (第 2 次): HTTP Error 401: Unauthorized +2025-03-24 17:12:08,830 - INFO - 将在 10 秒后重试... +2025-03-24 17:12:18,832 - INFO - 尝试连接到TDengine (第 3 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:12:23,418 - ERROR - 连接错误 (第 3 次): HTTP Error 401: Unauthorized +2025-03-24 17:12:23,418 - ERROR - 迁移失败: HTTP Error 401: Unauthorized +2025-03-24 17:12:23,418 - INFO - 数据库连接已关闭 +2025-03-24 17:14:12,136 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:14:21,346 - INFO - 成功连接到TDengine +2025-03-24 17:14:21,388 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:14:21,388 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:14:21,520 - INFO - 成功连接到PostgreSQL +2025-03-24 17:14:21,571 - INFO - 初始化last_processed_ts: 2025-03-24 17:14:19.464000 +2025-03-24 17:14:21,617 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:14:31,663 - INFO - 处理记录: ts=2025-03-24 17:14:20.900000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 1C 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 94 +2025-03-24 17:14:31,800 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:20.900000 +2025-03-24 17:14:31,800 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 20, 900000)} +2025-03-24 17:14:31,800 - INFO - 处理记录: ts=2025-03-24 17:14:21.261000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 0D 32 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 F0 +2025-03-24 17:14:31,934 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:21.261000 +2025-03-24 17:14:31,935 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 21, 261000)} +2025-03-24 17:14:31,935 - INFO - 处理记录: ts=2025-03-24 17:14:21.339000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 0E 15 01 9F 09 00 00 04 +2025-03-24 17:14:32,067 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:21.339000 +2025-03-24 17:14:32,067 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 21, 339000)} +2025-03-24 17:14:32,067 - INFO - 处理记录: ts=2025-03-24 17:14:21.745000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 0D 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 7F +2025-03-24 17:14:32,202 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:21.745000 +2025-03-24 17:14:32,202 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 21, 745000)} +2025-03-24 17:14:32,202 - INFO - 处理记录: ts=2025-03-24 17:14:22.812000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 0E 1E 01 02 01 01 01 01 67 +2025-03-24 17:14:32,351 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:22.812000 +2025-03-24 17:14:32,351 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 22, 812000)} +2025-03-24 17:14:32,351 - INFO - 处理记录: ts=2025-03-24 17:14:24.204000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 0E 18 00 5C +2025-03-24 17:14:32,495 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:24.204000 +2025-03-24 17:14:32,495 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 24, 204000)} +2025-03-24 17:14:32,495 - INFO - 处理记录: ts=2025-03-24 17:14:25.551000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 0D 36 01 02 01 01 01 01 8F +2025-03-24 17:14:32,634 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:25.551000 +2025-03-24 17:14:32,634 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 25, 551000)} +2025-03-24 17:14:32,635 - INFO - 处理记录: ts=2025-03-24 17:14:25.980000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 0E 1B 01 02 01 01 01 01 50 +2025-03-24 17:14:32,783 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:25.980000 +2025-03-24 17:14:32,784 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 25, 980000)} +2025-03-24 17:14:32,784 - INFO - 处理记录: ts=2025-03-24 17:14:26.689000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AA +2025-03-24 17:14:32,917 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:26.689000 +2025-03-24 17:14:32,918 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 26, 689000)} +2025-03-24 17:14:32,918 - INFO - 处理记录: ts=2025-03-24 17:14:26.758000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 0D 37 00 00 02 01 01 00 00 00 01 01 00 00 00 95 +2025-03-24 17:14:33,093 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:26.758000 +2025-03-24 17:14:33,094 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 26, 758000)} +2025-03-24 17:14:33,094 - INFO - 处理记录: ts=2025-03-24 17:14:26.796000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 0E 1A 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 9B +2025-03-24 17:14:33,240 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:26.796000 +2025-03-24 17:14:33,240 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 26, 796000)} +2025-03-24 17:14:33,240 - INFO - 处理记录: ts=2025-03-24 17:14:26.880000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 0E 1A 00 A3 03 00 00 E9 +2025-03-24 17:14:33,376 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:26.880000 +2025-03-24 17:14:33,376 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 26, 880000)} +2025-03-24 17:14:33,376 - INFO - 处理记录: ts=2025-03-24 17:14:27.870000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 0E 1D 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4D +2025-03-24 17:14:33,512 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:27.870000 +2025-03-24 17:14:33,512 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 27, 870000)} +2025-03-24 17:14:33,512 - INFO - 处理记录: ts=2025-03-24 17:14:27.883000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 0E 1B 00 00 02 01 01 00 00 00 01 01 00 00 00 6F +2025-03-24 17:14:33,633 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:27.883000 +2025-03-24 17:14:33,633 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 27, 883000)} +2025-03-24 17:14:33,633 - INFO - 处理记录: ts=2025-03-24 17:14:27.924000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 0E 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 2E +2025-03-24 17:14:33,787 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:27.924000 +2025-03-24 17:14:33,787 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 27, 924000)} +2025-03-24 17:14:33,787 - INFO - 处理记录: ts=2025-03-24 17:14:28.922000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 0E 1D 00 3F +2025-03-24 17:14:33,927 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:28.922000 +2025-03-24 17:14:33,927 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 28, 922000)} +2025-03-24 17:14:33,927 - INFO - 处理记录: ts=2025-03-24 17:14:29.422000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 0E 26 01 02 01 01 01 01 0B +2025-03-24 17:14:34,066 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:29.422000 +2025-03-24 17:14:34,066 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 29, 422000)} +2025-03-24 17:14:34,066 - INFO - 处理记录: ts=2025-03-24 17:14:29.475000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 0E 1D 01 02 01 01 01 01 72 +2025-03-24 17:14:34,192 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:29.475000 +2025-03-24 17:14:34,192 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 29, 475000)} +2025-03-24 17:14:34,192 - INFO - 处理记录: ts=2025-03-24 17:14:29.495000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 0E 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 16 +2025-03-24 17:14:34,316 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:29.495000 +2025-03-24 17:14:34,317 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 29, 495000)} +2025-03-24 17:14:34,317 - INFO - 处理记录: ts=2025-03-24 17:14:30.012000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 0E 1E 00 AB +2025-03-24 17:14:34,450 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:30.012000 +2025-03-24 17:14:34,450 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 30, 12000)} +2025-03-24 17:14:34,493 - INFO - 处理记录: ts=2025-03-24 17:14:30.262000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 0E 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 47 +2025-03-24 17:14:34,616 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:30.262000 +2025-03-24 17:14:34,616 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 30, 262000)} +2025-03-24 17:14:34,616 - INFO - 处理记录: ts=2025-03-24 17:14:30.316000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 0E 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 CF +2025-03-24 17:14:34,733 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:30.316000 +2025-03-24 17:14:34,733 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 30, 316000)} +2025-03-24 17:14:34,733 - INFO - 处理记录: ts=2025-03-24 17:14:31.391000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 0E 00 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C1 +2025-03-24 17:14:34,859 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:31.391000 +2025-03-24 17:14:34,859 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 31, 391000)} +2025-03-24 17:14:34,859 - INFO - 处理记录: ts=2025-03-24 17:14:31.475000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 0E 1F 01 9F 09 00 00 0E +2025-03-24 17:14:34,991 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:31.475000 +2025-03-24 17:14:34,991 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 31, 475000)} +2025-03-24 17:14:34,991 - INFO - 处理记录: ts=2025-03-24 17:14:32.486000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A0 +2025-03-24 17:14:35,118 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:32.486000 +2025-03-24 17:14:35,118 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 32, 486000)} +2025-03-24 17:14:35,158 - INFO - 处理记录: ts=2025-03-24 17:14:33.454000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 0E 21 00 57 +2025-03-24 17:14:35,285 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:33.454000 +2025-03-24 17:14:35,285 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 33, 454000)} +2025-03-24 17:14:35,329 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:14:45,374 - INFO - 处理记录: ts=2025-03-24 17:14:35.395000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 0E 23 00 43 +2025-03-24 17:14:45,506 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:35.395000 +2025-03-24 17:14:45,506 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 35, 395000)} +2025-03-24 17:14:45,506 - INFO - 处理记录: ts=2025-03-24 17:14:35.591000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 0E 04 00 02 01 01 01 01 BF +2025-03-24 17:14:45,639 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:35.591000 +2025-03-24 17:14:45,640 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 35, 591000)} +2025-03-24 17:14:45,640 - INFO - 处理记录: ts=2025-03-24 17:14:36.946000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 0E 25 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A4 +2025-03-24 17:14:45,772 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:36.946000 +2025-03-24 17:14:45,773 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 36, 946000)} +2025-03-24 17:14:45,773 - INFO - 处理记录: ts=2025-03-24 17:14:37.036000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 0E 25 00 A3 03 00 00 D6 +2025-03-24 17:14:45,916 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:37.036000 +2025-03-24 17:14:45,916 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 37, 36000)} +2025-03-24 17:14:45,916 - INFO - 处理记录: ts=2025-03-24 17:14:38.276000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 2D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A5 +2025-03-24 17:14:46,046 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:38.276000 +2025-03-24 17:14:46,048 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 38, 276000)} +2025-03-24 17:14:46,048 - INFO - 处理记录: ts=2025-03-24 17:14:38.712000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 0E 2E 01 02 01 01 01 01 57 +2025-03-24 17:14:46,180 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:38.712000 +2025-03-24 17:14:46,180 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 38, 712000)} +2025-03-24 17:14:46,180 - INFO - 处理记录: ts=2025-03-24 17:14:39.204000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 0E 27 00 63 +2025-03-24 17:14:46,306 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:39.204000 +2025-03-24 17:14:46,307 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 39, 204000)} +2025-03-24 17:14:46,307 - INFO - 处理记录: ts=2025-03-24 17:14:39.503000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 0E 27 00 02 01 01 01 01 49 +2025-03-24 17:14:46,430 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:39.503000 +2025-03-24 17:14:46,430 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 39, 503000)} +2025-03-24 17:14:46,430 - INFO - 处理记录: ts=2025-03-24 17:14:41.530000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 0E 0A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 CB +2025-03-24 17:14:46,712 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:41.530000 +2025-03-24 17:14:46,712 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 41, 530000)} +2025-03-24 17:14:46,712 - INFO - 处理记录: ts=2025-03-24 17:14:41.619000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 0E 29 01 9F 09 00 00 38 +2025-03-24 17:14:46,864 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:41.619000 +2025-03-24 17:14:46,864 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 41, 619000)} +2025-03-24 17:14:46,864 - INFO - 处理记录: ts=2025-03-24 17:14:41.680000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 0E 2B 01 02 01 01 01 01 60 +2025-03-24 17:14:46,991 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:41.680000 +2025-03-24 17:14:46,991 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 41, 680000)} +2025-03-24 17:14:46,991 - INFO - 处理记录: ts=2025-03-24 17:14:41.812000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 0E 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 44 +2025-03-24 17:14:47,105 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:41.812000 +2025-03-24 17:14:47,106 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 41, 812000)} +2025-03-24 17:14:47,106 - INFO - 处理记录: ts=2025-03-24 17:14:43.922000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 0E 2C 00 0E +2025-03-24 17:14:47,230 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:43.922000 +2025-03-24 17:14:47,230 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 43, 922000)} +2025-03-24 17:14:47,268 - INFO - 处理记录: ts=2025-03-24 17:14:44.211000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 33 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BB +2025-03-24 17:14:47,407 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:44.211000 +2025-03-24 17:14:47,407 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 44, 211000)} +2025-03-24 17:14:47,408 - INFO - 处理记录: ts=2025-03-24 17:14:44.522000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 0E 35 00 00 02 01 01 0A 00 00 01 01 0A 00 00 03 +2025-03-24 17:14:47,539 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:44.522000 +2025-03-24 17:14:47,539 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 44, 522000)} +2025-03-24 17:14:47,539 - INFO - 处理记录: ts=2025-03-24 17:14:44.569000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 0E 35 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 A3 +2025-03-24 17:14:47,657 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:44.569000 +2025-03-24 17:14:47,657 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 44, 569000)} +2025-03-24 17:14:47,657 - INFO - 处理记录: ts=2025-03-24 17:14:44.752000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 0E 35 01 02 01 01 01 01 18 +2025-03-24 17:14:47,781 - INFO - 插入充电枪 03176656113606371 的状态记录,时间戳 2025-03-24 17:14:44.752000 +2025-03-24 17:14:47,781 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176656113606371', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 44, 752000)} +2025-03-24 17:14:47,781 - INFO - 处理记录: ts=2025-03-24 17:14:45.617000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 0E 0E 01 02 01 01 01 01 B4 +2025-03-24 17:14:47,898 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:45.617000 +2025-03-24 17:14:47,898 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 45, 617000)} +2025-03-24 17:14:47,946 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:14:57,987 - INFO - 处理记录: ts=2025-03-24 17:14:46.826000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 0E 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 AE +2025-03-24 17:14:58,114 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:46.826000 +2025-03-24 17:14:58,114 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 46, 826000)} +2025-03-24 17:14:58,114 - INFO - 处理记录: ts=2025-03-24 17:14:47.058000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 0E 2F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 AE +2025-03-24 17:14:58,239 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:47.058000 +2025-03-24 17:14:58,239 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 47, 58000)} +2025-03-24 17:14:58,239 - INFO - 处理记录: ts=2025-03-24 17:14:47.140000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 0E 2F 00 A3 03 00 00 DC +2025-03-24 17:14:58,364 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:47.140000 +2025-03-24 17:14:58,364 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 47, 140000)} +2025-03-24 17:14:58,364 - INFO - 处理记录: ts=2025-03-24 17:14:47.926000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 0E 30 00 00 02 01 01 00 00 00 01 01 00 00 00 44 +2025-03-24 17:14:58,702 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:47.926000 +2025-03-24 17:14:58,702 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 47, 926000)} +2025-03-24 17:14:58,702 - INFO - 处理记录: ts=2025-03-24 17:14:48.453000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 0E 30 00 46 +2025-03-24 17:14:58,822 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:48.453000 +2025-03-24 17:14:58,822 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 48, 453000)} +2025-03-24 17:14:58,822 - INFO - 处理记录: ts=2025-03-24 17:14:49.536000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 0E 31 01 02 01 01 01 01 5E +2025-03-24 17:14:58,938 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:49.536000 +2025-03-24 17:14:58,938 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 49, 536000)} +2025-03-24 17:14:58,938 - INFO - 处理记录: ts=2025-03-24 17:14:50.007000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0E 39 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 17:14:59,063 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:50.007000 +2025-03-24 17:14:59,063 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 50, 7000)} +2025-03-24 17:14:59,063 - INFO - 处理记录: ts=2025-03-24 17:14:50.011000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 0E 32 00 87 +2025-03-24 17:14:59,198 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:50.011000 +2025-03-24 17:14:59,198 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 50, 11000)} +2025-03-24 17:14:59,198 - INFO - 处理记录: ts=2025-03-24 17:14:51.661000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 0E 14 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D5 +2025-03-24 17:14:59,621 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:51.661000 +2025-03-24 17:14:59,621 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 51, 661000)} +2025-03-24 17:14:59,622 - INFO - 处理记录: ts=2025-03-24 17:14:51.741000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 0E 33 01 9F 09 00 00 22 +2025-03-24 17:14:59,806 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:51.741000 +2025-03-24 17:14:59,806 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 51, 741000)} +2025-03-24 17:14:59,806 - INFO - 处理记录: ts=2025-03-24 17:14:53.089000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 0E 36 00 00 02 01 01 0A 00 00 01 01 0A 00 00 66 +2025-03-24 17:15:00,225 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:53.089000 +2025-03-24 17:15:00,225 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 53, 89000)} +2025-03-24 17:15:00,225 - INFO - 处理记录: ts=2025-03-24 17:14:53.133000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 0E 36 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 05 +2025-03-24 17:15:00,437 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:53.133000 +2025-03-24 17:15:00,438 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 53, 133000)} +2025-03-24 17:15:00,438 - INFO - 处理记录: ts=2025-03-24 17:14:53.801000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 0F 01 01 02 01 01 01 01 79 +2025-03-24 17:15:00,614 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:53.801000 +2025-03-24 17:15:00,614 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 53, 801000)} +2025-03-24 17:15:00,614 - INFO - 处理记录: ts=2025-03-24 17:14:54.204000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 0E 36 00 72 +2025-03-24 17:15:00,784 - INFO - 插入充电枪 03173446113606131 的状态记录,时间戳 2025-03-24 17:14:54.204000 +2025-03-24 17:15:00,784 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03173446113606131', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 54, 204000)} +2025-03-24 17:15:00,784 - INFO - 处理记录: ts=2025-03-24 17:14:55.394000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 0E 37 00 57 +2025-03-24 17:15:00,940 - INFO - 插入充电枪 03174466031510401 的状态记录,时间戳 2025-03-24 17:14:55.394000 +2025-03-24 17:15:00,941 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03174466031510401', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 55, 394000)} +2025-03-24 17:15:00,941 - INFO - 处理记录: ts=2025-03-24 17:14:55.648000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 0E 18 00 02 01 01 01 01 A3 +2025-03-24 17:15:01,298 - INFO - 插入充电枪 03172887031510181 的状态记录,时间戳 2025-03-24 17:14:55.648000 +2025-03-24 17:15:01,298 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03172887031510181', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 55, 648000)} +2025-03-24 17:15:01,298 - INFO - 处理记录: ts=2025-03-24 17:14:55.777000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 0F 03 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 8A +2025-03-24 17:15:01,656 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:55.777000 +2025-03-24 17:15:01,656 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 1, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 55, 777000)} +2025-03-24 17:15:01,656 - INFO - 处理记录: ts=2025-03-24 17:14:56.212000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 0F 03 00 00 02 01 01 0A 00 00 01 01 0A 00 00 60 +2025-03-24 17:15:01,797 - INFO - 插入充电枪 03176763113606571 的状态记录,时间戳 2025-03-24 17:14:56.212000 +2025-03-24 17:15:01,797 - INFO - 插入到 charge_gun_state_record 表的数据: {'connector_id': '03176763113606571', 'status': 0, 'park_status': 10, 'lock_status': 10, 'created_at': datetime.datetime(2025, 3, 24, 17, 14, 56, 212000)} +2025-03-24 17:15:01,797 - INFO - 处理记录: ts=2025-03-24 17:14:56.263000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 0F 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 E8 +2025-03-24 17:15:01,896 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_gun_state_record.py b/charging_pile_proxy/hejin_forward/charge_gun_state_record.py new file mode 100644 index 0000000..e77c9fc --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_gun_state_record.py @@ -0,0 +1,259 @@ +import taosrest +import psycopg2 +from datetime import datetime +import binascii +import logging +import time + +# 配置日志 +logging.basicConfig( + filename='charge_gun_state_record.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeGunStateMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_connectors = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_hex_data(self, hex_data): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 提取枪号(假设在协议中枪号位于第11字节,0x01表示A枪,0x02表示B枪) + connector_suffix = '1' if hex_bytes[11] == 0x01 else '2' + + # 初始化数据字典 + data = { + 'command': command, + 'connector_suffix': connector_suffix, + 'status': 0, # 默认离网 + 'park_status': 10, # 默认空闲 + 'lock_status': 10 # 默认已解锁 + } + + # 25H - 充电信息 + if command == '25': + data.update({ + 'status': 3 # 充电中 + }) + + # 23H - 最新充电订单 + elif command == '23': + data.update({ + 'status': 1 # 充电完成,枪状态为空闲 + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的charge_gun_state_record表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID + hex_data = row[12] # 十六进制数据 + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 构造connector_id(pile_id + 枪号后缀) + connector_id = f"{pile_id}{parsed_data['connector_suffix']}" + + # 构造唯一标识(connector_id + timestamp) + connector_key = f"{connector_id}_{timestamp}" + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM charge_gun_state_record WHERE connector_id = %s AND created_at = %s + """ + self.pg_cursor.execute(check_query, (connector_id, timestamp)) + exists = self.pg_cursor.fetchone() is not None + + # 如果记录已存在,跳过 + if exists or connector_key in self.processed_connectors: + logging.info(f"充电枪 {connector_id} 的状态记录已存在,时间戳 {timestamp},跳过") + continue + + # 准备插入PostgreSQL的数据 + insert_query = """ + INSERT INTO public.charge_gun_state_record ( + connector_id, status, park_status, lock_status, created_at + ) VALUES (%s, %s, %s, %s, %s) + """ + values = ( + connector_id, + parsed_data['status'], + parsed_data['park_status'], + parsed_data['lock_status'], + timestamp + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_connectors.add(connector_key) + logging.info(f"插入充电枪 {connector_id} 的状态记录,时间戳 {timestamp}") + + # 记录插入的完整数据 + log_values = { + 'connector_id': connector_id, + 'status': parsed_data['status'], + 'park_status': parsed_data['park_status'], + 'lock_status': parsed_data['lock_status'], + 'created_at': timestamp + } + logging.info(f"插入到 charge_gun_state_record 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = ChargeGunStateMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_jiuxing.log b/charging_pile_proxy/hejin_forward/charge_jiuxing.log new file mode 100644 index 0000000..b32d2f9 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_jiuxing.log @@ -0,0 +1,20 @@ +2025-03-21 15:52:54,015 - INFO - Connected to MQTT broker +2025-03-21 15:52:54,031 - INFO - Subscribed to hejin/charging/log +2025-03-21 15:52:55,665 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-21 15:52:54.067', '4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 15 0F 34 36 01 02 01 01 01 01 54', '0317344611360613', 'u'] +2025-03-21 15:52:55,665 - INFO - 未处理的命令码: 0C +2025-03-21 15:52:55,848 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-21 15:52:54.250', '4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 15 0F 34 3A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 9B', '0317676311360657', 'u'] +2025-03-21 15:52:55,850 - INFO - 未处理的命令码: 23 +2025-03-21 15:52:55,891 - INFO - Received message: ['139.9.209.227', '192.168.8.102', '2025-03-21 15:52:54.294', '4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 15 0F 34 36 00 5B', '0317344611360613', 'd'] +2025-03-21 15:52:55,891 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-21 15:52:56,161 - INFO - Received message: ['192.168.8.100', '139.9.209.227', '2025-03-21 15:52:54.562', '4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 15 0F 34 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 85 10 A8 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 5E 4D DF 01 00 00 00 00 00 00 00 00 00 00 3E', '0317288703151018', 'u'] +2025-03-21 15:52:56,161 - INFO - 未处理的命令码: 0A +2025-03-21 15:52:56,293 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-21 15:52:54.693', '4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 15 0F 34 3A 01 02 01 01 01 01 6A', '0317676311360657', 'u'] +2025-03-21 15:52:56,293 - INFO - 未处理的命令码: 0C +2025-03-21 15:52:57,088 - INFO - Received message: ['139.9.209.227', '192.168.8.200', '2025-03-21 15:52:55.491', '4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 15 0F 34 37 00 7E', '0317446603151040', 'd'] +2025-03-21 15:52:57,088 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-21 15:52:58,115 - ERROR - TDengine connection error: +2025-03-21 15:53:31,950 - INFO - Connected to MQTT broker +2025-03-21 15:53:31,966 - INFO - Subscribed to hejin/charging/log +2025-03-21 15:53:35,141 - INFO - Received message: ['139.9.209.227', '192.168.8.104', '2025-03-21 15:53:33.542', '4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 15 0F 35 21 00 7F', '0317676311360657', 'd'] +2025-03-21 15:53:35,142 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-21 15:53:36,044 - ERROR - TDengine connection error: diff --git a/charging_pile_proxy/hejin_forward/charge_order.py b/charging_pile_proxy/hejin_forward/charge_order.py new file mode 100644 index 0000000..40b6902 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order.py @@ -0,0 +1,244 @@ +import paho.mqtt.client as mqtt +import json +import logging +import taosrest +from datetime import datetime + +# 配置日志 +logging.basicConfig( + filename='charge_order_jiuxing.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeOrderJiuxingParser: + def __init__(self, mqtt_host="123.6.102.119", mqtt_port=1883, mqtt_username="emqx_test", mqtt_password="emqx_test", + tdengine_url="http://123.6.102.119:6041", tdengine_user="readonly_user", tdengine_password="Aassword123"): + # MQTT 配置 + self.mqtt_client = mqtt.Client(client_id="ChargeOrderJiuxingParser", protocol=mqtt.MQTTv311, + callback_api_version=mqtt.CallbackAPIVersion.VERSION2) + self.mqtt_client.username_pw_set(mqtt_username, mqtt_password) + self.mqtt_client.on_connect = self.on_connect + self.mqtt_client.on_message = self.on_message + self.mqtt_host = mqtt_host + self.mqtt_port = mqtt_port + self.connected = False + + # TDengine 配置 + self.tdengine_url = tdengine_url + self.tdengine_user = tdengine_user + self.tdengine_password = tdengine_password + self.tdengine_conn = None + + def connect(self): + """连接 MQTT 和 TDengine""" + # 连接 MQTT + try: + self.mqtt_client.connect(self.mqtt_host, self.mqtt_port, 60) + self.mqtt_client.loop_start() + logging.info("Connected to MQTT broker") + except Exception as e: + logging.error(f"MQTT connection error: {str(e)}") + raise + + # 连接 TDengine + try: + self.tdengine_conn = taosrest.connect( + url=self.tdengine_url, + user=self.tdengine_user, + password=self.tdengine_password, + database="tms_design" + ) + logging.info("Connected to TDengine via REST") + except Exception as e: + logging.error(f"TDengine connection error: {str(e)}") + raise + + def on_connect(self, client, userdata, flags, rc, properties=None): + if rc == 0: + self.connected = True + self.mqtt_client.subscribe("hejin/charging/log", qos=1) + logging.info("Subscribed to hejin/charging/log") + else: + logging.error(f"Failed to connect to MQTT broker with code: {rc}") + + def on_message(self, client, userdata, msg, properties=None): + """处理接收到的 MQTT 消息""" + try: + payload = msg.payload.decode('utf-8') + data = json.loads(payload) + logging.info(f"Received message: {data}") + + # 解析报文并存储 + sql = self.parse_and_generate_sql(data) + if sql: + self.tdengine_conn.execute(sql) + logging.info(f"Inserted into TDengine: {sql}") + except Exception as e: + logging.error(f"Error processing message: {str(e)}") + + def hex_to_ascii(self, hex_str): + """将 HEX 字符串转为 ASCII""" + try: + return bytes.fromhex(hex_str).decode('ascii').strip('\x00') + except: + return "" + + def parse_bcd_time(self, bcd): + """解析 BCD 码时间(格式:YYMMDDHHMMSS)""" + try: + year = f"20{bcd[0:2]}" # 假设 19 表示 2019 + month = bcd[2:4] + day = bcd[4:6] + hour = bcd[6:8] + minute = bcd[8:10] + second = bcd[10:12] + return f"{year}-{month}-{day}T{hour}:{minute}:{second}+08:00" + except: + return None + + def parse_and_generate_sql(self, data): + """解析报文并生成插入 SQL""" + hex_data = data[3].replace(" ", "") # 移除空格 + pile_id = data[4] # 桩号 + time = data[2].replace(" ", "T") + "+08:00" # 时间 + + # 提取基本字段 + if len(hex_data) < 30: # 最小长度:14字节(HEX表示为28字符)+校验码(2) + logging.warning(f"数据包长度不足: {hex_data}") + return None + + company = hex_data[0:4] # 4A58 + if company != "4A58": + logging.warning(f"无效帧起始: {company}") + return None + + cmd = hex_data[4:6] # 命令码 + length_str = hex_data[24:28] # 数据域长度 + length = int(length_str, 16) * 2 # HEX字符数 + data_domain = hex_data[28:28 + length] if length > 0 else "" + + # 从桩号提取信息 + operator_id = pile_id[0:4] # 运营商编号 + station_no = pile_id[6:12] # 站点编号 + equip_no = pile_id[12:16] # 站内桩地址(作为充电机编号) + + # 初始化默认值 + order_sn = "unknown" + start_time = time + stop_time = None # 充电结束时间未知 + start_soc = 0.0 + stop_soc = 0.0 + elect_amount = 0.0 + chg_time = 0 + battery_id = "unknown" + plate_no = "unknown" + vin = "unknown" + stop_reason = 0 + sharp_elect = 0.0 + peak_elect = 0.0 + valley_elect = 0.0 + total_money = 0.0 + elect_money = 0.0 + service_money = 0.0 + battery_money = 0.0 + rate_model_id = "unknown" + exchange_order_sn = "unknown" + chg_switch = 0 + start_type = 0 + created_at = time + flat_elect = 0.0 + + # 根据命令码解析数据域 + if cmd == "0B": # 平台心跳 + if len(data_domain) >= 12: # 6字节时间 + 1字节超时次数 + time_str = data_domain[0:12] # BCD码时间 + parsed_time = self.parse_bcd_time(time_str) + if parsed_time: + start_time = parsed_time + created_at = parsed_time + + elif cmd == "25": # 充电信息(表 3.9.9) + if len(data_domain) >= 92: # 确保数据域足够长 + # 充电用户编号(字节 0-15,ASCII) + battery_id = self.hex_to_ascii(data_domain[0:32]) + # 充电电压(字节 16-17,HEX,单位 0.1V) + voltage = int(data_domain[32:36], 16) / 10.0 + # 充电电流(字节 18-19,HEX,单位 0.1A) + current = int(data_domain[36:40], 16) / 10.0 + # 充电电量(字节 20-21,HEX,单位 0.01kWh) + elect_amount = round(int(data_domain[40:44], 16) / 100.0, 2) + # SOC(字节 22,HEX,单位 %) + start_soc = int(data_domain[44:46], 16) + # 故障状态(字节 23-26,HEX) + fault_status = data_domain[46:54] + # 充电状态(字节 27,HEX) + charge_status = int(data_domain[54:56], 16) + # 充电开始时间(字节 28-33,BCD码) + start_time_str = data_domain[56:68] + start_time = self.parse_bcd_time(start_time_str) or start_time + # 充电结束时间(字节 34-39,BCD码) + stop_time_str = data_domain[68:80] + stop_time = self.parse_bcd_time(stop_time_str) + # 充电时长(字节 40-41,HEX,单位 秒) + chg_time = int(data_domain[80:84], 16) + # 停止原因(字节 42,HEX) + stop_reason = int(data_domain[84:86], 16) + # 尖时段电量(字节 43-44,HEX,单位 0.01kWh) + sharp_elect = round(int(data_domain[86:90], 16) / 100.0, 2) + # 峰时段电量(字节 45-46,HEX,单位 0.01kWh) + peak_elect = round(int(data_domain[90:94], 16) / 100.0, 2) + # 谷时段电量(字节 47-48,HEX,单位 0.01kWh) + valley_elect = round(int(data_domain[94:98], 16) / 100.0, 2) + # 总费用(字节 49-50,HEX,单位 0.01元) + total_money = round(int(data_domain[98:102], 16) / 100.0, 2) + # 电费(字节 51-52,HEX,单位 0.01元) + elect_money = round(int(data_domain[102:106], 16) / 100.0, 2) + # 服务费(字节 53-54,HEX,单位 0.01元) + service_money = round(int(data_domain[106:110], 16) / 100.0, 2) + # 平时段电量(字节 55-56,HEX,单位 0.01kWh) + flat_elect = round(int(data_domain[110:114], 16) / 100.0, 2) + + else: + logging.info(f"未处理的命令码: {cmd}") + return None # 跳过未处理的命令 + + # 构建插入 SQL + stop_time_sql = f"'{stop_time}'" if stop_time else "NULL" + sql = ( + "INSERT INTO charge_order_jiuxing (order_sn, operator_id, station_no, equip_no, start_time, stop_time, " + "start_soc, stop_soc, elect_amount, chg_time, battery_id, plate_no, vin, stop_reason, sharp_elect, peak_elect, " + "valley_elect, total_money, elect_money, service_money, battery_money, rate_model_id, exchange_order_sn, " + "chg_switch, start_type, created_at, flat_elect) VALUES " + f"('{order_sn}', '{operator_id}', '{station_no}', '{equip_no}', '{start_time}', {stop_time_sql}, " + f"{start_soc}, {stop_soc}, {elect_amount}, {chg_time}, '{battery_id}', '{plate_no}', '{vin}', {stop_reason}, " + f"{sharp_elect}, {peak_elect}, {valley_elect}, {total_money}, {elect_money}, {service_money}, {battery_money}, " + f"'{rate_model_id}', '{exchange_order_sn}', {chg_switch}, {start_type}, '{created_at}', {flat_elect})" + ) + return sql + + def run(self): + """启动程序""" + self.connect() + try: + while True: + pass # 保持程序运行 + except KeyboardInterrupt: + self.mqtt_client.loop_stop() + self.mqtt_client.disconnect() + if self.tdengine_conn: + self.tdengine_conn.close() + logging.info("Program stopped") + +if __name__ == "__main__": + parser = ChargeOrderJiuxingParser( + mqtt_host="123.6.102.119", + mqtt_port=1883, + mqtt_username="emqx_test", + mqtt_password="emqx_test", + tdengine_url="http://localhost:6041", # 根据实际环境修改 + tdengine_user="root", + tdengine_password="taosdata" + ) + parser.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_order_compute_detail.log b/charging_pile_proxy/hejin_forward/charge_order_compute_detail.log new file mode 100644 index 0000000..35ff9c0 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_compute_detail.log @@ -0,0 +1,3443 @@ +2025-03-24 09:00:52,947 - INFO - Connected to MQTT broker +2025-03-24 09:00:52,965 - INFO - Subscribed to hejin/charging/log +2025-03-24 09:00:54,526 - INFO - Received message: ['192.168.8.100', '139.9.209.227', '2025-03-24 09:00:50.917', '4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 09 00 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 53 88 AB 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C5 B0 E2 01 00 00 00 00 00 00 00 00 00 00 1E', '0317288703151018', 'u'] +2025-03-24 09:00:54,526 - INFO - 未处理的命令码: 0A +2025-03-24 09:00:55,786 - INFO - Received message: ['139.9.209.227', '192.168.8.102', '2025-03-24 09:00:52.177', '4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 09 00 36 00 64', '0317344611360613', 'd'] +2025-03-24 09:00:55,788 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-24 09:00:57,029 - ERROR - PostgreSQL connection error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? +connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? + +2025-03-24 09:01:21,821 - INFO - Connected to MQTT broker +2025-03-24 09:01:21,839 - INFO - Subscribed to hejin/charging/log +2025-03-24 09:01:22,119 - INFO - Received message: ['192.168.8.100', '139.9.209.227', '2025-03-24 09:01:18.510', '4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 09 00 32 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E5', '0317288703151018', 'u'] +2025-03-24 09:01:22,119 - INFO - 未处理的命令码: 33 +2025-03-24 09:01:22,195 - INFO - Received message: ['139.9.209.227', '192.168.8.100', '2025-03-24 09:01:18.590', '4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 09 01 14 01 9F 09 00 00 12', '0317288703151018', 'd'] +2025-03-24 09:01:22,195 - INFO - 未处理的命令码: 34 +2025-03-24 09:01:22,669 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-24 09:01:19.061', '4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 09 01 16 01 02 01 01 01 01 4A', '0317344611360613', 'u'] +2025-03-24 09:01:22,669 - INFO - 未处理的命令码: 0C +2025-03-24 09:01:24,558 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-24 09:01:20.950', '4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 09 01 18 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5F', '0317344611360613', 'u'] +2025-03-24 09:01:24,558 - INFO - 未处理的命令码: 09 +2025-03-24 09:01:24,585 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 09:01:20.979', '4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 09 01 1F 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3E', '0317665611360637', 'u'] +2025-03-24 09:01:24,585 - INFO - 未处理的命令码: 09 +2025-03-24 09:01:24,610 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-24 09:01:20.998', '4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 09 01 18 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 7A 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 78 00 00 00 00 34', '0317344611360613', 'u'] +2025-03-24 09:01:24,610 - INFO - 未处理的命令码: 0A +2025-03-24 09:01:24,636 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 09:01:21.030', '4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 09 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 76 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 7D 00 00 00 00 97', '0317665611360637', 'u'] +2025-03-24 09:01:24,636 - INFO - 未处理的命令码: 0A +2025-03-24 09:01:25,783 - INFO - Received message: ['139.9.209.227', '192.168.8.102', '2025-03-24 09:01:22.177', '4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 09 01 18 00 4B', '0317344611360613', 'd'] +2025-03-24 09:01:25,784 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-24 09:01:25,902 - ERROR - PostgreSQL connection error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? +connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? + +2025-03-24 09:01:32,476 - INFO - Connected to MQTT broker +2025-03-24 09:01:32,493 - INFO - Subscribed to hejin/charging/log +2025-03-24 09:01:32,958 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 09:01:29.349', '4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 09 01 27 01 02 01 01 01 01 1D', '0317665611360637', 'u'] +2025-03-24 09:01:32,958 - INFO - 未处理的命令码: 0C +2025-03-24 09:01:34,629 - INFO - Received message: ['192.168.8.100', '139.9.209.227', '2025-03-24 09:01:31.019', '4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 09 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 53 88 AB 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C5 B0 E2 01 00 00 00 00 00 00 00 00 00 00 0B', '0317288703151018', 'u'] +2025-03-24 09:01:34,629 - INFO - 未处理的命令码: 0A +2025-03-24 09:01:35,036 - INFO - Received message: ['139.9.209.227', '192.168.8.104', '2025-03-24 09:01:31.426', '4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 09 01 21 00 40', '0317676311360657', 'd'] +2025-03-24 09:01:35,036 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-24 09:01:36,585 - ERROR - PostgreSQL connection error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? +connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? + +2025-03-24 10:03:10,457 - INFO - Connected to MQTT broker +2025-03-24 10:03:10,475 - INFO - Subscribed to hejin/charging/log +2025-03-24 10:03:10,767 - INFO - Received message: ['139.9.209.227', '192.168.8.102', '2025-03-24 10:03:07.073', '4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 0A 03 09 00 5B', '0317344611360613', 'd'] +2025-03-24 10:03:10,767 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-24 10:03:14,518 - ERROR - PostgreSQL connection error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? +connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? + +2025-03-24 10:03:20,234 - INFO - Connected to MQTT broker +2025-03-24 10:03:20,249 - INFO - Subscribed to hejin/charging/log +2025-03-24 10:03:20,753 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-24 10:03:17.059', '4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 0A 03 1A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 84', '0317676311360657', 'u'] +2025-03-24 10:03:20,753 - INFO - 未处理的命令码: 23 +2025-03-24 10:03:22,032 - INFO - Received message: ['192.168.8.200', '139.9.209.227', '2025-03-24 10:03:18.340', '4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 0A 03 14 00 02 01 01 01 01 6C', '0317446603151040', 'u'] +2025-03-24 10:03:22,032 - INFO - 未处理的命令码: 0C +2025-03-24 10:03:24,067 - INFO - Received message: ['192.168.8.200', '139.9.209.227', '2025-03-24 10:03:20.374', '4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 0A 03 16 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 81', '0317446603151040', 'u'] +2025-03-24 10:03:24,067 - INFO - 未处理的命令码: 33 +2025-03-24 10:03:24,150 - INFO - Received message: ['139.9.209.227', '192.168.8.200', '2025-03-24 10:03:20.458', '4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 0A 03 16 00 A3 03 00 00 F3', '0317446603151040', 'd'] +2025-03-24 10:03:24,150 - INFO - 未处理的命令码: 34 +2025-03-24 10:03:24,222 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 10:03:20.531', '4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 0A 03 1F 01 02 01 01 01 01 24', '0317665611360637', 'u'] +2025-03-24 10:03:24,222 - INFO - 未处理的命令码: 0C +2025-03-24 10:03:24,337 - ERROR - PostgreSQL connection error: connection to server at "localhost" (::1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? +connection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused (0x0000274D/10061) + Is the server running on that host and accepting TCP/IP connections? + +2025-03-24 12:06:31,822 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 12:06:33,377 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 12:06:33,377 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 12:06:33,377 - INFO - 数据库连接已关闭 +2025-03-24 17:16:20,143 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:16:29,319 - INFO - 成功连接到TDengine +2025-03-24 17:16:29,358 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:16:29,358 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:16:29,511 - INFO - 成功连接到PostgreSQL +2025-03-24 17:16:29,554 - INFO - 初始化last_processed_ts: 2025-03-24 17:16:27.119000 +2025-03-24 17:16:29,608 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:16:39,650 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:39,691 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,691 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:39,732 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,732 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:39,792 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,792 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:39,792 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:39,829 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,829 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:39,871 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,872 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:39,922 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,922 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:39,963 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:39,963 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:40,002 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,002 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:40,038 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,038 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:40,075 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,075 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:40,111 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,111 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:40,147 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,147 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:40,183 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,183 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:40,183 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:40,220 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,220 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:40,257 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,257 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:40,293 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,293 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:40,331 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,331 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:40,435 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,435 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:40,471 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,471 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:40,507 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,552 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:40,588 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,588 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:40,623 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,624 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:40,660 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,661 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:40,661 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:40,697 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,697 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:40,734 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,734 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:40,786 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,786 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:40,833 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,833 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:40,878 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,878 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:40,915 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,915 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:40,950 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,950 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:40,987 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:40,988 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:41,026 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,026 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:41,065 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,065 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:41,065 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:41,101 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,101 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:41,138 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,138 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:41,175 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,175 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:41,210 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,210 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:41,247 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,247 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:41,286 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,286 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:41,321 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,321 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:41,359 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,359 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:41,396 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,434 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:41,471 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,471 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:41,507 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,508 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:41,544 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,544 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:41,544 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:41,582 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,582 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:41,617 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,617 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:41,655 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,656 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:41,708 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,708 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:41,743 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,743 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:41,780 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,780 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:41,817 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,817 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:41,861 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,861 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:41,899 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,899 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:41,936 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,936 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:41,937 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:41,974 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:41,974 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:42,011 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,011 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:42,046 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,047 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:42,084 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,084 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:42,122 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,122 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:42,166 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,166 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:42,216 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,216 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:42,252 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,252 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:42,288 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,288 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:42,325 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,325 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:42,362 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,362 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:42,362 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:42,399 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,445 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:42,482 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,482 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:42,527 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,527 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:42,565 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,565 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:42,565 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:42,603 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,603 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:42,640 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,640 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:42,680 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,680 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:42,725 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,725 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:42,763 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,763 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:42,800 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,800 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:42,837 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,837 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:42,877 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,878 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:42,926 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,926 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:42,984 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:42,984 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:42,984 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:43,019 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,019 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:43,057 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,057 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:43,093 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,093 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:43,130 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,130 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:43,171 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,171 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:43,205 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,205 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:43,241 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,241 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:43,279 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,279 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:43,315 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,315 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:43,353 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,353 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:43,392 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,392 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:43,392 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:43,435 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,474 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:43,512 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,512 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:43,552 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,552 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:43,588 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,588 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:43,588 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:43,624 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,625 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:43,660 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,660 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:43,699 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,700 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:43,737 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,737 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:43,775 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,775 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:43,812 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,812 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:43,850 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,850 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:43,886 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,886 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:43,925 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,925 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:43,963 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,963 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:43,963 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:43,999 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:43,999 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:44,035 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,036 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:44,072 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,072 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:44,110 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,110 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:44,146 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,146 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:44,183 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,183 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:44,221 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,221 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:44,259 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,259 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:44,296 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,296 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:44,334 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,334 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:44,370 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,372 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:44,372 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:44,407 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,407 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:44,445 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,500 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:44,537 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,538 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:44,575 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,575 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:44,611 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,611 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:44,611 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:44,648 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,648 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:44,684 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,684 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:44,722 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,722 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:44,760 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,760 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:44,898 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,898 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:44,940 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:44,940 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:45,084 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,084 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:45,138 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,139 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:45,280 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,280 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:45,330 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,331 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:45,331 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:45,406 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,406 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:45,561 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,561 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:45,651 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,651 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:45,706 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,706 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:45,744 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,744 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:45,878 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,878 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:45,929 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,929 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:45,967 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:45,967 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:46,084 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,084 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:46,148 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,148 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:46,250 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,250 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:46,250 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:46,317 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,317 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:46,395 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,395 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:46,544 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,588 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:46,741 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,741 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:46,779 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,780 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:46,931 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,931 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:46,931 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:46,965 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:46,965 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:47,123 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,123 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:47,160 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,160 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:47,198 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,198 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:47,341 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,341 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:47,403 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,403 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:47,496 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,496 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:47,539 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,540 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:47,585 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,586 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:47,623 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,623 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:47,623 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:47,661 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,661 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:47,701 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,701 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:47,741 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,741 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:47,778 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,778 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:47,817 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,817 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:47,856 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,856 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:47,893 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,893 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:47,935 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,935 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:47,972 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:47,972 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:48,009 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,009 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:48,047 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,047 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:48,047 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:48,084 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,084 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:48,123 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,123 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:48,163 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,163 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:48,206 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,207 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:48,245 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,245 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:48,286 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,286 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:48,326 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,379 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:48,418 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,418 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:48,455 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,455 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:48,492 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,492 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:48,492 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:48,527 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,527 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:48,569 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,569 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:48,606 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,606 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:48,643 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,644 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:48,682 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,682 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:48,719 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,719 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:48,758 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,758 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:48,793 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,793 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:48,831 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,831 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:48,870 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,870 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:48,870 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:48,909 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,909 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:48,958 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,958 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:48,997 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:48,997 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:49,034 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,035 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:49,072 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,072 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:49,112 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,112 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:49,148 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,148 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:49,184 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,184 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:49,220 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,220 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:49,259 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,259 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:49,296 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,296 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:49,296 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:49,332 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,332 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:49,370 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,370 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:49,407 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,407 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:49,443 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,443 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:49,480 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,480 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:49,518 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,518 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:49,556 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,556 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:49,556 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:49,596 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,596 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:49,633 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,675 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:49,713 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,713 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:49,751 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,751 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:49,789 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,789 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:49,790 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:49,832 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,832 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:49,867 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,867 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:49,903 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,904 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:49,942 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,942 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:49,979 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:49,979 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:50,018 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,018 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:50,055 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,055 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:50,093 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,093 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:50,133 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,133 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:50,177 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,177 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:50,177 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:50,213 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,213 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:50,251 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,251 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:50,288 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,288 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:50,329 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,329 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:50,438 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,438 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:50,475 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,476 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:50,512 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,512 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:50,547 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,547 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:50,584 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,584 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:50,621 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,622 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:50,658 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,658 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:50,658 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:50,693 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,693 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:50,730 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,730 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:50,767 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,767 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:50,803 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,803 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:50,839 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,840 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:50,877 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,877 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:50,914 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,914 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:50,914 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:50,952 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,952 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:50,989 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:50,989 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:51,025 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,025 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:51,061 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,103 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:51,139 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,139 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:51,177 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,177 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:51,215 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,215 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:51,216 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:51,252 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,252 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:51,289 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,290 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:51,330 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,330 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:51,369 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,369 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:51,405 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,405 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:51,443 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,443 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:51,479 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,479 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:51,517 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,517 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:51,554 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,554 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:51,590 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,590 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:51,590 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:51,628 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,628 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:51,664 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,664 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:51,702 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,702 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:51,740 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,740 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:51,776 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,777 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:51,814 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,814 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:51,850 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,850 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:51,886 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,886 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:51,923 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,923 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:51,958 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,959 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:51,994 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:51,994 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:51,994 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:52,031 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,031 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:52,068 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,068 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:52,110 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,110 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:52,149 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,149 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:52,187 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,187 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:52,225 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,225 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:52,268 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,269 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:52,269 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:52,306 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,306 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:52,343 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,343 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:52,383 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,383 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:52,420 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,420 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:16:52,458 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,458 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:16:52,495 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,535 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:52,573 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,573 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:52,610 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,612 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:52,646 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,646 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:52,647 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:52,684 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,684 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:52,723 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,723 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:52,760 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,760 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:52,796 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,796 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:52,837 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,837 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:52,874 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,874 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:52,912 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,912 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:52,947 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,947 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:52,983 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:52,983 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:53,021 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,021 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:53,021 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:53,064 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,064 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:53,103 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,103 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:53,141 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,141 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:53,179 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,179 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:53,217 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,217 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:53,255 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,255 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:53,293 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,293 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:53,330 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,330 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:53,370 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,370 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:53,408 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,408 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:53,446 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,446 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:53,446 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:53,484 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,484 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:53,521 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,521 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:53,559 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,560 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:53,600 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,600 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:53,637 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,637 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:53,676 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,676 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:53,714 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,714 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:53,714 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:53,751 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,751 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:53,788 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,788 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:53,826 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,826 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:53,865 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,865 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:16:53,904 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,904 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:16:53,940 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,941 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:16:53,978 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:53,978 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:16:54,015 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,015 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:16:54,050 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,098 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:54,136 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,136 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:54,173 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,173 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:54,214 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,214 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:54,214 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:54,251 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,251 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:54,288 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,288 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:54,325 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,325 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:54,362 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,362 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:54,399 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,399 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:54,438 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,438 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:54,476 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,476 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:54,510 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,510 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:54,547 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,547 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:54,584 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,585 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:54,585 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:54,623 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,623 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:54,660 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,660 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:54,698 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,698 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:54,737 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,738 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:54,777 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,777 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:54,814 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,814 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:54,849 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,849 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:54,884 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,885 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:54,920 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,920 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:54,957 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,957 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:54,992 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:54,992 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:54,992 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:55,030 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,030 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:55,075 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,076 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:55,126 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,126 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:55,170 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,170 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:55,214 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,214 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:55,253 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,253 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:55,304 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,304 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:55,304 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:55,353 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,353 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:55,394 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,394 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:55,433 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,433 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:55,472 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,472 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:16:55,510 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,510 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:16:55,549 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,549 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:16:55,585 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,585 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:16:55,623 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,623 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:16:55,660 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,660 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:16:55,694 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,694 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:16:55,732 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,732 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:16:55,732 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:55,767 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,807 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:55,845 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,845 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:55,883 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,883 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:55,917 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,918 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:55,918 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:55,955 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,955 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:55,991 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:55,991 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:56,033 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,033 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:56,069 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,069 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:56,106 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,106 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:56,143 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,143 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:56,179 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,179 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:56,217 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,217 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:56,253 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,253 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:56,286 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,287 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:56,287 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:56,323 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,323 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:56,361 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,361 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:56,399 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,399 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:56,438 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,438 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:56,476 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,476 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:56,516 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,516 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:56,554 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,554 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:56,590 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,590 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:56,631 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,631 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:56,668 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,668 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:56,705 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,705 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:56,705 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:56,740 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,740 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:56,779 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,779 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:56,816 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,816 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:56,855 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,855 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:56,892 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,893 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:56,930 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,930 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:56,966 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:56,966 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:56,966 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:57,000 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,000 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:57,041 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,041 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:57,077 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,077 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:57,114 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,114 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:16:57,153 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,153 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:16:57,192 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,192 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:16:57,231 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,231 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:16:57,268 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,268 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:16:57,306 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,307 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:16:57,342 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,342 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:16:57,378 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,378 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:16:57,378 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:57,415 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,415 - INFO - 处理记录: ts=2025-03-24 17:16:53.205000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 16 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C9 +2025-03-24 17:16:57,452 - ERROR - 处理时间戳为 2025-03-24 17:16:53.205000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,452 - INFO - 处理记录: ts=2025-03-24 17:16:53.287000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 35 01 9F 09 00 00 3A +2025-03-24 17:16:57,488 - ERROR - 处理时间戳为 2025-03-24 17:16:53.287000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,488 - INFO - 处理记录: ts=2025-03-24 17:16:54.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 36 00 6C +2025-03-24 17:16:57,526 - ERROR - 处理时间戳为 2025-03-24 17:16:54.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,578 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:57,617 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,617 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:57,654 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,654 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:57,689 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,690 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:57,690 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:57,728 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,728 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:57,766 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,766 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:57,803 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,803 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:57,839 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,840 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:57,884 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,884 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:57,920 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,920 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:57,958 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,958 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:57,998 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:57,998 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:58,035 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,035 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:58,073 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,073 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:58,073 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:58,109 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,109 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:16:58,145 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,145 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:16:58,183 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,183 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:16:58,218 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,218 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:16:58,253 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,253 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:16:58,289 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,289 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:16:58,325 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,325 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:16:58,364 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,364 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:16:58,400 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,400 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:16:58,437 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,437 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:16:58,473 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,473 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:16:58,473 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:58,513 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,513 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:16:58,553 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,553 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:16:58,593 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,593 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:16:58,629 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,629 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:16:58,666 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,666 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:16:58,703 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,703 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:16:58,740 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,740 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:16:58,740 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:58,776 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,776 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:16:58,812 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,812 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:16:58,849 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,850 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:16:58,887 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,887 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:16:58,923 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,923 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:16:58,963 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:58,963 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:16:59,004 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,004 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:16:59,038 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,038 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:16:59,073 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,073 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:16:59,110 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,110 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:16:59,148 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,148 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:16:59,148 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:59,184 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,184 - INFO - 处理记录: ts=2025-03-24 17:16:53.205000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 16 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C9 +2025-03-24 17:16:59,223 - ERROR - 处理时间戳为 2025-03-24 17:16:53.205000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,223 - INFO - 处理记录: ts=2025-03-24 17:16:53.287000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 35 01 9F 09 00 00 3A +2025-03-24 17:16:59,263 - ERROR - 处理时间戳为 2025-03-24 17:16:53.287000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,263 - INFO - 处理记录: ts=2025-03-24 17:16:54.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 36 00 6C +2025-03-24 17:16:59,304 - ERROR - 处理时间戳为 2025-03-24 17:16:54.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,305 - INFO - 处理记录: ts=2025-03-24 17:16:55.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 37 00 49 +2025-03-24 17:16:59,341 - ERROR - 处理时间戳为 2025-03-24 17:16:55.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,341 - INFO - 处理记录: ts=2025-03-24 17:16:55.986000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 18 00 02 01 01 01 01 BD +2025-03-24 17:16:59,377 - ERROR - 处理时间戳为 2025-03-24 17:16:55.986000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,422 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:16:59,458 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,458 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:16:59,497 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,497 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:16:59,533 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,534 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:16:59,534 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:59,573 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,573 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:16:59,611 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,611 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:16:59,653 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,653 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:16:59,689 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,689 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:16:59,727 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,727 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:16:59,772 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,773 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:16:59,809 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,809 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:16:59,846 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,847 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:16:59,884 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,884 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:16:59,931 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,931 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:16:59,931 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:16:59,968 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:16:59,968 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:17:00,005 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,005 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:17:00,042 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,042 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:17:00,078 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,078 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:17:00,118 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,118 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:17:00,153 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,153 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:17:00,190 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,192 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:17:00,232 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,232 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:17:00,269 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,269 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:17:00,305 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,305 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:17:00,340 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,340 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:17:00,340 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:00,458 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,458 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:17:00,495 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,495 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:17:00,532 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,532 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:17:00,572 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,572 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:17:00,615 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,615 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:17:00,654 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,654 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:17:00,692 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,692 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:17:00,692 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:00,737 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,737 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:17:00,776 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,776 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:17:00,810 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,810 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:17:00,848 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,849 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:17:00,885 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,885 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:17:00,923 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,923 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:17:00,959 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,959 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:17:00,996 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:00,996 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:17:01,032 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,032 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:17:01,070 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,070 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:17:01,106 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,106 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:17:01,107 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:01,142 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,142 - INFO - 处理记录: ts=2025-03-24 17:16:53.205000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 16 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C9 +2025-03-24 17:17:01,179 - ERROR - 处理时间戳为 2025-03-24 17:16:53.205000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,179 - INFO - 处理记录: ts=2025-03-24 17:16:53.287000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 35 01 9F 09 00 00 3A +2025-03-24 17:17:01,217 - ERROR - 处理时间戳为 2025-03-24 17:16:53.287000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,218 - INFO - 处理记录: ts=2025-03-24 17:16:54.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 36 00 6C +2025-03-24 17:17:01,253 - ERROR - 处理时间戳为 2025-03-24 17:16:54.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,253 - INFO - 处理记录: ts=2025-03-24 17:16:55.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 37 00 49 +2025-03-24 17:17:01,291 - ERROR - 处理时间戳为 2025-03-24 17:16:55.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,291 - INFO - 处理记录: ts=2025-03-24 17:16:55.986000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 18 00 02 01 01 01 01 BD +2025-03-24 17:17:01,326 - ERROR - 处理时间戳为 2025-03-24 17:16:55.986000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,326 - INFO - 处理记录: ts=2025-03-24 17:16:57.331000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 11 04 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 93 +2025-03-24 17:17:01,326 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:01,365 - ERROR - 处理时间戳为 2025-03-24 17:16:57.331000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,365 - INFO - 处理记录: ts=2025-03-24 17:16:57.786000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 11 05 01 02 01 01 01 01 63 +2025-03-24 17:17:01,404 - ERROR - 处理时间戳为 2025-03-24 17:16:57.786000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,450 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:17:01,495 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,495 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:17:01,541 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,541 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:17:01,589 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,589 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:17:01,589 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:01,625 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,626 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:17:01,662 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,662 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:17:01,698 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,698 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:17:01,734 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,734 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:17:01,770 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,770 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:17:01,808 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,808 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:17:01,846 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,846 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:17:01,885 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,885 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:17:01,923 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,923 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:17:01,959 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,959 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:17:01,959 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:01,995 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:01,996 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:17:02,032 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,032 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:17:02,076 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,076 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:17:02,112 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,112 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:17:02,149 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,149 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:17:02,186 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,186 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:17:02,221 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,221 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:17:02,258 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,258 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:17:02,296 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,297 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:17:02,334 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,334 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:17:02,370 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,370 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:17:02,370 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:02,407 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,407 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:17:02,444 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,445 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:17:02,482 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,482 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:17:02,519 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,519 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:17:02,559 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,559 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:17:02,593 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,593 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:17:02,630 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,630 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:17:02,630 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:02,667 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,668 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:17:02,704 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,704 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:17:02,742 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,742 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:17:02,779 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,779 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:17:02,815 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,815 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:17:02,850 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,850 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:17:02,886 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,886 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:17:02,923 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,923 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:17:02,960 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,960 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:17:02,995 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:02,995 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:17:03,032 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,032 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:17:03,033 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:03,070 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,070 - INFO - 处理记录: ts=2025-03-24 17:16:53.205000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 16 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C9 +2025-03-24 17:17:03,112 - ERROR - 处理时间戳为 2025-03-24 17:16:53.205000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,112 - INFO - 处理记录: ts=2025-03-24 17:16:53.287000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 35 01 9F 09 00 00 3A +2025-03-24 17:17:03,148 - ERROR - 处理时间戳为 2025-03-24 17:16:53.287000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,148 - INFO - 处理记录: ts=2025-03-24 17:16:54.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 36 00 6C +2025-03-24 17:17:03,185 - ERROR - 处理时间戳为 2025-03-24 17:16:54.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,185 - INFO - 处理记录: ts=2025-03-24 17:16:55.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 37 00 49 +2025-03-24 17:17:03,221 - ERROR - 处理时间戳为 2025-03-24 17:16:55.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,221 - INFO - 处理记录: ts=2025-03-24 17:16:55.986000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 18 00 02 01 01 01 01 BD +2025-03-24 17:17:03,259 - ERROR - 处理时间戳为 2025-03-24 17:16:55.986000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,259 - INFO - 处理记录: ts=2025-03-24 17:16:57.331000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 11 04 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 93 +2025-03-24 17:17:03,259 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:03,297 - ERROR - 处理时间戳为 2025-03-24 17:16:57.331000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,297 - INFO - 处理记录: ts=2025-03-24 17:16:57.786000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 11 05 01 02 01 01 01 01 63 +2025-03-24 17:17:03,336 - ERROR - 处理时间戳为 2025-03-24 17:16:57.786000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,336 - INFO - 处理记录: ts=2025-03-24 17:16:58.694000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 3A 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A5 +2025-03-24 17:17:03,375 - ERROR - 处理时间戳为 2025-03-24 17:16:58.694000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,375 - INFO - 处理记录: ts=2025-03-24 17:16:58.778000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 3A 00 A3 03 00 00 D7 +2025-03-24 17:17:03,413 - ERROR - 处理时间戳为 2025-03-24 17:16:58.778000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,414 - INFO - 处理记录: ts=2025-03-24 17:16:58.917000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 3B 00 07 +2025-03-24 17:17:03,452 - ERROR - 处理时间戳为 2025-03-24 17:16:58.917000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,452 - INFO - 处理记录: ts=2025-03-24 17:16:59.555000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 11 01 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 17:17:03,490 - ERROR - 处理时间戳为 2025-03-24 17:16:59.555000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,490 - INFO - 处理记录: ts=2025-03-24 17:16:59.602000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 11 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 2D +2025-03-24 17:17:03,527 - ERROR - 处理时间戳为 2025-03-24 17:16:59.602000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,527 - INFO - 处理记录: ts=2025-03-24 17:16:59.882000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 11 00 00 02 01 01 01 01 71 +2025-03-24 17:17:03,565 - ERROR - 处理时间戳为 2025-03-24 17:16:59.882000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,565 - INFO - 处理记录: ts=2025-03-24 17:16:59.994000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 11 01 01 02 01 01 01 01 55 +2025-03-24 17:17:03,600 - ERROR - 处理时间戳为 2025-03-24 17:16:59.994000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,643 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:17:03,678 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,678 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:17:03,713 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,713 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:17:03,750 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,750 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:17:03,750 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:03,788 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,788 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:17:03,827 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,827 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:17:03,864 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,864 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:17:03,901 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,901 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:17:03,939 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,939 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:17:03,979 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:03,979 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:17:04,018 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,018 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:17:04,060 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,060 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:17:04,095 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,096 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:17:04,133 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,133 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:17:04,133 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:04,170 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,171 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:17:04,207 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,207 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:17:04,246 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,247 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:17:04,290 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,290 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:17:04,343 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,343 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:17:04,378 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,378 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:17:04,415 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,415 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:17:04,452 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,452 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:17:04,488 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,488 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:17:04,529 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,529 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:17:04,564 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,564 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:17:04,564 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:04,605 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,605 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:17:04,640 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,640 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:17:04,677 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,677 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:17:04,714 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,714 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:17:04,752 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,752 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:17:04,789 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,789 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:17:04,827 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,827 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:17:04,827 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:04,863 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,863 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:17:04,902 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,902 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:17:04,938 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,938 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:17:04,978 - ERROR - 处理时间戳为 2025-03-24 17:16:47.507000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:04,978 - INFO - 处理记录: ts=2025-03-24 17:16:48.260000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 30 00 00 02 01 01 00 00 00 01 01 00 00 00 5A +2025-03-24 17:17:05,013 - ERROR - 处理时间戳为 2025-03-24 17:16:48.260000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,013 - INFO - 处理记录: ts=2025-03-24 17:16:48.449000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 30 00 58 +2025-03-24 17:17:05,056 - ERROR - 处理时间戳为 2025-03-24 17:16:48.449000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,056 - INFO - 处理记录: ts=2025-03-24 17:16:49.872000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 40 +2025-03-24 17:17:05,092 - ERROR - 处理时间戳为 2025-03-24 17:16:49.872000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,092 - INFO - 处理记录: ts=2025-03-24 17:16:49.893000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:17:05,131 - ERROR - 处理时间戳为 2025-03-24 17:16:49.893000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,131 - INFO - 处理记录: ts=2025-03-24 17:16:50.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 32 00 99 +2025-03-24 17:17:05,167 - ERROR - 处理时间戳为 2025-03-24 17:16:50.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,167 - INFO - 处理记录: ts=2025-03-24 17:16:51.397000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 11 00 00 00 02 01 01 0A 00 00 01 01 0A 00 00 29 +2025-03-24 17:17:05,203 - ERROR - 处理时间戳为 2025-03-24 17:16:51.397000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,203 - INFO - 处理记录: ts=2025-03-24 17:16:51.452000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 89 +2025-03-24 17:17:05,238 - ERROR - 处理时间戳为 2025-03-24 17:16:51.452000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,239 - INFO - 处理记录: ts=2025-03-24 17:16:51.539000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 3B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AD +2025-03-24 17:17:05,239 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:05,276 - ERROR - 处理时间戳为 2025-03-24 17:16:51.539000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,276 - INFO - 处理记录: ts=2025-03-24 17:16:53.205000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 16 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C9 +2025-03-24 17:17:05,311 - ERROR - 处理时间戳为 2025-03-24 17:16:53.205000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,311 - INFO - 处理记录: ts=2025-03-24 17:16:53.287000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 35 01 9F 09 00 00 3A +2025-03-24 17:17:05,347 - ERROR - 处理时间戳为 2025-03-24 17:16:53.287000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,348 - INFO - 处理记录: ts=2025-03-24 17:16:54.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 36 00 6C +2025-03-24 17:17:05,384 - ERROR - 处理时间戳为 2025-03-24 17:16:54.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,384 - INFO - 处理记录: ts=2025-03-24 17:16:55.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 37 00 49 +2025-03-24 17:17:05,420 - ERROR - 处理时间戳为 2025-03-24 17:16:55.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,420 - INFO - 处理记录: ts=2025-03-24 17:16:55.986000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 18 00 02 01 01 01 01 BD +2025-03-24 17:17:05,458 - ERROR - 处理时间戳为 2025-03-24 17:16:55.986000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,458 - INFO - 处理记录: ts=2025-03-24 17:16:57.331000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 11 04 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 93 +2025-03-24 17:17:05,459 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:05,496 - ERROR - 处理时间戳为 2025-03-24 17:16:57.331000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,496 - INFO - 处理记录: ts=2025-03-24 17:16:57.786000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 11 05 01 02 01 01 01 01 63 +2025-03-24 17:17:05,538 - ERROR - 处理时间戳为 2025-03-24 17:16:57.786000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,538 - INFO - 处理记录: ts=2025-03-24 17:16:58.694000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 3A 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 A5 +2025-03-24 17:17:05,574 - ERROR - 处理时间戳为 2025-03-24 17:16:58.694000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,574 - INFO - 处理记录: ts=2025-03-24 17:16:58.778000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 3A 00 A3 03 00 00 D7 +2025-03-24 17:17:05,612 - ERROR - 处理时间戳为 2025-03-24 17:16:58.778000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,612 - INFO - 处理记录: ts=2025-03-24 17:16:58.917000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 3B 00 07 +2025-03-24 17:17:05,649 - ERROR - 处理时间戳为 2025-03-24 17:16:58.917000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,650 - INFO - 处理记录: ts=2025-03-24 17:16:59.555000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 11 01 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E +2025-03-24 17:17:05,685 - ERROR - 处理时间戳为 2025-03-24 17:16:59.555000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,685 - INFO - 处理记录: ts=2025-03-24 17:16:59.602000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 11 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 2D +2025-03-24 17:17:05,721 - ERROR - 处理时间戳为 2025-03-24 17:16:59.602000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,721 - INFO - 处理记录: ts=2025-03-24 17:16:59.882000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 11 00 00 02 01 01 01 01 71 +2025-03-24 17:17:05,756 - ERROR - 处理时间戳为 2025-03-24 17:16:59.882000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,756 - INFO - 处理记录: ts=2025-03-24 17:16:59.994000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 11 01 01 02 01 01 01 01 55 +2025-03-24 17:17:05,792 - ERROR - 处理时间戳为 2025-03-24 17:16:59.994000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,792 - INFO - 处理记录: ts=2025-03-24 17:17:02.209000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 4F +2025-03-24 17:17:05,827 - ERROR - 处理时间戳为 2025-03-24 17:17:02.209000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,872 - INFO - 处理记录: ts=2025-03-24 17:16:28.207000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 10 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 76 +2025-03-24 17:17:05,909 - ERROR - 处理时间戳为 2025-03-24 17:16:28.207000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,909 - INFO - 处理记录: ts=2025-03-24 17:16:28.328000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 1C 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 83 +2025-03-24 17:17:05,947 - ERROR - 处理时间戳为 2025-03-24 17:16:28.328000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,947 - INFO - 处理记录: ts=2025-03-24 17:16:28.413000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 1C 00 A3 03 00 00 F1 +2025-03-24 17:17:05,983 - ERROR - 处理时间戳为 2025-03-24 17:16:28.413000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:05,983 - INFO - 处理记录: ts=2025-03-24 17:16:28.418000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 24 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B2 +2025-03-24 17:17:05,983 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:06,018 - ERROR - 处理时间戳为 2025-03-24 17:16:28.418000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,018 - INFO - 处理记录: ts=2025-03-24 17:16:28.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 1D 00 21 +2025-03-24 17:17:06,054 - ERROR - 处理时间戳为 2025-03-24 17:16:28.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,055 - INFO - 处理记录: ts=2025-03-24 17:16:29.085000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 1E 01 02 01 01 01 01 4B +2025-03-24 17:17:06,091 - ERROR - 处理时间戳为 2025-03-24 17:16:29.085000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,091 - INFO - 处理记录: ts=2025-03-24 17:16:29.818000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 1D 01 02 01 01 01 01 6C +2025-03-24 17:17:06,127 - ERROR - 处理时间戳为 2025-03-24 17:16:29.818000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,127 - INFO - 处理记录: ts=2025-03-24 17:16:29.838000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 10 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:17:06,163 - ERROR - 处理时间戳为 2025-03-24 17:16:29.838000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,164 - INFO - 处理记录: ts=2025-03-24 17:16:30.008000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 10 1E 00 B5 +2025-03-24 17:17:06,200 - ERROR - 处理时间戳为 2025-03-24 17:16:30.008000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,200 - INFO - 处理记录: ts=2025-03-24 17:16:32.137000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 28 01 02 01 01 01 01 1B +2025-03-24 17:17:06,237 - ERROR - 处理时间戳为 2025-03-24 17:16:32.137000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,237 - INFO - 处理记录: ts=2025-03-24 17:16:32.942000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 01 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:17:06,274 - ERROR - 处理时间戳为 2025-03-24 17:16:32.942000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,274 - INFO - 处理记录: ts=2025-03-24 17:16:33.022000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 21 01 9F 09 00 00 2E +2025-03-24 17:17:06,311 - ERROR - 处理时间戳为 2025-03-24 17:16:33.022000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,311 - INFO - 处理记录: ts=2025-03-24 17:16:33.450000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 10 21 00 49 +2025-03-24 17:17:06,346 - ERROR - 处理时间戳为 2025-03-24 17:16:33.450000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,346 - INFO - 处理记录: ts=2025-03-24 17:16:34.188000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:17:06,346 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:06,382 - ERROR - 处理时间戳为 2025-03-24 17:16:34.188000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,382 - INFO - 处理记录: ts=2025-03-24 17:16:34.206000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 10 23 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6D +2025-03-24 17:17:06,418 - ERROR - 处理时间戳为 2025-03-24 17:16:34.206000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,418 - INFO - 处理记录: ts=2025-03-24 17:16:34.250000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 10 23 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 82 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0E +2025-03-24 17:17:06,454 - ERROR - 处理时间戳为 2025-03-24 17:16:34.250000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,454 - INFO - 处理记录: ts=2025-03-24 17:16:35.392000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 10 23 00 5D +2025-03-24 17:17:06,493 - ERROR - 处理时间戳为 2025-03-24 17:16:35.392000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,493 - INFO - 处理记录: ts=2025-03-24 17:16:35.940000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 04 00 02 01 01 01 01 A1 +2025-03-24 17:17:06,541 - ERROR - 处理时间戳为 2025-03-24 17:16:35.940000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,541 - INFO - 处理记录: ts=2025-03-24 17:16:37.148000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 10 2C 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:17:06,585 - ERROR - 处理时间戳为 2025-03-24 17:16:37.148000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,585 - INFO - 处理记录: ts=2025-03-24 17:16:37.200000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 10 2C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:17:06,623 - ERROR - 处理时间戳为 2025-03-24 17:16:37.200000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,624 - INFO - 处理记录: ts=2025-03-24 17:16:38.454000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 10 26 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B9 +2025-03-24 17:17:06,663 - ERROR - 处理时间戳为 2025-03-24 17:16:38.454000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,663 - INFO - 处理记录: ts=2025-03-24 17:16:38.538000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 10 26 00 A3 03 00 00 CB +2025-03-24 17:17:06,725 - ERROR - 处理时间戳为 2025-03-24 17:16:38.538000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,725 - INFO - 处理记录: ts=2025-03-24 17:16:39.201000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 10 27 00 7D +2025-03-24 17:17:06,763 - ERROR - 处理时间戳为 2025-03-24 17:16:39.201000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,763 - INFO - 处理记录: ts=2025-03-24 17:16:39.844000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 10 27 00 02 01 01 01 01 57 +2025-03-24 17:17:06,804 - ERROR - 处理时间戳为 2025-03-24 17:16:39.844000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,804 - INFO - 处理记录: ts=2025-03-24 17:16:40, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B9 +2025-03-24 17:17:06,804 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:06,854 - ERROR - 处理时间戳为 2025-03-24 17:16:40 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,854 - INFO - 处理记录: ts=2025-03-24 17:16:41.906000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 10 31 01 02 01 01 01 01 56 +2025-03-24 17:17:06,891 - ERROR - 处理时间戳为 2025-03-24 17:16:41.906000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,891 - INFO - 处理记录: ts=2025-03-24 17:16:42.143000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 10 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 5A +2025-03-24 17:17:06,930 - ERROR - 处理时间戳为 2025-03-24 17:16:42.143000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,930 - INFO - 处理记录: ts=2025-03-24 17:16:43.073000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 10 0B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D4 +2025-03-24 17:17:06,967 - ERROR - 处理时间戳为 2025-03-24 17:16:43.073000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:06,967 - INFO - 处理记录: ts=2025-03-24 17:16:43.153000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 10 2B 01 9F 09 00 00 24 +2025-03-24 17:17:07,004 - ERROR - 处理时间戳为 2025-03-24 17:16:43.153000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,004 - INFO - 处理记录: ts=2025-03-24 17:16:43.918000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 10 2C 00 10 +2025-03-24 17:17:07,040 - ERROR - 处理时间戳为 2025-03-24 17:16:43.918000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,040 - INFO - 处理记录: ts=2025-03-24 17:16:44.815000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 10 2E 01 02 01 01 01 01 7B +2025-03-24 17:17:07,078 - ERROR - 处理时间戳为 2025-03-24 17:16:44.815000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,078 - INFO - 处理记录: ts=2025-03-24 17:16:45.771000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 10 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A3 +2025-03-24 17:17:07,078 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:17:07,118 - ERROR - 处理时间戳为 2025-03-24 17:16:45.771000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,118 - INFO - 处理记录: ts=2025-03-24 17:16:45.954000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 10 0E 01 02 01 01 01 01 AA +2025-03-24 17:17:07,154 - ERROR - 处理时间戳为 2025-03-24 17:16:45.954000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,154 - INFO - 处理记录: ts=2025-03-24 17:16:47.163000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 10 0F 00 00 02 01 01 00 00 00 01 01 00 00 00 B0 +2025-03-24 17:17:07,191 - ERROR - 处理时间戳为 2025-03-24 17:16:47.163000 的记录时出错: column "total_service_money" of relation "charge_order_compute_detail" does not exist +LINE 4: ... total_money, total_power, total_elec_money, total_serv... + ^ + +2025-03-24 17:17:07,191 - INFO - 处理记录: ts=2025-03-24 17:16:47.507000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 10 38 01 02 01 01 01 01 0B +2025-03-24 17:17:07,229 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_compute_detail.py b/charging_pile_proxy/hejin_forward/charge_order_compute_detail.py new file mode 100644 index 0000000..43b4c07 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_compute_detail.py @@ -0,0 +1,319 @@ +import taosrest +import psycopg2 +from datetime import datetime +import binascii +import logging +import uuid +import time + +# 配置日志 +logging.basicConfig( + filename='charge_order_compute_detail.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeOrderComputeDetailMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_uuids = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_bcd_time(self, bcd_bytes): + """解析BCD码时间(假设格式为 YYMMDDHHMMSS)""" + try: + year = 2000 + (bcd_bytes[0] >> 4) * 10 + (bcd_bytes[0] & 0x0F) + month = (bcd_bytes[1] >> 4) * 10 + (bcd_bytes[1] & 0x0F) + day = (bcd_bytes[2] >> 4) * 10 + (bcd_bytes[2] & 0x0F) + hour = (bcd_bytes[3] >> 4) * 10 + (bcd_bytes[3] & 0x0F) + minute = (bcd_bytes[4] >> 4) * 10 + (bcd_bytes[4] & 0x0F) + second = (bcd_bytes[5] >> 4) * 10 + (bcd_bytes[5] & 0x0F) + return datetime(year, month, day, hour, minute, second) + except Exception as e: + logging.error(f"解析BCD时间出错: {str(e)}") + return None + + def parse_hex_data(self, hex_data, timestamp): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 提取枪号(假设在协议中枪号位于第11字节,0x01表示A枪,0x02表示B枪) + connector_suffix = '1' if hex_bytes[11] == 0x01 else '2' + + # 初始化数据字典 + data = { + 'command': command, + 'connector_suffix': connector_suffix, + 'order_code': str(uuid.uuid4()).replace('-', ''), + 'phase_type': 4, + 'rate_id': 'default_rate', + 'total_money': 0.0, + 'total_power': 0.0, + 'total_elec_money': 0.0, + 'total_service_money': 0.0, + 'discount_elec_money': 0.0, + 'discount_service_money': 0.0, + 'detail_start_time': timestamp, + 'detail_end_time': timestamp + } + + # 23H - 最新充电订单 + if command == '23': + # 起始充电电量(字节119-122,分辨率0.01kWh) + start_power = int.from_bytes(hex_bytes[119:123], byteorder='little') * 0.01 + # 结束充电电量(字节123-126,分辨率0.01kWh) + end_power = int.from_bytes(hex_bytes[123:127], byteorder='little') * 0.01 + # 计算总电量 + total_power = end_power - start_power + + # 充电金额(电费+服务费+停车费) + electricity_fee = int.from_bytes(hex_bytes[147:151], byteorder='little') * 0.01 + service_fee = int.from_bytes(hex_bytes[151:155], byteorder='little') * 0.01 + parking_fee = int.from_bytes(hex_bytes[155:159], byteorder='little') * 0.01 + total_money = electricity_fee + service_fee + parking_fee + + # 充电开始时间和结束时间(字节127-132和133-138,格式为BCD码) + start_time = self.parse_bcd_time(hex_bytes[127:133]) + end_time = self.parse_bcd_time(hex_bytes[133:139]) + + data.update({ + 'total_power': total_power, + 'total_money': total_money, + 'total_elec_money': electricity_fee, + 'total_service_money': service_fee, + 'detail_start_time': start_time if start_time else timestamp, + 'detail_end_time': end_time if end_time else timestamp + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的charge_order_compute_detail表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID + hex_data = row[12] # 十六进制数据 + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data, timestamp) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 构造connection_id(pile_id + 枪号后缀) + connection_id = f"{pile_id}{parsed_data['connector_suffix']}" + + # 生成唯一uuid + record_uuid = str(uuid.uuid4()).replace('-', '') + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM charge_order_compute_detail WHERE uuid = %s + """ + self.pg_cursor.execute(check_query, (record_uuid,)) + exists = self.pg_cursor.fetchone() is not None + + # 如果记录已存在,跳过 + if exists or record_uuid in self.processed_uuids: + logging.info(f"订单记录已存在,UUID: {record_uuid},跳过") + continue + + # 准备插入PostgreSQL的数据 + insert_query = """ + INSERT INTO public.charge_order_compute_detail ( + uuid, connection_id, order_code, phase_type, rate_id, + total_money, total_power, total_elec_money, total_service_money, + discount_elec_money, discount_service_money, detail_start_time, + detail_end_time, created_at + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + values = ( + record_uuid, + connection_id, + parsed_data['order_code'], + parsed_data['phase_type'], + parsed_data['rate_id'], + parsed_data['total_money'], + parsed_data['total_power'], + parsed_data['total_elec_money'], + parsed_data['total_service_money'], + parsed_data['discount_elec_money'], + parsed_data['discount_service_money'], + parsed_data['detail_start_time'], + parsed_data['detail_end_time'], + timestamp + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_uuids.add(record_uuid) + logging.info(f"插入订单记录,UUID: {record_uuid}, 充电枪: {connection_id}") + + # 记录插入的完整数据 + log_values = { + 'uuid': record_uuid, + 'connection_id': connection_id, + 'order_code': parsed_data['order_code'], + 'phase_type': parsed_data['phase_type'], + 'rate_id': parsed_data['rate_id'], + 'total_money': parsed_data['total_money'], + 'total_power': parsed_data['total_power'], + 'total_elec_money': parsed_data['total_elec_money'], + 'total_service_money': parsed_data['total_service_money'], + 'discount_elec_money': parsed_data['discount_elec_money'], + 'discount_service_money': parsed_data['discount_service_money'], + 'detail_start_time': parsed_data['detail_start_time'], + 'detail_end_time': parsed_data['detail_end_time'], + 'created_at': timestamp + } + logging.info(f"插入到 charge_order_compute_detail 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = ChargeOrderComputeDetailMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_order_compute_detail_migration.log b/charging_pile_proxy/hejin_forward/charge_order_compute_detail_migration.log new file mode 100644 index 0000000..db37264 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_compute_detail_migration.log @@ -0,0 +1,4 @@ +2025-03-24 10:07:33,632 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:07:35,188 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:07:35,188 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:07:35,188 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_detail.log b/charging_pile_proxy/hejin_forward/charge_order_detail.log new file mode 100644 index 0000000..f461ff0 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_detail.log @@ -0,0 +1,301 @@ +2025-03-24 17:18:52,867 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:19:02,082 - INFO - 成功连接到TDengine +2025-03-24 17:19:02,152 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:19:02,153 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:19:02,304 - INFO - 成功连接到PostgreSQL +2025-03-24 17:19:02,344 - INFO - 初始化last_processed_ts: 2025-03-24 17:19:00.861000 +2025-03-24 17:19:02,383 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:12,430 - INFO - 处理记录: ts=2025-03-24 17:19:02.549000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 12 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 4D +2025-03-24 17:19:12,480 - INFO - 插入订单详情记录,UUID: 875f2a19f06741bcb7a6beb42ed1b384, 订单ID: a9bd24a67ec5457f95ebcef3504faa3c +2025-03-24 17:19:12,480 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '875f2a19f06741bcb7a6beb42ed1b384', 'order_info_id': 'a9bd24a67ec5457f95ebcef3504faa3c', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 2, 549000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 2, 549000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 2, 549000)} +2025-03-24 17:19:12,480 - INFO - 处理记录: ts=2025-03-24 17:19:02.981000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 13 04 01 02 01 01 01 01 52 +2025-03-24 17:19:12,521 - INFO - 插入订单详情记录,UUID: aa373fb3673f42d3b7d997b82e172042, 订单ID: 1799e310b4b44960b3f9fd94b8dbd969 +2025-03-24 17:19:12,521 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'aa373fb3673f42d3b7d997b82e172042', 'order_info_id': '1799e310b4b44960b3f9fd94b8dbd969', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 2, 981000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 2, 981000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 2, 981000)} +2025-03-24 17:19:12,521 - INFO - 处理记录: ts=2025-03-24 17:19:03.446000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 13 03 00 68 +2025-03-24 17:19:12,563 - INFO - 插入订单详情记录,UUID: 83382a6c9546414e8d5b04a228884a5a, 订单ID: a2e9adc7a269463380a9fc1d70728221 +2025-03-24 17:19:12,563 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '83382a6c9546414e8d5b04a228884a5a', 'order_info_id': 'a2e9adc7a269463380a9fc1d70728221', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 3, 446000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 3, 446000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 3, 446000)} +2025-03-24 17:19:12,563 - INFO - 处理记录: ts=2025-03-24 17:19:04.739000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 0C 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 99 +2025-03-24 17:19:12,563 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:12,604 - INFO - 插入订单详情记录,UUID: 6126553fa1a74101b848bf14d8d46309, 订单ID: 20f19c7dade24387808fd22fe0c0f163 +2025-03-24 17:19:12,605 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6126553fa1a74101b848bf14d8d46309', 'order_info_id': '20f19c7dade24387808fd22fe0c0f163', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 4, 739000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 4, 739000)} +2025-03-24 17:19:12,605 - INFO - 处理记录: ts=2025-03-24 17:19:04.886000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 12 21 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 FC +2025-03-24 17:19:12,663 - INFO - 插入订单详情记录,UUID: 155fc94d5f36439baf9366b7f4b284cd, 订单ID: 06a62bd9346946f8a6ee548724d7b497 +2025-03-24 17:19:12,663 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '155fc94d5f36439baf9366b7f4b284cd', 'order_info_id': '06a62bd9346946f8a6ee548724d7b497', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 4, 886000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 4, 886000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 4, 886000)} +2025-03-24 17:19:12,663 - INFO - 处理记录: ts=2025-03-24 17:19:04.966000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 05 01 9F 09 00 00 09 +2025-03-24 17:19:12,705 - INFO - 插入订单详情记录,UUID: 232e3ab6bd844898822907e175ebc6b3, 订单ID: 1580e1aaa68f4b2da0c7a7b76d468b41 +2025-03-24 17:19:12,705 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '232e3ab6bd844898822907e175ebc6b3', 'order_info_id': '1580e1aaa68f4b2da0c7a7b76d468b41', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 4, 966000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 4, 966000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 4, 966000)} +2025-03-24 17:19:12,705 - INFO - 处理记录: ts=2025-03-24 17:19:05.252000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 13 0D 01 02 01 01 01 01 3D +2025-03-24 17:19:12,746 - INFO - 插入订单详情记录,UUID: 8b90c29c10ef45dfafab62c72f3994eb, 订单ID: 9913d9fdff80413daf9424e02e841154 +2025-03-24 17:19:12,746 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '8b90c29c10ef45dfafab62c72f3994eb', 'order_info_id': '9913d9fdff80413daf9424e02e841154', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 5, 252000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 5, 252000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 5, 252000)} +2025-03-24 17:19:12,746 - INFO - 处理记录: ts=2025-03-24 17:19:06.012000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 13 07 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4A +2025-03-24 17:19:12,787 - INFO - 插入订单详情记录,UUID: 4c38cb1523e04e52920e8a45b47bb8a3, 订单ID: 13f56b0551c54689bee8b8e98d503d11 +2025-03-24 17:19:12,787 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '4c38cb1523e04e52920e8a45b47bb8a3', 'order_info_id': '13f56b0551c54689bee8b8e98d503d11', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 12000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 12000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 6, 12000)} +2025-03-24 17:19:12,787 - INFO - 处理记录: ts=2025-03-24 17:19:06.054000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 13 07 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 2A +2025-03-24 17:19:12,829 - INFO - 插入订单详情记录,UUID: 65f6dd6b43ee47968c1baa92481097f4, 订单ID: 4a09500df2424353ad8e3f7130fe0a6d +2025-03-24 17:19:12,829 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '65f6dd6b43ee47968c1baa92481097f4', 'order_info_id': '4a09500df2424353ad8e3f7130fe0a6d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 54000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 54000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 6, 54000)} +2025-03-24 17:19:12,829 - INFO - 处理记录: ts=2025-03-24 17:19:06.357000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 12 23 01 02 01 01 01 01 85 +2025-03-24 17:19:12,871 - INFO - 插入订单详情记录,UUID: 74aac2d5746146c9a8718c0a0d9ad4b2, 订单ID: 291421028daf450aae1bc28fd7ffbbf5 +2025-03-24 17:19:12,871 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '74aac2d5746146c9a8718c0a0d9ad4b2', 'order_info_id': '291421028daf450aae1bc28fd7ffbbf5', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 357000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 6, 357000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 6, 357000)} +2025-03-24 17:19:12,871 - INFO - 处理记录: ts=2025-03-24 17:19:07.564000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 12 24 00 00 02 01 01 00 00 00 01 01 00 00 00 99 +2025-03-24 17:19:12,913 - INFO - 插入订单详情记录,UUID: 7e2c69123d4a427e80be74c40fb1d399, 订单ID: a1f1134d8fbd40c7875ded3902970cb8 +2025-03-24 17:19:12,913 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7e2c69123d4a427e80be74c40fb1d399', 'order_info_id': 'a1f1134d8fbd40c7875ded3902970cb8', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 7, 564000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 7, 564000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 7, 564000)} +2025-03-24 17:19:12,913 - INFO - 处理记录: ts=2025-03-24 17:19:08.656000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 13 08 00 00 02 01 01 00 00 00 01 01 00 00 00 61 +2025-03-24 17:19:12,971 - INFO - 插入订单详情记录,UUID: 7ab22503dbf64591a8aae9de8a46e17c, 订单ID: 883bb767bb09443f95dfcf87efa70f6d +2025-03-24 17:19:12,971 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7ab22503dbf64591a8aae9de8a46e17c', 'order_info_id': '883bb767bb09443f95dfcf87efa70f6d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 8, 656000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 8, 656000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 8, 656000)} +2025-03-24 17:19:12,971 - INFO - 处理记录: ts=2025-03-24 17:19:09.152000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 13 10 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6F +2025-03-24 17:19:13,013 - INFO - 插入订单详情记录,UUID: c30c660e3f3841208a66bf41138c8e35, 订单ID: 4810bf4d19da40ae88cb3bef4baee9c7 +2025-03-24 17:19:13,013 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c30c660e3f3841208a66bf41138c8e35', 'order_info_id': '4810bf4d19da40ae88cb3bef4baee9c7', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 152000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 152000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 9, 152000)} +2025-03-24 17:19:13,013 - INFO - 处理记录: ts=2025-03-24 17:19:09.197000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 13 09 00 50 +2025-03-24 17:19:13,055 - INFO - 插入订单详情记录,UUID: 6bc9152521e04ac4899bcbde56d5004b, 订单ID: 26b028b66aea4555adbb9cc1f5aa29b0 +2025-03-24 17:19:13,055 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6bc9152521e04ac4899bcbde56d5004b', 'order_info_id': '26b028b66aea4555adbb9cc1f5aa29b0', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 197000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 197000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 9, 197000)} +2025-03-24 17:19:13,055 - INFO - 处理记录: ts=2025-03-24 17:19:09.201000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 13 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 E7 +2025-03-24 17:19:13,096 - INFO - 插入订单详情记录,UUID: 33a71a12bbdc4253bbc8d546fd9c8fa6, 订单ID: 8f401a3ffdab4e25bed7ff912aa2306e +2025-03-24 17:19:13,096 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '33a71a12bbdc4253bbc8d546fd9c8fa6', 'order_info_id': '8f401a3ffdab4e25bed7ff912aa2306e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 201000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 9, 201000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 9, 201000)} +2025-03-24 17:19:13,096 - INFO - 处理记录: ts=2025-03-24 17:19:10.004000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 13 0A 00 A2 +2025-03-24 17:19:13,137 - INFO - 插入订单详情记录,UUID: f1fbb756efe54caf81221520430402c8, 订单ID: 2ade823254ca4d3b8ffe684222567cac +2025-03-24 17:19:13,138 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f1fbb756efe54caf81221520430402c8', 'order_info_id': '2ade823254ca4d3b8ffe684222567cac', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 4000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 4000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 4000)} +2025-03-24 17:19:13,138 - INFO - 处理记录: ts=2025-03-24 17:19:10.246000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 13 0A 01 02 01 01 01 01 78 +2025-03-24 17:19:13,179 - INFO - 插入订单详情记录,UUID: 54d44ca042234e4eb32f8367f92b1a10, 订单ID: 7be98175136845daab1a1cf297ccd244 +2025-03-24 17:19:13,179 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '54d44ca042234e4eb32f8367f92b1a10', 'order_info_id': '7be98175136845daab1a1cf297ccd244', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 246000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 246000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 246000)} +2025-03-24 17:19:13,179 - INFO - 处理记录: ts=2025-03-24 17:19:10.268000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 13 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 1C +2025-03-24 17:19:13,222 - INFO - 插入订单详情记录,UUID: 1f79da541ef34046b35ec362cf6f072d, 订单ID: 23a0bd67f04b494cb81e708c267b0098 +2025-03-24 17:19:13,223 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '1f79da541ef34046b35ec362cf6f072d', 'order_info_id': '23a0bd67f04b494cb81e708c267b0098', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 268000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 268000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 268000)} +2025-03-24 17:19:13,223 - INFO - 处理记录: ts=2025-03-24 17:19:10.389000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 13 0A 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 96 +2025-03-24 17:19:13,270 - INFO - 插入订单详情记录,UUID: 8a865027ca66449fb5180dac426cf1c2, 订单ID: 2082cea95bcc4266952704787cd37b66 +2025-03-24 17:19:13,270 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '8a865027ca66449fb5180dac426cf1c2', 'order_info_id': '2082cea95bcc4266952704787cd37b66', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 389000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 389000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 389000)} +2025-03-24 17:19:13,270 - INFO - 处理记录: ts=2025-03-24 17:19:10.473000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 13 0A 00 A3 03 00 00 E4 +2025-03-24 17:19:13,329 - INFO - 插入订单详情记录,UUID: 675cd6f9170c4b328aa9ba46ab912e40, 订单ID: bcdd1336a39f47eeab7d6b42c16098c4 +2025-03-24 17:19:13,329 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '675cd6f9170c4b328aa9ba46ab912e40', 'order_info_id': 'bcdd1336a39f47eeab7d6b42c16098c4', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 473000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 473000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 473000)} +2025-03-24 17:19:13,329 - INFO - 处理记录: ts=2025-03-24 17:19:10.513000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 12 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 87 +2025-03-24 17:19:13,330 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:13,371 - INFO - 插入订单详情记录,UUID: 3abcef3e6ebf4b62924d399ff8cb0ad3, 订单ID: 78842766af6b4564850dfc4cd30135fb +2025-03-24 17:19:13,371 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '3abcef3e6ebf4b62924d399ff8cb0ad3', 'order_info_id': '78842766af6b4564850dfc4cd30135fb', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 10, 513000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 10, 513000)} +2025-03-24 17:19:13,413 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:23,453 - INFO - 处理记录: ts=2025-03-24 17:19:13.914000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 13 0E 00 31 +2025-03-24 17:19:23,505 - INFO - 插入订单详情记录,UUID: 695dfe835c1a478d831cc6ef8255fcd9, 订单ID: fd536efea31d4cb3bd097a2ad5bd6702 +2025-03-24 17:19:23,505 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '695dfe835c1a478d831cc6ef8255fcd9', 'order_info_id': 'fd536efea31d4cb3bd097a2ad5bd6702', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 13, 914000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 13, 914000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 13, 914000)} +2025-03-24 17:19:23,505 - INFO - 处理记录: ts=2025-03-24 17:19:14.999000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 12 2B 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 F6 +2025-03-24 17:19:23,804 - INFO - 插入订单详情记录,UUID: d011399d186c435f95e0fbc51823e92f, 订单ID: 31f302702b764142872791d49680dba4 +2025-03-24 17:19:23,805 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'd011399d186c435f95e0fbc51823e92f', 'order_info_id': '31f302702b764142872791d49680dba4', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 14, 999000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 14, 999000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 14, 999000)} +2025-03-24 17:19:23,805 - INFO - 处理记录: ts=2025-03-24 17:19:15.081000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 0F 01 9F 09 00 00 03 +2025-03-24 17:19:23,889 - INFO - 插入订单详情记录,UUID: febcd156fc80421ab6925971d7646e4f, 订单ID: 25284637e165495c8991997f513261d2 +2025-03-24 17:19:23,889 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'febcd156fc80421ab6925971d7646e4f', 'order_info_id': '25284637e165495c8991997f513261d2', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 15, 81000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 15, 81000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 15, 81000)} +2025-03-24 17:19:23,889 - INFO - 处理记录: ts=2025-03-24 17:19:15.388000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 13 0F 00 72 +2025-03-24 17:19:23,928 - INFO - 插入订单详情记录,UUID: a4b938c846c04db7b1f2e8696d7ed247, 订单ID: 6c860e535bc9446ebaf9cb81d3f8d77c +2025-03-24 17:19:23,929 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a4b938c846c04db7b1f2e8696d7ed247', 'order_info_id': '6c860e535bc9446ebaf9cb81d3f8d77c', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 15, 388000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 15, 388000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 15, 388000)} +2025-03-24 17:19:23,929 - INFO - 处理记录: ts=2025-03-24 17:19:16.387000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 12 2D 00 02 01 01 01 01 8A +2025-03-24 17:19:23,970 - INFO - 插入订单详情记录,UUID: a245197c414f4bb19f359622e2563da9, 订单ID: 836d773bc6d04244b6b53d8916a0fb76 +2025-03-24 17:19:23,970 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a245197c414f4bb19f359622e2563da9', 'order_info_id': '836d773bc6d04244b6b53d8916a0fb76', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 16, 387000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 16, 387000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 16, 387000)} +2025-03-24 17:19:23,970 - INFO - 处理记录: ts=2025-03-24 17:19:16.475000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 18 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 8D +2025-03-24 17:19:23,970 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:24,012 - INFO - 插入订单详情记录,UUID: dc851aaf3a9e433091a6e2c0b61b7863, 订单ID: a15af05bf9744ca4b66bd2ba79e2402e +2025-03-24 17:19:24,012 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'dc851aaf3a9e433091a6e2c0b61b7863', 'order_info_id': 'a15af05bf9744ca4b66bd2ba79e2402e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 16, 475000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 16, 475000)} +2025-03-24 17:19:24,012 - INFO - 处理记录: ts=2025-03-24 17:19:16.911000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 13 18 01 02 01 01 01 01 7C +2025-03-24 17:19:24,203 - INFO - 插入订单详情记录,UUID: 34610faf83824b26ad66f36978d1f843, 订单ID: 0623224097ce485fa582eafebd91e9e5 +2025-03-24 17:19:24,203 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '34610faf83824b26ad66f36978d1f843', 'order_info_id': '0623224097ce485fa582eafebd91e9e5', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 16, 911000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 16, 911000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 16, 911000)} +2025-03-24 17:19:24,203 - INFO - 处理记录: ts=2025-03-24 17:19:18.311000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 13 13 01 02 01 01 01 01 45 +2025-03-24 17:19:24,245 - INFO - 插入订单详情记录,UUID: 29e72426470041e882250419e1adb4b9, 订单ID: c5bace438ccb447ab45b307c49a1a115 +2025-03-24 17:19:24,246 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '29e72426470041e882250419e1adb4b9', 'order_info_id': 'c5bace438ccb447ab45b307c49a1a115', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 18, 311000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 18, 311000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 18, 311000)} +2025-03-24 17:19:24,246 - INFO - 处理记录: ts=2025-03-24 17:19:18.446000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 13 12 00 79 +2025-03-24 17:19:24,328 - INFO - 插入订单详情记录,UUID: 06b8f0bcee3642c782632fcf751c074d, 订单ID: 463b1a47d0494f6db70e37f1232d6830 +2025-03-24 17:19:24,328 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '06b8f0bcee3642c782632fcf751c074d', 'order_info_id': '463b1a47d0494f6db70e37f1232d6830', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 18, 446000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 18, 446000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 18, 446000)} +2025-03-24 17:19:24,328 - INFO - 处理记录: ts=2025-03-24 17:19:20.292000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 13 14 00 02 01 01 01 01 67 +2025-03-24 17:19:24,370 - INFO - 插入订单详情记录,UUID: 0156bb97ec5043a58b529e9036bfad23, 订单ID: ba8513016af942efa7ee17e86d6fba0f +2025-03-24 17:19:24,370 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '0156bb97ec5043a58b529e9036bfad23', 'order_info_id': 'ba8513016af942efa7ee17e86d6fba0f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 292000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 292000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 20, 292000)} +2025-03-24 17:19:24,370 - INFO - 处理记录: ts=2025-03-24 17:19:20.497000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 13 14 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 88 +2025-03-24 17:19:24,455 - INFO - 插入订单详情记录,UUID: fc7a0840f6914aa1a4d389d01322a188, 订单ID: ac6f899676f44dbdb3c6a04fcbac2a56 +2025-03-24 17:19:24,455 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'fc7a0840f6914aa1a4d389d01322a188', 'order_info_id': 'ac6f899676f44dbdb3c6a04fcbac2a56', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 497000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 497000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 20, 497000)} +2025-03-24 17:19:24,455 - INFO - 处理记录: ts=2025-03-24 17:19:20.551000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 13 1D 01 02 01 01 01 01 2D +2025-03-24 17:19:24,496 - INFO - 插入订单详情记录,UUID: 3d1194368d3647aeb0bfd3e8c68c4cce, 订单ID: 5f1d0286244b48b78bc1a8ca193f31d4 +2025-03-24 17:19:24,496 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '3d1194368d3647aeb0bfd3e8c68c4cce', 'order_info_id': '5f1d0286244b48b78bc1a8ca193f31d4', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 551000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 551000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 20, 551000)} +2025-03-24 17:19:24,496 - INFO - 处理记录: ts=2025-03-24 17:19:20.578000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 13 14 00 A3 03 00 00 FA +2025-03-24 17:19:24,537 - INFO - 插入订单详情记录,UUID: f7d9e050df0b49cabaee435da5aad731, 订单ID: 6626dfa376e04c82b580e5d25994cda0 +2025-03-24 17:19:24,538 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f7d9e050df0b49cabaee435da5aad731', 'order_info_id': '6626dfa376e04c82b580e5d25994cda0', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 578000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 20, 578000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 20, 578000)} +2025-03-24 17:19:24,584 - INFO - 处理记录: ts=2025-03-24 17:19:22.243000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:19:24,584 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:24,629 - INFO - 插入订单详情记录,UUID: 59526837a64248b3ba5d993693cfdf60, 订单ID: 1ca8077b2ac840bfaa9c452b02b65190 +2025-03-24 17:19:24,629 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '59526837a64248b3ba5d993693cfdf60', 'order_info_id': '1ca8077b2ac840bfaa9c452b02b65190', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 22, 243000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 22, 243000)} +2025-03-24 17:19:24,630 - INFO - 处理记录: ts=2025-03-24 17:19:22.609000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 12 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 61 +2025-03-24 17:19:24,671 - INFO - 插入订单详情记录,UUID: 5b77bfb5e07e401d9ddadfa23bcee618, 订单ID: f3da0e596a4b4420971ac27ba6bb717f +2025-03-24 17:19:24,671 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '5b77bfb5e07e401d9ddadfa23bcee618', 'order_info_id': 'f3da0e596a4b4420971ac27ba6bb717f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 22, 609000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 22, 609000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 22, 609000)} +2025-03-24 17:19:24,713 - INFO - 处理记录: ts=2025-03-24 17:19:23.232000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 13 1F 00 00 02 01 01 0A 00 00 01 01 0A 00 00 34 +2025-03-24 17:19:24,754 - INFO - 插入订单详情记录,UUID: b6c56878f77f46c78516982ff8ae3e57, 订单ID: c2f749e12bf6472a9532c20ca22ba66c +2025-03-24 17:19:24,754 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'b6c56878f77f46c78516982ff8ae3e57', 'order_info_id': 'c2f749e12bf6472a9532c20ca22ba66c', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 23, 232000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 23, 232000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 23, 232000)} +2025-03-24 17:19:24,754 - INFO - 处理记录: ts=2025-03-24 17:19:23.278000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 13 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 94 +2025-03-24 17:19:24,796 - INFO - 插入订单详情记录,UUID: cf301920243042a6ab4ced5e3619c222, 订单ID: 1f635d4031d546a0a056e827ed2310f1 +2025-03-24 17:19:24,796 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'cf301920243042a6ab4ced5e3619c222', 'order_info_id': '1f635d4031d546a0a056e827ed2310f1', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 23, 278000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 23, 278000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 23, 278000)} +2025-03-24 17:19:24,834 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:34,873 - INFO - 处理记录: ts=2025-03-24 17:19:24.197000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 13 18 00 41 +2025-03-24 17:19:34,929 - INFO - 插入订单详情记录,UUID: 135d8e4d467d4a778fd222eb119f58d1, 订单ID: 50d9a113990b4718b40fa8a75e8ee254 +2025-03-24 17:19:34,930 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '135d8e4d467d4a778fd222eb119f58d1', 'order_info_id': '50d9a113990b4718b40fa8a75e8ee254', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 24, 197000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 24, 197000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 24, 197000)} +2025-03-24 17:19:34,930 - INFO - 处理记录: ts=2025-03-24 17:19:25.127000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 12 35 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E8 +2025-03-24 17:19:34,987 - INFO - 插入订单详情记录,UUID: ab179d300c184db1b67a934f9bd698cf, 订单ID: 925d3542e1cd405780723edc167a0e25 +2025-03-24 17:19:34,987 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'ab179d300c184db1b67a934f9bd698cf', 'order_info_id': '925d3542e1cd405780723edc167a0e25', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 25, 127000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 25, 127000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 25, 127000)} +2025-03-24 17:19:34,987 - INFO - 处理记录: ts=2025-03-24 17:19:25.207000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 19 01 9F 09 00 00 15 +2025-03-24 17:19:35,055 - INFO - 插入订单详情记录,UUID: 5ebcf1eba11e4a52b39cca96d86c7027, 订单ID: 824369d8bfae4e1c85ec5ad207af6238 +2025-03-24 17:19:35,055 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '5ebcf1eba11e4a52b39cca96d86c7027', 'order_info_id': '824369d8bfae4e1c85ec5ad207af6238', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 25, 207000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 25, 207000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 25, 207000)} +2025-03-24 17:19:35,055 - INFO - 处理记录: ts=2025-03-24 17:19:26.416000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 12 37 01 02 01 01 01 01 91 +2025-03-24 17:19:35,104 - INFO - 插入订单详情记录,UUID: dd6dd15bb45b4c8eb911242e304a2db3, 订单ID: 0125dc1f14e94a2db2fddfd07737ea62 +2025-03-24 17:19:35,104 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'dd6dd15bb45b4c8eb911242e304a2db3', 'order_info_id': '0125dc1f14e94a2db2fddfd07737ea62', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 26, 416000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 26, 416000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 26, 416000)} +2025-03-24 17:19:35,104 - INFO - 处理记录: ts=2025-03-24 17:19:27.624000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 12 38 00 00 02 01 01 00 00 00 01 01 00 00 00 85 +2025-03-24 17:19:35,154 - INFO - 插入订单详情记录,UUID: 44d406e008d24e51a82991694df83dbf, 订单ID: 23dc50f2d905463dae32c434ed7895d7 +2025-03-24 17:19:35,155 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '44d406e008d24e51a82991694df83dbf', 'order_info_id': '23dc50f2d905463dae32c434ed7895d7', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 27, 624000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 27, 624000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 27, 624000)} +2025-03-24 17:19:35,155 - INFO - 处理记录: ts=2025-03-24 17:19:28.035000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 23 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B6 +2025-03-24 17:19:35,155 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:35,204 - INFO - 插入订单详情记录,UUID: d04a11b5ee16468abf949775d2a028b8, 订单ID: d1df45e802984bc5bc8ae1d09ad99e1e +2025-03-24 17:19:35,205 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'd04a11b5ee16468abf949775d2a028b8', 'order_info_id': 'd1df45e802984bc5bc8ae1d09ad99e1e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 28, 35000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 28, 35000)} +2025-03-24 17:19:35,205 - INFO - 处理记录: ts=2025-03-24 17:19:28.711000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 13 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 75 +2025-03-24 17:19:35,254 - INFO - 插入订单详情记录,UUID: 638049c45dde4099b0326c59be08d638, 订单ID: 2a15223da2a74a27bce329a39a64743d +2025-03-24 17:19:35,254 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '638049c45dde4099b0326c59be08d638', 'order_info_id': '2a15223da2a74a27bce329a39a64743d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 28, 711000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 28, 711000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 28, 711000)} +2025-03-24 17:19:35,254 - INFO - 处理记录: ts=2025-03-24 17:19:28.913000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 13 1D 00 22 +2025-03-24 17:19:35,303 - INFO - 插入订单详情记录,UUID: f5b3af479e2c4a248af0adcb482bc382, 订单ID: b80575732f5d4ccb85446383eb0347c0 +2025-03-24 17:19:35,304 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f5b3af479e2c4a248af0adcb482bc382', 'order_info_id': 'b80575732f5d4ccb85446383eb0347c0', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 28, 913000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 28, 913000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 28, 913000)} +2025-03-24 17:19:35,304 - INFO - 处理记录: ts=2025-03-24 17:19:30.005000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 13 1E 00 B6 +2025-03-24 17:19:35,372 - INFO - 插入订单详情记录,UUID: 1c54b57e9d5c45ffb38e61c35b671bc6, 订单ID: 7de6b37348004d7184b4d3cf81fa759d +2025-03-24 17:19:35,373 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '1c54b57e9d5c45ffb38e61c35b671bc6', 'order_info_id': '7de6b37348004d7184b4d3cf81fa759d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 5000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 5000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 30, 5000)} +2025-03-24 17:19:35,373 - INFO - 处理记录: ts=2025-03-24 17:19:30.327000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 13 1E 01 02 01 01 01 01 6C +2025-03-24 17:19:35,429 - INFO - 插入订单详情记录,UUID: 776be7262e71405497221884f701d151, 订单ID: 6ec8474fe3a74e19adc798e118c90c76 +2025-03-24 17:19:35,429 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '776be7262e71405497221884f701d151', 'order_info_id': '6ec8474fe3a74e19adc798e118c90c76', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 327000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 327000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 30, 327000)} +2025-03-24 17:19:35,429 - INFO - 处理记录: ts=2025-03-24 17:19:30.348000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 13 1E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 08 +2025-03-24 17:19:35,487 - INFO - 插入订单详情记录,UUID: f65257f8daef460eae0432dcc101605e, 订单ID: 2cfd6279b318451abcf68cf087591c6f +2025-03-24 17:19:35,488 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f65257f8daef460eae0432dcc101605e', 'order_info_id': '2cfd6279b318451abcf68cf087591c6f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 348000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 348000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 30, 348000)} +2025-03-24 17:19:35,488 - INFO - 处理记录: ts=2025-03-24 17:19:30.690000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 13 1E 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 82 +2025-03-24 17:19:35,537 - INFO - 插入订单详情记录,UUID: f004ee83c6144bae9a5cf199731cda2b, 订单ID: a55b626c6af349b4920214e6b92fd569 +2025-03-24 17:19:35,537 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f004ee83c6144bae9a5cf199731cda2b', 'order_info_id': 'a55b626c6af349b4920214e6b92fd569', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 690000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 690000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 30, 690000)} +2025-03-24 17:19:35,537 - INFO - 处理记录: ts=2025-03-24 17:19:30.773000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 13 1E 00 A3 03 00 00 F0 +2025-03-24 17:19:35,589 - INFO - 插入订单详情记录,UUID: 0324b58afbd94782a0b0ecc1569a4aff, 订单ID: 4c2131a02a3c491b84da1be0f98d57b9 +2025-03-24 17:19:35,589 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '0324b58afbd94782a0b0ecc1569a4aff', 'order_info_id': '4c2131a02a3c491b84da1be0f98d57b9', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 773000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 30, 773000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 30, 773000)} +2025-03-24 17:19:35,589 - INFO - 处理记录: ts=2025-03-24 17:19:31.440000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 13 21 00 00 02 01 01 0A 00 00 01 01 0A 00 00 6C +2025-03-24 17:19:35,638 - INFO - 插入订单详情记录,UUID: c674603d98624027b99d0a5c0bf3f77e, 订单ID: e3fc8cfe927e4fe1812556ea4b1e7d96 +2025-03-24 17:19:35,638 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c674603d98624027b99d0a5c0bf3f77e', 'order_info_id': 'e3fc8cfe927e4fe1812556ea4b1e7d96', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 31, 440000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 31, 440000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 31, 440000)} +2025-03-24 17:19:35,638 - INFO - 处理记录: ts=2025-03-24 17:19:31.487000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 13 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 0C +2025-03-24 17:19:35,705 - INFO - 插入订单详情记录,UUID: b5726bae78eb4f23a73dad75b3cab047, 订单ID: 3ac1555397b84cd89c6a8c08184bcc58 +2025-03-24 17:19:35,705 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'b5726bae78eb4f23a73dad75b3cab047', 'order_info_id': '3ac1555397b84cd89c6a8c08184bcc58', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 31, 487000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 31, 487000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 31, 487000)} +2025-03-24 17:19:35,705 - INFO - 处理记录: ts=2025-03-24 17:19:32.040000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 13 27 01 02 01 01 01 01 43 +2025-03-24 17:19:35,747 - INFO - 插入订单详情记录,UUID: 7d1846d0554943a8a007729c059bbdca, 订单ID: 662164a55b01425bbbbe0fcb55ad8e95 +2025-03-24 17:19:35,747 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7d1846d0554943a8a007729c059bbdca', 'order_info_id': '662164a55b01425bbbbe0fcb55ad8e95', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 32, 40000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 32, 40000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 32, 40000)} +2025-03-24 17:19:35,747 - INFO - 处理记录: ts=2025-03-24 17:19:32.810000, pile_id=0317344611360613, hex_data=4A 58 08 03 17 34 46 11 36 06 13 01 11 00 19 03 18 11 13 22 00 00 00 00 02 00 00 00 00 00 00 6C +2025-03-24 17:19:35,787 - INFO - 插入订单详情记录,UUID: 56ca67c8191e40cebd6cd78bfbf0cc1d, 订单ID: 605e567698ac485e934392ef89d78399 +2025-03-24 17:19:35,787 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '56ca67c8191e40cebd6cd78bfbf0cc1d', 'order_info_id': '605e567698ac485e934392ef89d78399', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 32, 810000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 32, 810000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 32, 810000)} +2025-03-24 17:19:35,787 - INFO - 处理记录: ts=2025-03-24 17:19:33.446000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 13 21 00 4A +2025-03-24 17:19:35,828 - INFO - 插入订单详情记录,UUID: d684a037832a40a7adc5d71866203466, 订单ID: 786c0bea50474a0ea824fb287638b379 +2025-03-24 17:19:35,829 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'd684a037832a40a7adc5d71866203466', 'order_info_id': '786c0bea50474a0ea824fb287638b379', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 33, 446000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 33, 446000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 33, 446000)} +2025-03-24 17:19:35,872 - INFO - 处理记录: ts=2025-03-24 17:19:33.650000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 13 23 01 02 01 01 01 01 75 +2025-03-24 17:19:35,913 - INFO - 插入订单详情记录,UUID: 8f4afc8d2d914ace87612724972ebe08, 订单ID: 468fdaea5f55446d8ce9e0b29b3e3057 +2025-03-24 17:19:35,913 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '8f4afc8d2d914ace87612724972ebe08', 'order_info_id': '468fdaea5f55446d8ce9e0b29b3e3057', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 33, 650000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 33, 650000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 33, 650000)} +2025-03-24 17:19:35,913 - INFO - 处理记录: ts=2025-03-24 17:19:33.823000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 29 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BC +2025-03-24 17:19:35,913 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:35,955 - INFO - 插入订单详情记录,UUID: 1c2ceec4f41a4723a30e72906f7d1d68, 订单ID: 80f9b750d57a46e5aec4cd5eeefa142a +2025-03-24 17:19:35,955 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '1c2ceec4f41a4723a30e72906f7d1d68', 'order_info_id': '80f9b750d57a46e5aec4cd5eeefa142a', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 33, 823000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 33, 823000)} +2025-03-24 17:19:36,004 - INFO - 处理记录: ts=2025-03-24 17:19:34.471000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 13 2A 00 00 02 01 01 0A 00 00 01 01 0A 00 00 55 +2025-03-24 17:19:36,054 - INFO - 插入订单详情记录,UUID: 3fd95135692545a0b73b2c918ca0fb51, 订单ID: 77554bbcb59147bfa8856d712e983786 +2025-03-24 17:19:36,054 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '3fd95135692545a0b73b2c918ca0fb51', 'order_info_id': '77554bbcb59147bfa8856d712e983786', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 34, 471000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 34, 471000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 34, 471000)} +2025-03-24 17:19:36,054 - INFO - 处理记录: ts=2025-03-24 17:19:34.528000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 13 2A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 DD +2025-03-24 17:19:36,095 - INFO - 插入订单详情记录,UUID: c16e3e8eab494e5f8c8cf71a56432cad, 订单ID: 0e45e6bb13b244b48256c278021dd8c5 +2025-03-24 17:19:36,095 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c16e3e8eab494e5f8c8cf71a56432cad', 'order_info_id': '0e45e6bb13b244b48256c278021dd8c5', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 34, 528000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 34, 528000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 34, 528000)} +2025-03-24 17:19:36,134 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:46,182 - INFO - 处理记录: ts=2025-03-24 17:19:35.254000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 13 04 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D8 +2025-03-24 17:19:46,228 - INFO - 插入订单详情记录,UUID: 36a6b79236c8438cbbd5341d1acb328c, 订单ID: 57aab34e67fe4d988276d7ef0efffb3e +2025-03-24 17:19:46,229 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '36a6b79236c8438cbbd5341d1acb328c', 'order_info_id': '57aab34e67fe4d988276d7ef0efffb3e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 254000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 254000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 35, 254000)} +2025-03-24 17:19:46,229 - INFO - 处理记录: ts=2025-03-24 17:19:35.334000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 23 01 9F 09 00 00 2F +2025-03-24 17:19:46,303 - INFO - 插入订单详情记录,UUID: 501e68060f7b4516bd597451144de8c5, 订单ID: d9f00ae7e96748dc857bb5467c929207 +2025-03-24 17:19:46,303 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '501e68060f7b4516bd597451144de8c5', 'order_info_id': 'd9f00ae7e96748dc857bb5467c929207', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 334000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 334000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 35, 334000)} +2025-03-24 17:19:46,303 - INFO - 处理记录: ts=2025-03-24 17:19:35.387000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 13 23 00 5E +2025-03-24 17:19:46,345 - INFO - 插入订单详情记录,UUID: 6cecf8e0e82740639a54657625ce10e2, 订单ID: 3a8074a1174a402a93167299a2451167 +2025-03-24 17:19:46,346 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6cecf8e0e82740639a54657625ce10e2', 'order_info_id': '3a8074a1174a402a93167299a2451167', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 387000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 35, 387000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 35, 387000)} +2025-03-24 17:19:46,346 - INFO - 处理记录: ts=2025-03-24 17:19:36.191000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 13 2C 01 02 01 01 01 01 1C +2025-03-24 17:19:46,387 - INFO - 插入订单详情记录,UUID: c9ab5b3359d5420190ae58409d64b07f, 订单ID: 6738bd4b7dff47ed90e06e514f54aa09 +2025-03-24 17:19:46,387 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c9ab5b3359d5420190ae58409d64b07f', 'order_info_id': '6738bd4b7dff47ed90e06e514f54aa09', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 36, 191000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 36, 191000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 36, 191000)} +2025-03-24 17:19:46,387 - INFO - 处理记录: ts=2025-03-24 17:19:36.445000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 13 05 00 02 01 01 01 01 A3 +2025-03-24 17:19:46,429 - INFO - 插入订单详情记录,UUID: 51564580e1d0419b9d0f8aaa7f41d93f, 订单ID: 2588d7053f914b2d869728a55aaa59f8 +2025-03-24 17:19:46,429 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '51564580e1d0419b9d0f8aaa7f41d93f', 'order_info_id': '2588d7053f914b2d869728a55aaa59f8', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 36, 445000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 36, 445000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 36, 445000)} +2025-03-24 17:19:46,429 - INFO - 处理记录: ts=2025-03-24 17:19:39.195000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 13 27 00 7E +2025-03-24 17:19:46,470 - INFO - 插入订单详情记录,UUID: b23aa01d0e874c4499c9a8a65851fb27, 订单ID: 2e8acdbdf0b4409c9f36c6abc2981425 +2025-03-24 17:19:46,470 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'b23aa01d0e874c4499c9a8a65851fb27', 'order_info_id': '2e8acdbdf0b4409c9f36c6abc2981425', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 39, 195000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 39, 195000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 39, 195000)} +2025-03-24 17:19:46,470 - INFO - 处理记录: ts=2025-03-24 17:19:39.613000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 2F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BA +2025-03-24 17:19:46,470 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:46,512 - INFO - 插入订单详情记录,UUID: f51e453563d24affb460b7b0f63ae002, 订单ID: db02bc44c3ca4ca1a3baf7770646fb19 +2025-03-24 17:19:46,512 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f51e453563d24affb460b7b0f63ae002', 'order_info_id': 'db02bc44c3ca4ca1a3baf7770646fb19', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 39, 613000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 39, 613000)} +2025-03-24 17:19:46,512 - INFO - 处理记录: ts=2025-03-24 17:19:40.357000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 13 28 00 02 01 01 01 01 5B +2025-03-24 17:19:46,571 - INFO - 插入订单详情记录,UUID: a5c80e643e304e81a5af99a6d035afcd, 订单ID: e4e7b7bd77f841538c960c5e572037b5 +2025-03-24 17:19:46,571 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a5c80e643e304e81a5af99a6d035afcd', 'order_info_id': 'e4e7b7bd77f841538c960c5e572037b5', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 357000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 357000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 40, 357000)} +2025-03-24 17:19:46,571 - INFO - 处理记录: ts=2025-03-24 17:19:40.783000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 13 28 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B4 +2025-03-24 17:19:46,612 - INFO - 插入订单详情记录,UUID: 0cf0aa37386543e18e26dcccfe940119, 订单ID: 6fef77bf5af34f869ebd3262dc118eba +2025-03-24 17:19:46,612 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '0cf0aa37386543e18e26dcccfe940119', 'order_info_id': '6fef77bf5af34f869ebd3262dc118eba', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 783000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 783000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 40, 783000)} +2025-03-24 17:19:46,612 - INFO - 处理记录: ts=2025-03-24 17:19:40.864000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 13 28 00 A3 03 00 00 C6 +2025-03-24 17:19:46,670 - INFO - 插入订单详情记录,UUID: c74c3990003046218000435d8cca388d, 订单ID: 347e2b398a1442cf969f4a28e6f1b1db +2025-03-24 17:19:46,670 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c74c3990003046218000435d8cca388d', 'order_info_id': '347e2b398a1442cf969f4a28e6f1b1db', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 864000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 40, 864000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 40, 864000)} +2025-03-24 17:19:46,670 - INFO - 处理记录: ts=2025-03-24 17:19:42.665000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 13 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 58 +2025-03-24 17:19:46,754 - INFO - 插入订单详情记录,UUID: afc859de136744498058f895505d7d02, 订单ID: ee59e14825fd473d83845109b49c80f4 +2025-03-24 17:19:46,754 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'afc859de136744498058f895505d7d02', 'order_info_id': 'ee59e14825fd473d83845109b49c80f4', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 42, 665000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 42, 665000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 42, 665000)} +2025-03-24 17:19:46,754 - INFO - 处理记录: ts=2025-03-24 17:19:43.913000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 13 2C 00 13 +2025-03-24 17:19:46,796 - INFO - 插入订单详情记录,UUID: b334080a255148c2a99b7d3fecfc1859, 订单ID: 5c17a333369449818fda1ec30090a61d +2025-03-24 17:19:46,796 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'b334080a255148c2a99b7d3fecfc1859', 'order_info_id': '5c17a333369449818fda1ec30090a61d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 43, 913000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 43, 913000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 43, 913000)} +2025-03-24 17:19:46,842 - INFO - 处理记录: ts=2025-03-24 17:19:45.380000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 35 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A0 +2025-03-24 17:19:46,842 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:46,887 - INFO - 插入订单详情记录,UUID: 96773361e6524c3a8b42b6c5df3dab59, 订单ID: 175e7f5da29141e3ac4fa72960e22525 +2025-03-24 17:19:46,887 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '96773361e6524c3a8b42b6c5df3dab59', 'order_info_id': '175e7f5da29141e3ac4fa72960e22525', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 45, 380000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 45, 380000)} +2025-03-24 17:19:46,887 - INFO - 处理记录: ts=2025-03-24 17:19:45.386000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 13 0E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D2 +2025-03-24 17:19:46,928 - INFO - 插入订单详情记录,UUID: aab15b41dc014daaa213c005d9dbf174, 订单ID: 6afc786796d648b4a832f903cabb27c8 +2025-03-24 17:19:46,928 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'aab15b41dc014daaa213c005d9dbf174', 'order_info_id': '6afc786796d648b4a832f903cabb27c8', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 45, 386000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 45, 386000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 45, 386000)} +2025-03-24 17:19:46,973 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:57,021 - INFO - 处理记录: ts=2025-03-24 17:19:45.795000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 2D 01 9F 09 00 00 21 +2025-03-24 17:19:57,079 - INFO - 插入订单详情记录,UUID: 7098c68386e240cdb3b023a01e72e190, 订单ID: 3fd47fb0669e4b7580a79cfd4e4412c5 +2025-03-24 17:19:57,079 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7098c68386e240cdb3b023a01e72e190', 'order_info_id': '3fd47fb0669e4b7580a79cfd4e4412c5', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 45, 795000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 45, 795000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 45, 795000)} +2025-03-24 17:19:57,079 - INFO - 处理记录: ts=2025-03-24 17:19:46.472000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 13 0F 01 02 01 01 01 01 A8 +2025-03-24 17:19:57,137 - INFO - 插入订单详情记录,UUID: fc8f0f5336754ecc82fbbc3e8f7bf100, 订单ID: 7aab8d77248b45edb6a8ab2ad6d3002e +2025-03-24 17:19:57,138 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'fc8f0f5336754ecc82fbbc3e8f7bf100', 'order_info_id': '7aab8d77248b45edb6a8ab2ad6d3002e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 46, 472000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 46, 472000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 46, 472000)} +2025-03-24 17:19:57,138 - INFO - 处理记录: ts=2025-03-24 17:19:47.289000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 13 36 01 02 01 01 01 01 52 +2025-03-24 17:19:57,195 - INFO - 插入订单详情记录,UUID: d9f39930d76740ab97a5f56e52a38fd6, 订单ID: 59157d6038dc47c9a6f62bab9ea5bade +2025-03-24 17:19:57,196 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'd9f39930d76740ab97a5f56e52a38fd6', 'order_info_id': '59157d6038dc47c9a6f62bab9ea5bade', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 47, 289000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 47, 289000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 47, 289000)} +2025-03-24 17:19:57,196 - INFO - 处理记录: ts=2025-03-24 17:19:47.681000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 13 10 00 00 02 01 01 00 00 00 01 01 00 00 00 AC +2025-03-24 17:19:57,237 - INFO - 插入订单详情记录,UUID: 5d3fff38006a4db0abfb8edc1870f0d1, 订单ID: b4a2ba57a8a44247b6eb532e6a80aba7 +2025-03-24 17:19:57,238 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '5d3fff38006a4db0abfb8edc1870f0d1', 'order_info_id': 'b4a2ba57a8a44247b6eb532e6a80aba7', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 47, 681000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 47, 681000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 47, 681000)} +2025-03-24 17:19:57,238 - INFO - 处理记录: ts=2025-03-24 17:19:48.446000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 13 30 00 5B +2025-03-24 17:19:57,298 - INFO - 插入订单详情记录,UUID: ceaf777be3294a67b66f9860d6aa50ca, 订单ID: bdbb7fd76e2e445aace7b546a7fbbcbd +2025-03-24 17:19:57,298 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'ceaf777be3294a67b66f9860d6aa50ca', 'order_info_id': 'bdbb7fd76e2e445aace7b546a7fbbcbd', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 48, 446000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 48, 446000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 48, 446000)} +2025-03-24 17:19:57,298 - INFO - 处理记录: ts=2025-03-24 17:19:48.776000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 13 30 00 00 02 01 01 00 00 00 01 01 00 00 00 59 +2025-03-24 17:19:57,354 - INFO - 插入订单详情记录,UUID: 38aec50894ba401a8fc5b7789b53adc3, 订单ID: 0c0572e660e041d098502adc780de839 +2025-03-24 17:19:57,354 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '38aec50894ba401a8fc5b7789b53adc3', 'order_info_id': '0c0572e660e041d098502adc780de839', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 48, 776000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 48, 776000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 48, 776000)} +2025-03-24 17:19:57,354 - INFO - 处理记录: ts=2025-03-24 17:19:49.499000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 13 33 01 02 01 01 01 01 65 +2025-03-24 17:19:57,395 - INFO - 插入订单详情记录,UUID: e17072ee85294949bb143d173acbe004, 订单ID: 75bc7b5facd34c3cad33ab99e6b0935f +2025-03-24 17:19:57,395 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'e17072ee85294949bb143d173acbe004', 'order_info_id': '75bc7b5facd34c3cad33ab99e6b0935f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 49, 499000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 49, 499000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 49, 499000)} +2025-03-24 17:19:57,395 - INFO - 处理记录: ts=2025-03-24 17:19:50.004000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 13 32 00 9A +2025-03-24 17:19:57,437 - INFO - 插入订单详情记录,UUID: 5ae0e952959f4af08b61cbcd6a91d772, 订单ID: ad45e5dc7a9a4a4c85629cf33e6f115e +2025-03-24 17:19:57,437 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '5ae0e952959f4af08b61cbcd6a91d772', 'order_info_id': 'ad45e5dc7a9a4a4c85629cf33e6f115e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 4000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 4000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 50, 4000)} +2025-03-24 17:19:57,437 - INFO - 处理记录: ts=2025-03-24 17:19:50.387000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 13 32 01 02 01 01 01 01 40 +2025-03-24 17:19:57,479 - INFO - 插入订单详情记录,UUID: 4252b4acb77747129680ffd7849697fa, 订单ID: db25d5856939445bac4ba9d63de7c115 +2025-03-24 17:19:57,479 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '4252b4acb77747129680ffd7849697fa', 'order_info_id': 'db25d5856939445bac4ba9d63de7c115', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 387000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 387000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 50, 387000)} +2025-03-24 17:19:57,479 - INFO - 处理记录: ts=2025-03-24 17:19:50.409000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 13 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 24 +2025-03-24 17:19:57,529 - INFO - 插入订单详情记录,UUID: b992d2aad72546d39d2e965add670361, 订单ID: d8064f33282f44e5afb902833d21a79a +2025-03-24 17:19:57,529 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'b992d2aad72546d39d2e965add670361', 'order_info_id': 'd8064f33282f44e5afb902833d21a79a', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 409000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 409000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 50, 409000)} +2025-03-24 17:19:57,530 - INFO - 处理记录: ts=2025-03-24 17:19:50.931000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 13 33 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 AF +2025-03-24 17:19:57,572 - INFO - 插入订单详情记录,UUID: a899c084f1ea471888aec4ae6127aa01, 订单ID: 21981203c03e4208ba921a7135e8ccfc +2025-03-24 17:19:57,572 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a899c084f1ea471888aec4ae6127aa01', 'order_info_id': '21981203c03e4208ba921a7135e8ccfc', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 931000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 50, 931000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 50, 931000)} +2025-03-24 17:19:57,572 - INFO - 处理记录: ts=2025-03-24 17:19:51.013000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 13 33 00 A3 03 00 00 DD +2025-03-24 17:19:57,612 - INFO - 插入订单详情记录,UUID: 17d39f40443a4d5f81590063b2c444c5, 订单ID: 41107d2de3cb431b9b47f11f8522dc79 +2025-03-24 17:19:57,612 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '17d39f40443a4d5f81590063b2c444c5', 'order_info_id': '41107d2de3cb431b9b47f11f8522dc79', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 51, 13000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 51, 13000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 51, 13000)} +2025-03-24 17:19:57,613 - INFO - 处理记录: ts=2025-03-24 17:19:51.176000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 13 3A 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AF +2025-03-24 17:19:57,613 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:19:57,654 - INFO - 插入订单详情记录,UUID: 6a358698aaa049a9b5b96152c273b8b2, 订单ID: 8dd1eed11c57468683c1259c0e36c41a +2025-03-24 17:19:57,654 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6a358698aaa049a9b5b96152c273b8b2', 'order_info_id': '8dd1eed11c57468683c1259c0e36c41a', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 51, 176000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 51, 176000)} +2025-03-24 17:19:57,654 - INFO - 处理记录: ts=2025-03-24 17:19:51.409000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 14 00 01 02 01 01 01 01 37 +2025-03-24 17:19:57,695 - INFO - 插入订单详情记录,UUID: c49818e20ba84be897f2644c245039ab, 订单ID: fc9abc7a17b74f61a7cc199565faa6ca +2025-03-24 17:19:57,695 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c49818e20ba84be897f2644c245039ab', 'order_info_id': 'fc9abc7a17b74f61a7cc199565faa6ca', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 51, 409000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 51, 409000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 51, 409000)} +2025-03-24 17:19:57,695 - INFO - 处理记录: ts=2025-03-24 17:19:54.197000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 13 36 00 6F +2025-03-24 17:19:57,737 - INFO - 插入订单详情记录,UUID: a27f3f5f3366455591843fb625e85584, 订单ID: 92f248509dc9402d869b0b879508ed85 +2025-03-24 17:19:57,737 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a27f3f5f3366455591843fb625e85584', 'order_info_id': '92f248509dc9402d869b0b879508ed85', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 54, 197000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 54, 197000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 54, 197000)} +2025-03-24 17:19:57,737 - INFO - 处理记录: ts=2025-03-24 17:19:55.386000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 13 37 00 4A +2025-03-24 17:19:57,779 - INFO - 插入订单详情记录,UUID: 05b2a63dbe9b44eb8c7700905af13386, 订单ID: b2f29d905bee4fe6af13f1f0fd8dcb37 +2025-03-24 17:19:57,779 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '05b2a63dbe9b44eb8c7700905af13386', 'order_info_id': 'b2f29d905bee4fe6af13f1f0fd8dcb37', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 386000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 386000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 55, 386000)} +2025-03-24 17:19:57,779 - INFO - 处理记录: ts=2025-03-24 17:19:55.515000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 13 18 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 C4 +2025-03-24 17:19:57,821 - INFO - 插入订单详情记录,UUID: 6bf6f1893583400b82aa5454291f46f3, 订单ID: 5dc90d2906fc47589259007f4973321d +2025-03-24 17:19:57,821 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6bf6f1893583400b82aa5454291f46f3', 'order_info_id': '5dc90d2906fc47589259007f4973321d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 515000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 515000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 55, 515000)} +2025-03-24 17:19:57,867 - INFO - 处理记录: ts=2025-03-24 17:19:55.598000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 13 37 01 9F 09 00 00 3B +2025-03-24 17:19:57,913 - INFO - 插入订单详情记录,UUID: fd579368fd3e41c38f97580e56a7ac6d, 订单ID: 8d2634d01c7144bc938aef964c7f4d69 +2025-03-24 17:19:57,913 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'fd579368fd3e41c38f97580e56a7ac6d', 'order_info_id': '8d2634d01c7144bc938aef964c7f4d69', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 598000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 55, 598000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 55, 598000)} +2025-03-24 17:19:57,951 - INFO - 处理记录: ts=2025-03-24 17:19:56.503000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 13 19 00 02 01 01 01 01 BF +2025-03-24 17:19:57,996 - INFO - 插入订单详情记录,UUID: 7e96f0cf13334e36a6933fe540cd2346, 订单ID: c5543781e130462d947ac0683132d880 +2025-03-24 17:19:57,996 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7e96f0cf13334e36a6933fe540cd2346', 'order_info_id': 'c5543781e130462d947ac0683132d880', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 19, 56, 503000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 19, 56, 503000), 'created_at': datetime.datetime(2025, 3, 24, 17, 19, 56, 503000)} +2025-03-24 17:19:58,032 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:19:59,394 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_detail.py b/charging_pile_proxy/hejin_forward/charge_order_detail.py new file mode 100644 index 0000000..f35e982 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_detail.py @@ -0,0 +1,303 @@ +import taosrest +import psycopg2 +from datetime import datetime +import binascii +import logging +import uuid +import time + +# 配置日志 +logging.basicConfig( + filename='charge_order_detail.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeOrderDetailMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', # 修改为 readonly_user + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_uuids = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_bcd_time(self, bcd_bytes): + """解析BCD码时间(假设格式为 YYMMDDHHMMSS)""" + try: + year = 2000 + (bcd_bytes[0] >> 4) * 10 + (bcd_bytes[0] & 0x0F) + month = (bcd_bytes[1] >> 4) * 10 + (bcd_bytes[1] & 0x0F) + day = (bcd_bytes[2] >> 4) * 10 + (bcd_bytes[2] & 0x0F) + hour = (bcd_bytes[3] >> 4) * 10 + (bcd_bytes[3] & 0x0F) + minute = (bcd_bytes[4] >> 4) * 10 + (bcd_bytes[4] & 0x0F) + second = (bcd_bytes[5] >> 4) * 10 + (bcd_bytes[5] & 0x0F) + return datetime(year, month, day, hour, minute, second) + except Exception as e: + logging.error(f"解析BCD时间出错: {str(e)}") + return None + + def parse_hex_data(self, hex_data, timestamp): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 初始化数据字典 + data = { + 'command': command, + 'order_info_id': str(uuid.uuid4()).replace('-', ''), + 'detail_start_time': timestamp, + 'detail_end_time': timestamp, + 'elec_price': 0.0, + 'sevice_price': 0.0, + 'detail_power': 0.0, + 'detail_elec_money': 0.0, + 'detail_sevice_money': 0.0 + } + + # 23H - 最新充电订单 + if command == '23': + # 起始充电电量(字节119-122,分辨率0.01kWh) + start_power = int.from_bytes(hex_bytes[119:123], byteorder='little') * 0.01 + # 结束充电电量(字节123-126,分辨率0.01kWh) + end_power = int.from_bytes(hex_bytes[123:127], byteorder='little') * 0.01 + # 计算总电量 + detail_power = end_power - start_power + + # 电费和服务费 + electricity_fee = int.from_bytes(hex_bytes[147:151], byteorder='little') * 0.01 + service_fee = int.from_bytes(hex_bytes[151:155], byteorder='little') * 0.01 + + # 计算电价和服务费单价(假设整个充电过程使用单一费率) + elec_price = electricity_fee / detail_power if detail_power > 0 else 0.0 + sevice_price = service_fee / detail_power if detail_power > 0 else 0.0 + + # 充电开始时间和结束时间(字节127-132和133-138,格式为BCD码) + start_time = self.parse_bcd_time(hex_bytes[127:133]) + end_time = self.parse_bcd_time(hex_bytes[133:139]) + + data.update({ + 'detail_power': detail_power, + 'detail_elec_money': electricity_fee, + 'detail_sevice_money': service_fee, + 'elec_price': elec_price, + 'sevice_price': sevice_price, + 'detail_start_time': start_time if start_time else timestamp, + 'detail_end_time': end_time if end_time else timestamp + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的charge_order_detail表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID + hex_data = row[12] # 十六进制数据 + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data, timestamp) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 生成唯一uuid + record_uuid = str(uuid.uuid4()).replace('-', '') + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM charge_order_detail WHERE uuid = %s + """ + self.pg_cursor.execute(check_query, (record_uuid,)) + exists = self.pg_cursor.fetchone() is not None + + # 如果记录已存在,跳过 + if exists or record_uuid in self.processed_uuids: + logging.info(f"订单详情记录已存在,UUID: {record_uuid},跳过") + continue + + # 准备插入PostgreSQL的数据 + insert_query = """ + INSERT INTO public.charge_order_detail ( + uuid, order_info_id, detail_end_time, elec_price, sevice_price, + detail_power, detail_elec_money, detail_sevice_money, + detail_start_time, created_at + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + values = ( + record_uuid, + parsed_data['order_info_id'], + parsed_data['detail_end_time'], + parsed_data['elec_price'], + parsed_data['sevice_price'], + parsed_data['detail_power'], + parsed_data['detail_elec_money'], + parsed_data['detail_sevice_money'], + parsed_data['detail_start_time'], + timestamp + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_uuids.add(record_uuid) + logging.info(f"插入订单详情记录,UUID: {record_uuid}, 订单ID: {parsed_data['order_info_id']}") + + # 记录插入的完整数据 + log_values = { + 'uuid': record_uuid, + 'order_info_id': parsed_data['order_info_id'], + 'detail_end_time': parsed_data['detail_end_time'], + 'elec_price': parsed_data['elec_price'], + 'sevice_price': parsed_data['sevice_price'], + 'detail_power': parsed_data['detail_power'], + 'detail_elec_money': parsed_data['detail_elec_money'], + 'detail_sevice_money': parsed_data['detail_sevice_money'], + 'detail_start_time': parsed_data['detail_start_time'], + 'created_at': timestamp + } + logging.info(f"插入到 charge_order_detail 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = ChargeOrderDetailMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_order_detail_migration.log b/charging_pile_proxy/hejin_forward/charge_order_detail_migration.log new file mode 100644 index 0000000..6c00b9c --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_detail_migration.log @@ -0,0 +1,133 @@ +2025-03-24 10:40:50,757 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:40:52,315 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:40:52,315 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:40:52,315 - INFO - 数据库连接已关闭 +2025-03-24 17:18:05,227 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:18:14,642 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:18:23,813 - INFO - 成功连接到TDengine +2025-03-24 17:18:23,850 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:18:23,850 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:18:23,975 - INFO - 成功连接到PostgreSQL +2025-03-24 17:18:24,015 - INFO - 初始化last_processed_ts: 2025-03-24 17:18:22.437000 +2025-03-24 17:18:24,056 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:18:34,098 - INFO - 处理记录: ts=2025-03-24 17:18:24.198000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 12 18 00 40 +2025-03-24 17:18:34,155 - INFO - 插入订单详情记录,UUID: 8e80f6d13a954bbe8433ff79f829f1da, 订单ID: b04672997e0941dd8a945fc6ad48dc79 +2025-03-24 17:18:34,155 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '8e80f6d13a954bbe8433ff79f829f1da', 'order_info_id': 'b04672997e0941dd8a945fc6ad48dc79', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 198000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 198000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 24, 198000)} +2025-03-24 17:18:34,156 - INFO - 处理记录: ts=2025-03-24 17:18:24.213000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 12 1F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 8B +2025-03-24 17:18:34,156 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:18:34,213 - INFO - 插入订单详情记录,UUID: 628818ad26574dbb8f6e2bce5bab18a2, 订单ID: 4e5e8ebb5834402cb314cdb6c45ddac4 +2025-03-24 17:18:34,213 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '628818ad26574dbb8f6e2bce5bab18a2', 'order_info_id': '4e5e8ebb5834402cb314cdb6c45ddac4', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 213000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 24, 213000)} +2025-03-24 17:18:34,213 - INFO - 处理记录: ts=2025-03-24 17:18:24.374000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 11 35 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 EB +2025-03-24 17:18:34,263 - INFO - 插入订单详情记录,UUID: 67bd4e951b7a49eb9195520f675134f0, 订单ID: 4ca77caa04ed44c4be3f0cf6f85367d7 +2025-03-24 17:18:34,263 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '67bd4e951b7a49eb9195520f675134f0', 'order_info_id': '4ca77caa04ed44c4be3f0cf6f85367d7', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 374000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 374000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 24, 374000)} +2025-03-24 17:18:34,263 - INFO - 处理记录: ts=2025-03-24 17:18:24.453000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 12 18 01 9F 09 00 00 15 +2025-03-24 17:18:34,320 - INFO - 插入订单详情记录,UUID: c7c3a788240e454ab62fd662edc1dc74, 订单ID: 649a46a4b90c4cf188fe7652f2ebff7e +2025-03-24 17:18:34,322 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'c7c3a788240e454ab62fd662edc1dc74', 'order_info_id': '649a46a4b90c4cf188fe7652f2ebff7e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 453000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 24, 453000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 24, 453000)} +2025-03-24 17:18:34,322 - INFO - 处理记录: ts=2025-03-24 17:18:26.245000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 11 37 01 02 01 01 01 01 92 +2025-03-24 17:18:34,388 - INFO - 插入订单详情记录,UUID: 82b20a9459d54aa0a4723429a2570b77, 订单ID: ab42b88db70a46a99caeb210c7073ea2 +2025-03-24 17:18:34,388 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '82b20a9459d54aa0a4723429a2570b77', 'order_info_id': 'ab42b88db70a46a99caeb210c7073ea2', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 26, 245000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 26, 245000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 26, 245000)} +2025-03-24 17:18:34,388 - INFO - 处理记录: ts=2025-03-24 17:18:27.438000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 11 38 00 00 02 01 01 00 00 00 01 01 00 00 00 86 +2025-03-24 17:18:34,553 - INFO - 插入订单详情记录,UUID: 273787bd6e924a69831dc179d1e77c9b, 订单ID: ee41c6bb86d94dadb665d0ca4baa8770 +2025-03-24 17:18:34,553 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '273787bd6e924a69831dc179d1e77c9b', 'order_info_id': 'ee41c6bb86d94dadb665d0ca4baa8770', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 27, 438000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 27, 438000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 27, 438000)} +2025-03-24 17:18:34,554 - INFO - 处理记录: ts=2025-03-24 17:18:28.543000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 12 1C 00 00 02 01 01 00 00 00 01 01 00 00 00 74 +2025-03-24 17:18:34,846 - INFO - 插入订单详情记录,UUID: 1126038632584f409a20217524319050, 订单ID: 917407f038424dc4a89c71f443f11524 +2025-03-24 17:18:34,846 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '1126038632584f409a20217524319050', 'order_info_id': '917407f038424dc4a89c71f443f11524', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 28, 543000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 28, 543000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 28, 543000)} +2025-03-24 17:18:34,846 - INFO - 处理记录: ts=2025-03-24 17:18:28.915000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 12 1D 00 23 +2025-03-24 17:18:34,905 - INFO - 插入订单详情记录,UUID: 9eb3d6c9c9e14a6b9523d4ede686c94e, 订单ID: 531f58a3d43c4e15b23c079d6580d9b2 +2025-03-24 17:18:34,905 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '9eb3d6c9c9e14a6b9523d4ede686c94e', 'order_info_id': '531f58a3d43c4e15b23c079d6580d9b2', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 28, 915000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 28, 915000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 28, 915000)} +2025-03-24 17:18:34,905 - INFO - 处理记录: ts=2025-03-24 17:18:29.854000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 12 1D 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 80 +2025-03-24 17:18:34,963 - INFO - 插入订单详情记录,UUID: a9a4f5d5b86045b69b6d2048b0cc65a8, 订单ID: 74bd865cb1a84df9b657b1ac92865001 +2025-03-24 17:18:34,963 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'a9a4f5d5b86045b69b6d2048b0cc65a8', 'order_info_id': '74bd865cb1a84df9b657b1ac92865001', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 29, 854000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 29, 854000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 29, 854000)} +2025-03-24 17:18:34,963 - INFO - 处理记录: ts=2025-03-24 17:18:29.940000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 12 1E 00 A3 03 00 00 F1 +2025-03-24 17:18:35,020 - INFO - 插入订单详情记录,UUID: cc0bc81b69b34dc8bcbbe32dfae3cb8e, 订单ID: a91bf81bed844c26b41b453e29d75e8d +2025-03-24 17:18:35,022 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'cc0bc81b69b34dc8bcbbe32dfae3cb8e', 'order_info_id': 'a91bf81bed844c26b41b453e29d75e8d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 29, 940000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 29, 940000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 29, 940000)} +2025-03-24 17:18:35,022 - INFO - 处理记录: ts=2025-03-24 17:18:30.006000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 12 1E 00 B7 +2025-03-24 17:18:35,079 - INFO - 插入订单详情记录,UUID: 9584207acbce4759a14501a645f9827e, 订单ID: cf03a67aa6944f3caa4ee605b894d3af +2025-03-24 17:18:35,079 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '9584207acbce4759a14501a645f9827e', 'order_info_id': 'cf03a67aa6944f3caa4ee605b894d3af', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 6000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 6000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 30, 6000)} +2025-03-24 17:18:35,079 - INFO - 处理记录: ts=2025-03-24 17:18:30.007000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 12 25 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 17:18:35,079 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:18:35,137 - INFO - 插入订单详情记录,UUID: 782dc683c998427e9a48e647ec6898e5, 订单ID: 2e4f0a720451404a8306ea986a7f5901 +2025-03-24 17:18:35,137 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '782dc683c998427e9a48e647ec6898e5', 'order_info_id': '2e4f0a720451404a8306ea986a7f5901', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 7000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 30, 7000)} +2025-03-24 17:18:35,137 - INFO - 处理记录: ts=2025-03-24 17:18:30.137000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 12 1E 01 02 01 01 01 01 6D +2025-03-24 17:18:35,179 - INFO - 插入订单详情记录,UUID: 6e09a38ae44048e0bb077a67c309b304, 订单ID: c3ec0dd52a9a4c22b32c9cac82c9fd24 +2025-03-24 17:18:35,180 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6e09a38ae44048e0bb077a67c309b304', 'order_info_id': 'c3ec0dd52a9a4c22b32c9cac82c9fd24', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 137000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 137000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 30, 137000)} +2025-03-24 17:18:35,180 - INFO - 处理记录: ts=2025-03-24 17:18:30.157000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 12 1E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 09 +2025-03-24 17:18:35,221 - INFO - 插入订单详情记录,UUID: 18a9693fb8064ecc9fa224356244a16d, 订单ID: 12dd81414bd046448ad7b0bd37a05d89 +2025-03-24 17:18:35,222 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '18a9693fb8064ecc9fa224356244a16d', 'order_info_id': '12dd81414bd046448ad7b0bd37a05d89', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 157000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 157000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 30, 157000)} +2025-03-24 17:18:35,222 - INFO - 处理记录: ts=2025-03-24 17:18:30.443000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 12 26 01 02 01 01 01 01 43 +2025-03-24 17:18:35,263 - INFO - 插入订单详情记录,UUID: 5dbbbdbb4ec9462a9ae53f3c852bb8dd, 订单ID: 3d7df5bd0419436085e35ba68bbb123c +2025-03-24 17:18:35,263 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '5dbbbdbb4ec9462a9ae53f3c852bb8dd', 'order_info_id': '3d7df5bd0419436085e35ba68bbb123c', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 443000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 30, 443000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 30, 443000)} +2025-03-24 17:18:35,263 - INFO - 处理记录: ts=2025-03-24 17:18:32.301000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 12 21 01 02 01 01 01 01 76 +2025-03-24 17:18:35,313 - INFO - 插入订单详情记录,UUID: ab7ad8b10cf34cc48f9dcb141bb52783, 订单ID: 7ed252654ea842f6853b975005c03688 +2025-03-24 17:18:35,313 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'ab7ad8b10cf34cc48f9dcb141bb52783', 'order_info_id': '7ed252654ea842f6853b975005c03688', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 301000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 301000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 32, 301000)} +2025-03-24 17:18:35,313 - INFO - 处理记录: ts=2025-03-24 17:18:32.623000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 12 29 00 00 02 01 01 0A 00 00 01 01 0A 00 00 03 +2025-03-24 17:18:35,375 - INFO - 插入订单详情记录,UUID: 16bcb5780a1f4cb4a4bdbd6afb697d94, 订单ID: 4a1d29276df146c6a8ac32cafbd31cec +2025-03-24 17:18:35,376 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '16bcb5780a1f4cb4a4bdbd6afb697d94', 'order_info_id': '4a1d29276df146c6a8ac32cafbd31cec', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 623000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 623000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 32, 623000)} +2025-03-24 17:18:35,413 - INFO - 处理记录: ts=2025-03-24 17:18:32.680000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 12 29 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 A3 +2025-03-24 17:18:35,471 - INFO - 插入订单详情记录,UUID: 3518e361b7f94f08a559a4ef3741bb4c, 订单ID: 9d0d8e324eb64f9e98ebfb4f7b8f2519 +2025-03-24 17:18:35,471 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '3518e361b7f94f08a559a4ef3741bb4c', 'order_info_id': '9d0d8e324eb64f9e98ebfb4f7b8f2519', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 680000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 32, 680000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 32, 680000)} +2025-03-24 17:18:35,471 - INFO - 处理记录: ts=2025-03-24 17:18:33.447000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 12 21 00 4B +2025-03-24 17:18:35,512 - INFO - 插入订单详情记录,UUID: 0921acbcab694badb3f437fe37a73f50, 订单ID: 4644a9c5a38d4d52b6bf09f60410cf1d +2025-03-24 17:18:35,513 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '0921acbcab694badb3f437fe37a73f50', 'order_info_id': '4644a9c5a38d4d52b6bf09f60410cf1d', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 33, 447000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 33, 447000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 33, 447000)} +2025-03-24 17:18:35,555 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:18:45,601 - INFO - 处理记录: ts=2025-03-24 17:18:34.486000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 12 03 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:18:45,659 - INFO - 插入订单详情记录,UUID: 501057b70b274f0792649ebc2966f3e8, 订单ID: 6b7dbbcecdd14536b3f690cc7088c2d0 +2025-03-24 17:18:45,659 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '501057b70b274f0792649ebc2966f3e8', 'order_info_id': '6b7dbbcecdd14536b3f690cc7088c2d0', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 486000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 486000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 34, 486000)} +2025-03-24 17:18:45,659 - INFO - 处理记录: ts=2025-03-24 17:18:34.533000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 12 2B 01 02 01 01 01 01 1A +2025-03-24 17:18:45,726 - INFO - 插入订单详情记录,UUID: 1940be03fab447bb9a9431f11d652328, 订单ID: dd698441b7df410395ea4f47c0551f77 +2025-03-24 17:18:45,726 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '1940be03fab447bb9a9431f11d652328', 'order_info_id': 'dd698441b7df410395ea4f47c0551f77', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 533000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 533000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 34, 533000)} +2025-03-24 17:18:45,726 - INFO - 处理记录: ts=2025-03-24 17:18:34.566000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 12 22 01 9F 09 00 00 2F +2025-03-24 17:18:45,784 - INFO - 插入订单详情记录,UUID: bc242e724bae4f27bc0d027015c3b8e2, 订单ID: 9dcdd108eabe4f6ba3b9262f8a1df0c9 +2025-03-24 17:18:45,784 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'bc242e724bae4f27bc0d027015c3b8e2', 'order_info_id': '9dcdd108eabe4f6ba3b9262f8a1df0c9', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 566000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 34, 566000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 34, 566000)} +2025-03-24 17:18:45,784 - INFO - 处理记录: ts=2025-03-24 17:18:35.389000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 12 23 00 5F +2025-03-24 17:18:45,865 - INFO - 插入订单详情记录,UUID: 167ab66356ad4878b4fd78e21017b842, 订单ID: f351ac824ea84bb3a5c05d30c56e47aa +2025-03-24 17:18:45,865 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '167ab66356ad4878b4fd78e21017b842', 'order_info_id': 'f351ac824ea84bb3a5c05d30c56e47aa', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 35, 389000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 35, 389000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 35, 389000)} +2025-03-24 17:18:45,865 - INFO - 处理记录: ts=2025-03-24 17:18:35.791000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 12 2B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BF +2025-03-24 17:18:45,865 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:18:45,945 - INFO - 插入订单详情记录,UUID: 6ba8a1af43334b549681fda5467b6abe, 订单ID: 345864bdf5b8462fa817c261cd5dc869 +2025-03-24 17:18:45,945 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '6ba8a1af43334b549681fda5467b6abe', 'order_info_id': '345864bdf5b8462fa817c261cd5dc869', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 35, 791000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 35, 791000)} +2025-03-24 17:18:45,945 - INFO - 处理记录: ts=2025-03-24 17:18:36.279000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 12 05 00 02 01 01 01 01 A2 +2025-03-24 17:18:46,039 - INFO - 插入订单详情记录,UUID: f2fb723761964287a41cedc4c8adaf46, 订单ID: ad3327a138e245a6a45f2e1791dd3fed +2025-03-24 17:18:46,039 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f2fb723761964287a41cedc4c8adaf46', 'order_info_id': 'ad3327a138e245a6a45f2e1791dd3fed', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 36, 279000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 36, 279000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 36, 279000)} +2025-03-24 17:18:46,039 - INFO - 处理记录: ts=2025-03-24 17:18:39.197000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 12 27 00 7F +2025-03-24 17:18:46,113 - INFO - 插入订单详情记录,UUID: 22d353bb39e74c90bc0129480a37e47b, 订单ID: 49d583ffa1224e16be7368a6c4ff2389 +2025-03-24 17:18:46,113 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '22d353bb39e74c90bc0129480a37e47b', 'order_info_id': '49d583ffa1224e16be7368a6c4ff2389', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 39, 197000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 39, 197000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 39, 197000)} +2025-03-24 17:18:46,113 - INFO - 处理记录: ts=2025-03-24 17:18:39.985000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 12 28 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:18:46,218 - INFO - 插入订单详情记录,UUID: 23c457898e014524949dec6e80c9105f, 订单ID: 1ec0b0695e26403d8b5da28e47a01d7f +2025-03-24 17:18:46,218 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '23c457898e014524949dec6e80c9105f', 'order_info_id': '1ec0b0695e26403d8b5da28e47a01d7f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 39, 985000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 39, 985000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 39, 985000)} +2025-03-24 17:18:46,218 - INFO - 处理记录: ts=2025-03-24 17:18:40.067000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 12 28 00 A3 03 00 00 C7 +2025-03-24 17:18:46,276 - INFO - 插入订单详情记录,UUID: ac696b5ec0a541df885f3c9b25596e42, 订单ID: 4be51b4ca2a248a28137a0673b289441 +2025-03-24 17:18:46,277 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'ac696b5ec0a541df885f3c9b25596e42', 'order_info_id': '4be51b4ca2a248a28137a0673b289441', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 67000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 67000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 40, 67000)} +2025-03-24 17:18:46,277 - INFO - 处理记录: ts=2025-03-24 17:18:40.167000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 12 28 00 02 01 01 01 01 5A +2025-03-24 17:18:46,334 - INFO - 插入订单详情记录,UUID: 9fdcb764af94468fbee4eedd01c6f2b8, 订单ID: baf11093a0ff4a04bdb2496bb296d4cb +2025-03-24 17:18:46,335 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '9fdcb764af94468fbee4eedd01c6f2b8', 'order_info_id': 'baf11093a0ff4a04bdb2496bb296d4cb', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 167000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 167000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 40, 167000)} +2025-03-24 17:18:46,335 - INFO - 处理记录: ts=2025-03-24 17:18:40.793000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 12 2A 00 00 02 01 01 0A 00 00 01 01 0A 00 00 66 +2025-03-24 17:18:46,392 - INFO - 插入订单详情记录,UUID: 4b64262597ff4e388d8c7c74396c45aa, 订单ID: 23347406e80e4fac80ae63c9d994322a +2025-03-24 17:18:46,392 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '4b64262597ff4e388d8c7c74396c45aa', 'order_info_id': '23347406e80e4fac80ae63c9d994322a', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 793000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 793000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 40, 793000)} +2025-03-24 17:18:46,392 - INFO - 处理记录: ts=2025-03-24 17:18:40.846000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 12 2A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 88 00 00 00 00 06 +2025-03-24 17:18:46,442 - INFO - 插入订单详情记录,UUID: 7cc0e105153a43dab8f2e421fa5c243f, 订单ID: fc30ba36f5684b819c2a26cd0fb378ae +2025-03-24 17:18:46,442 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7cc0e105153a43dab8f2e421fa5c243f', 'order_info_id': 'fc30ba36f5684b819c2a26cd0fb378ae', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 846000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 40, 846000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 40, 846000)} +2025-03-24 17:18:46,443 - INFO - 处理记录: ts=2025-03-24 17:18:41.581000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 12 31 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 A5 +2025-03-24 17:18:46,443 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:18:46,500 - INFO - 插入订单详情记录,UUID: bfb9217de5d94668a228f5c292e2439a, 订单ID: ca891f503f8742fe9e38ac79cb60cc74 +2025-03-24 17:18:46,500 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'bfb9217de5d94668a228f5c292e2439a', 'order_info_id': 'ca891f503f8742fe9e38ac79cb60cc74', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 41, 581000), 'elec_price': 4.2266086869732694e-07, 'sevice_price': 0.0, 'detail_power': 6056865.42, 'detail_elec_money': 2.56, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2019, 3, 14, 11, 34, 7), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 41, 581000)} +2025-03-24 17:18:46,502 - INFO - 处理记录: ts=2025-03-24 17:18:42.479000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 12 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 59 +2025-03-24 17:18:46,550 - INFO - 插入订单详情记录,UUID: 66e8dba51f384d418e62238aed3b10d2, 订单ID: 9a484e04dfef4b618908c3929fa9b8b6 +2025-03-24 17:18:46,550 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '66e8dba51f384d418e62238aed3b10d2', 'order_info_id': '9a484e04dfef4b618908c3929fa9b8b6', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 42, 479000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 42, 479000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 42, 479000)} +2025-03-24 17:18:46,550 - INFO - 处理记录: ts=2025-03-24 17:18:43.912000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 12 33 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4D +2025-03-24 17:18:46,610 - INFO - 插入订单详情记录,UUID: 7cd1ae3de4b14689bad19812901e0476, 订单ID: 5530ad431cc445d0bb8f3b9d641a24ae +2025-03-24 17:18:46,610 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '7cd1ae3de4b14689bad19812901e0476', 'order_info_id': '5530ad431cc445d0bb8f3b9d641a24ae', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 912000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 912000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 43, 912000)} +2025-03-24 17:18:46,610 - INFO - 处理记录: ts=2025-03-24 17:18:43.915000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 12 2C 00 12 +2025-03-24 17:18:46,676 - INFO - 插入订单详情记录,UUID: 9bb5c65d3f474ecc9f73f3bb2a4d25c1, 订单ID: ec0f434218d24a17b2065f064c456bb8 +2025-03-24 17:18:46,676 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '9bb5c65d3f474ecc9f73f3bb2a4d25c1', 'order_info_id': 'ec0f434218d24a17b2065f064c456bb8', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 915000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 915000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 43, 915000)} +2025-03-24 17:18:46,676 - INFO - 处理记录: ts=2025-03-24 17:18:43.961000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 12 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 C5 +2025-03-24 17:18:46,743 - INFO - 插入订单详情记录,UUID: 8d3da65aa22e48ad8dc934e1f09fd1a5, 订单ID: 2a4df758b5724a1cbe287539141e867f +2025-03-24 17:18:46,743 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '8d3da65aa22e48ad8dc934e1f09fd1a5', 'order_info_id': '2a4df758b5724a1cbe287539141e867f', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 961000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 43, 961000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 43, 961000)} +2025-03-24 17:18:46,784 - INFO - 处理记录: ts=2025-03-24 17:18:44.616000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 12 0D 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 D0 +2025-03-24 17:18:46,847 - INFO - 插入订单详情记录,UUID: f686b584bb894316aa6d65a3cb7664fc, 订单ID: f45adbf3f08544b2971e4537f1bbcb16 +2025-03-24 17:18:46,847 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': 'f686b584bb894316aa6d65a3cb7664fc', 'order_info_id': 'f45adbf3f08544b2971e4537f1bbcb16', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 44, 616000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 44, 616000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 44, 616000)} +2025-03-24 17:18:46,847 - INFO - 处理记录: ts=2025-03-24 17:18:44.696000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 12 2C 01 9F 09 00 00 21 +2025-03-24 17:18:46,918 - INFO - 插入订单详情记录,UUID: 62f5b3e6c599496daeef9fa08e4ac8b8, 订单ID: a67b0a73b36f4adbb147fd4e19d25b8e +2025-03-24 17:18:46,918 - INFO - 插入到 charge_order_detail 表的数据: {'uuid': '62f5b3e6c599496daeef9fa08e4ac8b8', 'order_info_id': 'a67b0a73b36f4adbb147fd4e19d25b8e', 'detail_end_time': datetime.datetime(2025, 3, 24, 17, 18, 44, 696000), 'elec_price': 0.0, 'sevice_price': 0.0, 'detail_power': 0.0, 'detail_elec_money': 0.0, 'detail_sevice_money': 0.0, 'detail_start_time': datetime.datetime(2025, 3, 24, 17, 18, 44, 696000), 'created_at': datetime.datetime(2025, 3, 24, 17, 18, 44, 696000)} +2025-03-24 17:18:46,956 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:18:47,469 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_info.log b/charging_pile_proxy/hejin_forward/charge_order_info.log new file mode 100644 index 0000000..cc2f4f8 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_info.log @@ -0,0 +1,153 @@ +2025-03-24 10:17:22,353 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:17:23,895 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:17:23,895 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:17:23,895 - INFO - 数据库连接已关闭 +2025-03-24 17:21:02,698 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:21:04,251 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 17:21:04,251 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 17:21:04,253 - INFO - 数据库连接已关闭 +2025-03-24 17:22:52,744 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:23:01,913 - INFO - 成功连接到TDengine +2025-03-24 17:23:01,952 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:23:01,952 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:23:02,106 - INFO - 成功连接到PostgreSQL +2025-03-24 17:23:02,152 - INFO - 初始化last_processed_ts: 2025-03-24 17:22:58.908000 +2025-03-24 17:23:02,188 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:23:12,235 - INFO - 处理记录: ts=2025-03-24 17:23:00.913000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 17 01 00 02 01 01 01 01 76 +2025-03-24 17:23:12,390 - INFO - 插入订单信息,UUID: 0d8833333598448c9e270826aa3920c6, 充电枪: 03174466031510401 +2025-03-24 17:23:12,390 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '0d8833333598448c9e270826aa3920c6', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 0, 913000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:12,390 - INFO - 处理记录: ts=2025-03-24 17:23:02.296000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 17 09 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 98 +2025-03-24 17:23:12,390 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:23:12,408 - ERROR - 处理时间戳为 2025-03-24 17:23:02.296000 的记录时出错: A string literal cannot contain NUL (0x00) characters. +2025-03-24 17:23:12,408 - INFO - 处理记录: ts=2025-03-24 17:23:03.223000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 16 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 76 +2025-03-24 17:23:12,662 - INFO - 插入订单信息,UUID: 5e57b980d0f04478a233f1170d419299, 充电枪: 03172887031510181 +2025-03-24 17:23:12,662 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '5e57b980d0f04478a233f1170d419299', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 223000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:12,662 - INFO - 处理记录: ts=2025-03-24 17:23:03.331000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 17 03 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 9B +2025-03-24 17:23:12,890 - INFO - 插入订单信息,UUID: 4148f7f5b82946c5a9f099710fc42361, 充电枪: 03174466031510401 +2025-03-24 17:23:12,890 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '4148f7f5b82946c5a9f099710fc42361', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 331000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:12,890 - INFO - 处理记录: ts=2025-03-24 17:23:03.440000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 17 03 00 6C +2025-03-24 17:23:13,015 - INFO - 插入订单信息,UUID: f01e24d17422497db6284d0a62494326, 充电枪: 03176763113606571 +2025-03-24 17:23:13,015 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'f01e24d17422497db6284d0a62494326', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 440000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,015 - INFO - 处理记录: ts=2025-03-24 17:23:03.523000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 17 03 00 A3 03 00 00 E9 +2025-03-24 17:23:13,064 - INFO - 插入订单信息,UUID: 8395ad1ed81645baaacccdbf5189d29f, 充电枪: 03174466031510401 +2025-03-24 17:23:13,064 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '8395ad1ed81645baaacccdbf5189d29f', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 3, 523000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,064 - INFO - 处理记录: ts=2025-03-24 17:23:07.031000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 16 23 01 02 01 01 01 01 81 +2025-03-24 17:23:13,107 - INFO - 插入订单信息,UUID: b76e21fcb6b54c2f99d1e80cf80e19b7, 充电枪: 03172887031510181 +2025-03-24 17:23:13,107 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'b76e21fcb6b54c2f99d1e80cf80e19b7', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 31000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,107 - INFO - 处理记录: ts=2025-03-24 17:23:07.957000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 16 24 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 FD +2025-03-24 17:23:13,158 - INFO - 插入订单信息,UUID: 323f3b5d755c4984a6c240e73c6c7231, 充电枪: 03172887031510181 +2025-03-24 17:23:13,158 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '323f3b5d755c4984a6c240e73c6c7231', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 7, 957000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,158 - INFO - 处理记录: ts=2025-03-24 17:23:08.039000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 17 08 01 9F 09 00 00 00 +2025-03-24 17:23:13,394 - INFO - 插入订单信息,UUID: 8069366cfb6f486485e0775a5d4521e1, 充电枪: 03172887031510181 +2025-03-24 17:23:13,395 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '8069366cfb6f486485e0775a5d4521e1', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 39000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,395 - INFO - 处理记录: ts=2025-03-24 17:23:08.087000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 17 0F 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 9E +2025-03-24 17:23:13,395 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:23:13,413 - ERROR - 处理时间戳为 2025-03-24 17:23:08.087000 的记录时出错: A string literal cannot contain NUL (0x00) characters. +2025-03-24 17:23:13,413 - INFO - 处理记录: ts=2025-03-24 17:23:08.240000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 16 25 00 00 02 01 01 00 00 00 01 01 00 00 00 9C +2025-03-24 17:23:13,548 - INFO - 插入订单信息,UUID: c1cf05dff65a4fcba81b001dbdccfa13, 充电枪: 03172887031510181 +2025-03-24 17:23:13,548 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'c1cf05dff65a4fcba81b001dbdccfa13', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 240000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,548 - INFO - 处理记录: ts=2025-03-24 17:23:08.522000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 17 10 01 02 01 01 01 01 70 +2025-03-24 17:23:13,722 - INFO - 插入订单信息,UUID: 31f0242079964ede82f471b707298bd1, 充电枪: 03176763113606571 +2025-03-24 17:23:13,722 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '31f0242079964ede82f471b707298bd1', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 8, 522000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,723 - INFO - 处理记录: ts=2025-03-24 17:23:09.190000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 17 09 00 54 +2025-03-24 17:23:13,948 - INFO - 插入订单信息,UUID: 384168f8ec2f48bcba7c0383dc018da0, 充电枪: 03173446113606131 +2025-03-24 17:23:13,948 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '384168f8ec2f48bcba7c0383dc018da0', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 190000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:13,948 - INFO - 处理记录: ts=2025-03-24 17:23:09.317000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 17 0A 00 02 01 01 01 01 59 +2025-03-24 17:23:14,147 - INFO - 插入订单信息,UUID: 706ceb2ec56545f78bb06b225af9b588, 充电枪: 03173446113606131 +2025-03-24 17:23:14,147 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '706ceb2ec56545f78bb06b225af9b588', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 317000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:14,147 - INFO - 处理记录: ts=2025-03-24 17:23:09.332000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 17 09 00 00 02 01 01 00 00 00 01 01 00 00 00 64 +2025-03-24 17:23:14,272 - INFO - 插入订单信息,UUID: 96e2bc82feae46aa906f055711b8ce22, 充电枪: 03174466031510401 +2025-03-24 17:23:14,273 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '96e2bc82feae46aa906f055711b8ce22', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 332000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:14,273 - INFO - 处理记录: ts=2025-03-24 17:23:09.998000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 17 0A 00 A6 +2025-03-24 17:23:14,331 - INFO - 插入订单信息,UUID: 7a8867ac4dfd40679406197e2b67886b, 充电枪: 03172887031510181 +2025-03-24 17:23:14,332 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '7a8867ac4dfd40679406197e2b67886b', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 9, 998000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:14,332 - INFO - 处理记录: ts=2025-03-24 17:23:10.544000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 17 13 01 02 01 01 01 01 27 +2025-03-24 17:23:14,639 - INFO - 插入订单信息,UUID: 13cfc2d5fc304a5cac6032c06c3864b0, 充电枪: 03176656113606371 +2025-03-24 17:23:14,639 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '13cfc2d5fc304a5cac6032c06c3864b0', 'connector_id': '03176656113606371', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 544000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:14,683 - INFO - 处理记录: ts=2025-03-24 17:23:10.942000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 17 0B 01 02 01 01 01 01 7D +2025-03-24 17:23:14,918 - INFO - 插入订单信息,UUID: 504d1447284c4c51a1eff63ae765fcc3, 充电枪: 03174466031510401 +2025-03-24 17:23:14,918 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '504d1447284c4c51a1eff63ae765fcc3', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 942000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:14,918 - INFO - 处理记录: ts=2025-03-24 17:23:10.963000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 17 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 19 +2025-03-24 17:23:15,298 - INFO - 插入订单信息,UUID: cc10f6d87ade4283ae3cd33cbb771bdf, 充电枪: 03174466031510401 +2025-03-24 17:23:15,298 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'cc10f6d87ade4283ae3cd33cbb771bdf', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 10, 963000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:15,298 - INFO - 处理记录: ts=2025-03-24 17:23:12.013000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 17 14 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3B +2025-03-24 17:23:15,555 - INFO - 插入订单信息,UUID: 2efbd5bb388847e6bff98761e6ffe32b, 充电枪: 03176656113606371 +2025-03-24 17:23:15,555 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '2efbd5bb388847e6bff98761e6ffe32b', 'connector_id': '03176656113606371', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 13000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:15,555 - INFO - 处理记录: ts=2025-03-24 17:23:12.055000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 17 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9B +2025-03-24 17:23:15,840 - INFO - 插入订单信息,UUID: 7ea61544d7264f82af70bda2c8706c7a, 充电枪: 03176656113606371 +2025-03-24 17:23:15,840 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '7ea61544d7264f82af70bda2c8706c7a', 'connector_id': '03176656113606371', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 12, 55000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:15,881 - INFO - 处理记录: ts=2025-03-24 17:23:13.476000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 17 0D 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 95 +2025-03-24 17:23:16,022 - INFO - 插入订单信息,UUID: 8dee2e5f3f6741a1ac27f397f80e3e90, 充电枪: 03174466031510401 +2025-03-24 17:23:16,023 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '8dee2e5f3f6741a1ac27f397f80e3e90', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 476000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:16,023 - INFO - 处理记录: ts=2025-03-24 17:23:13.559000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 17 0D 00 A3 03 00 00 E7 +2025-03-24 17:23:16,089 - INFO - 插入订单信息,UUID: 65cea1d8fe364407b817353a79cb14bd, 充电枪: 03174466031510401 +2025-03-24 17:23:16,089 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '65cea1d8fe364407b817353a79cb14bd', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 559000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:16,089 - INFO - 处理记录: ts=2025-03-24 17:23:13.854000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 17 15 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 84 +2025-03-24 17:23:16,089 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:23:16,107 - ERROR - 处理时间戳为 2025-03-24 17:23:13.854000 的记录时出错: A string literal cannot contain NUL (0x00) characters. +2025-03-24 17:23:16,107 - INFO - 处理记录: ts=2025-03-24 17:23:13.907000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 17 0E 00 35 +2025-03-24 17:23:16,147 - INFO - 插入订单信息,UUID: f0558f9b2319439ba2afb7c550c2fb18, 充电枪: 03176656113606371 +2025-03-24 17:23:16,147 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'f0558f9b2319439ba2afb7c550c2fb18', 'connector_id': '03176656113606371', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 13, 907000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:16,191 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:23:26,230 - INFO - 处理记录: ts=2025-03-24 17:23:15.380000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 17 0F 00 76 +2025-03-24 17:23:26,552 - INFO - 插入订单信息,UUID: cc16453ae5d041f3b639e9b7121bf4ae, 充电枪: 03174466031510401 +2025-03-24 17:23:26,552 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'cc16453ae5d041f3b639e9b7121bf4ae', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 15, 380000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:26,552 - INFO - 处理记录: ts=2025-03-24 17:23:17.070000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 16 2D 00 02 01 01 01 01 8E +2025-03-24 17:23:26,772 - INFO - 插入订单信息,UUID: 1eb0d8555a21447a8778410863e82c0f, 充电枪: 03172887031510181 +2025-03-24 17:23:26,772 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '1eb0d8555a21447a8778410863e82c0f', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 17, 70000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:26,772 - INFO - 处理记录: ts=2025-03-24 17:23:18.078000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 16 2E 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 F7 +2025-03-24 17:23:26,996 - INFO - 插入订单信息,UUID: c240b6a98a1a422982cbd9b8f7a0da2b, 充电枪: 03172887031510181 +2025-03-24 17:23:26,996 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'c240b6a98a1a422982cbd9b8f7a0da2b', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 78000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:26,996 - INFO - 处理记录: ts=2025-03-24 17:23:18.158000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 17 12 01 9F 09 00 00 1A +2025-03-24 17:23:27,194 - INFO - 插入订单信息,UUID: 560a13aa84b743c5bd28aa43b301e6c7, 充电枪: 03172887031510181 +2025-03-24 17:23:27,194 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '560a13aa84b743c5bd28aa43b301e6c7', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 158000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:27,194 - INFO - 处理记录: ts=2025-03-24 17:23:18.439000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 17 12 00 7D +2025-03-24 17:23:27,440 - INFO - 插入订单信息,UUID: e05cec983fd54051b900c1f8317951b7, 充电枪: 03176763113606571 +2025-03-24 17:23:27,440 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'e05cec983fd54051b900c1f8317951b7', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 18, 439000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:27,440 - INFO - 处理记录: ts=2025-03-24 17:23:19.661000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 17 1B 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 8A +2025-03-24 17:23:27,440 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:23:27,463 - ERROR - 处理时间戳为 2025-03-24 17:23:19.661000 的记录时出错: A string literal cannot contain NUL (0x00) characters. +2025-03-24 17:23:27,463 - INFO - 处理记录: ts=2025-03-24 17:23:19.723000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 17 15 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:23:27,724 - INFO - 插入订单信息,UUID: 52db46f26a224076bf4ca07fd4904f3e, 充电枪: 03173446113606131 +2025-03-24 17:23:27,724 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '52db46f26a224076bf4ca07fd4904f3e', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 723000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:27,724 - INFO - 处理记录: ts=2025-03-24 17:23:19.769000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 17 15 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:23:27,996 - INFO - 插入订单信息,UUID: 960af221f5b14c8f973c0bb11741d11a, 充电枪: 03173446113606131 +2025-03-24 17:23:27,996 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '960af221f5b14c8f973c0bb11741d11a', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 19, 769000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:27,996 - INFO - 处理记录: ts=2025-03-24 17:23:20.965000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 17 15 00 02 01 01 01 01 62 +2025-03-24 17:23:28,196 - INFO - 插入订单信息,UUID: a326e1aaae794a68b91dad4e2689d164, 充电枪: 03174466031510401 +2025-03-24 17:23:28,196 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'a326e1aaae794a68b91dad4e2689d164', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 20, 965000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:28,196 - INFO - 处理记录: ts=2025-03-24 17:23:22.621000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 17 1E 00 00 02 01 01 0A 00 00 01 01 0A 00 00 65 +2025-03-24 17:23:28,469 - INFO - 插入订单信息,UUID: 7f672d6c3c8c4a9e8508ce8b15554ba3, 充电枪: 03176763113606571 +2025-03-24 17:23:28,469 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '7f672d6c3c8c4a9e8508ce8b15554ba3', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 621000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:28,469 - INFO - 处理记录: ts=2025-03-24 17:23:22.675000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 17 1E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 ED +2025-03-24 17:23:28,673 - INFO - 插入订单信息,UUID: 12cae99610b144de9909c014e885130b, 充电枪: 03176763113606571 +2025-03-24 17:23:28,673 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '12cae99610b144de9909c014e885130b', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 22, 675000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:28,673 - INFO - 处理记录: ts=2025-03-24 17:23:23.293000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 16 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 62 +2025-03-24 17:23:28,939 - INFO - 插入订单信息,UUID: fcb9fb0055364c4ba96d7bd93f14f151, 充电枪: 03172887031510181 +2025-03-24 17:23:28,940 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'fcb9fb0055364c4ba96d7bd93f14f151', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 293000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:28,940 - INFO - 处理记录: ts=2025-03-24 17:23:23.603000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 17 17 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:23:29,142 - INFO - 插入订单信息,UUID: fbd97dabbf344387a76696a69d5ed080, 充电枪: 03174466031510401 +2025-03-24 17:23:29,142 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'fbd97dabbf344387a76696a69d5ed080', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 603000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,142 - INFO - 处理记录: ts=2025-03-24 17:23:23.686000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 17 17 00 A3 03 00 00 FD +2025-03-24 17:23:29,188 - INFO - 插入订单信息,UUID: 3036dfb56a954abb87caa902b81ca8a6, 充电枪: 03174466031510401 +2025-03-24 17:23:29,188 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '3036dfb56a954abb87caa902b81ca8a6', 'connector_id': '03174466031510401', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 686000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,188 - INFO - 处理记录: ts=2025-03-24 17:23:23.690000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 17 1F 01 02 01 01 01 01 7F +2025-03-24 17:23:29,229 - INFO - 插入订单信息,UUID: 7051bc79f950490bb03ec7bd03edc6fa, 充电枪: 03176763113606571 +2025-03-24 17:23:29,230 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '7051bc79f950490bb03ec7bd03edc6fa', 'connector_id': '03176763113606571', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 23, 690000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,230 - INFO - 处理记录: ts=2025-03-24 17:23:24.190000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 17 18 00 45 +2025-03-24 17:23:29,271 - INFO - 插入订单信息,UUID: d74cf67725514e589abeb853083ab74f, 充电枪: 03173446113606131 +2025-03-24 17:23:29,273 - INFO - 插入到 charge_order_info 表的数据: {'uuid': 'd74cf67725514e589abeb853083ab74f', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 190000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,274 - INFO - 处理记录: ts=2025-03-24 17:23:24.672000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 17 1A 01 02 01 01 01 01 48 +2025-03-24 17:23:29,333 - INFO - 插入订单信息,UUID: 65a77cfc2aa0412d8e40fc7d84ce82e2, 充电枪: 03173446113606131 +2025-03-24 17:23:29,333 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '65a77cfc2aa0412d8e40fc7d84ce82e2', 'connector_id': '03173446113606131', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 24, 672000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,375 - INFO - 处理记录: ts=2025-03-24 17:23:25.469000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 17 21 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B0 +2025-03-24 17:23:29,375 - ERROR - 解析BCD时间出错: day is out of range for month +2025-03-24 17:23:29,393 - ERROR - 处理时间戳为 2025-03-24 17:23:25.469000 的记录时出错: A string literal cannot contain NUL (0x00) characters. +2025-03-24 17:23:29,393 - INFO - 处理记录: ts=2025-03-24 17:23:25.892000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 17 22 01 02 01 01 01 01 16 +2025-03-24 17:23:29,446 - INFO - 插入订单信息,UUID: 8914e7f9b1114bf58dcea00bd03d7660, 充电枪: 03176656113606371 +2025-03-24 17:23:29,446 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '8914e7f9b1114bf58dcea00bd03d7660', 'connector_id': '03176656113606371', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 25, 892000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,446 - INFO - 处理记录: ts=2025-03-24 17:23:27.097000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 16 37 01 02 01 01 01 01 95 +2025-03-24 17:23:29,532 - INFO - 插入订单信息,UUID: 4133b9c594dd4d2aadf06ab78a3c5412, 充电枪: 03172887031510181 +2025-03-24 17:23:29,533 - INFO - 插入到 charge_order_info 表的数据: {'uuid': '4133b9c594dd4d2aadf06ab78a3c5412', 'connector_id': '03172887031510181', 'start_time': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'end_time': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'total_power': 0.0, 'elec_money': 0.0, 'sevice_money': 0.0, 'total_money': 0.0, 'stop_reason': 0, 'sum_period': 1, 'ident_code': None, 'created_at': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'updated_at': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'charge_status': 1, 'fail_reason': 0, 'operator_id': 'K1TUBMOLH', 'vin': None, 'compute_start_time': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'compute_end_time': datetime.datetime(2025, 3, 24, 17, 23, 27, 97000), 'compute_total_power': 0.0, 'compute_total_elec_money': 0.0, 'compute_total_sevice_money': 0.0, 'compute_total_money': 0.0, 'compute_discount_total_money': 0.0, 'compute_discount_total_elec_money': 0.0, 'compute_discount_total_sevice_money': 0.0, 'org_code': 'MACPWMWG69', 'merchant_id': '1863384914068400094', 'start_soc': 0.0, 'end_soc': 0.0, 'order_amount': 0.0} +2025-03-24 17:23:29,577 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:23:30,013 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_info.py b/charging_pile_proxy/hejin_forward/charge_order_info.py new file mode 100644 index 0000000..fc3b5a8 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_info.py @@ -0,0 +1,398 @@ +import taosrest +import psycopg2 +from datetime import datetime +import binascii +import logging +import uuid +import time + +# 配置日志 +logging.basicConfig( + filename='charge_order_info.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class ChargeOrderInfoMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', # 修改为 readonly_user + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_uuids = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_bcd_time(self, bcd_bytes): + """解析BCD码时间(假设格式为 YYMMDDHHMMSS)""" + try: + year = 2000 + (bcd_bytes[0] >> 4) * 10 + (bcd_bytes[0] & 0x0F) + month = (bcd_bytes[1] >> 4) * 10 + (bcd_bytes[1] & 0x0F) + day = (bcd_bytes[2] >> 4) * 10 + (bcd_bytes[2] & 0x0F) + hour = (bcd_bytes[3] >> 4) * 10 + (bcd_bytes[3] & 0x0F) + minute = (bcd_bytes[4] >> 4) * 10 + (bcd_bytes[4] & 0x0F) + second = (bcd_bytes[5] >> 4) * 10 + (bcd_bytes[5] & 0x0F) + return datetime(year, month, day, hour, minute, second) + except Exception as e: + logging.error(f"解析BCD时间出错: {str(e)}") + return None + + def parse_hex_data(self, hex_data, timestamp, pile_id): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 提取枪号(假设在协议中枪号位于第11字节,0x01表示A枪,0x02表示B枪) + connector_suffix = '1' if hex_bytes[11] == 0x01 else '2' + + # 构造connector_id + connector_id = f"{pile_id}{connector_suffix}" + + # 初始化数据字典 + data = { + 'command': command, + 'connector_id': connector_id, + 'start_time': timestamp, + 'end_time': timestamp, + 'total_power': 0.0, + 'elec_money': 0.0, + 'sevice_money': 0.0, + 'total_money': 0.0, + 'stop_reason': 0, + 'sum_period': 1, + 'ident_code': None, + 'charge_status': 1, + 'fail_reason': 0, + 'operator_id': 'K1TUBMOLH', + 'vin': None, + 'compute_start_time': timestamp, + 'compute_end_time': timestamp, + 'compute_total_power': 0.0, + 'compute_total_elec_money': 0.0, + 'compute_total_sevice_money': 0.0, + 'compute_total_money': 0.0, + 'compute_discount_total_money': 0.0, + 'compute_discount_total_elec_money': 0.0, + 'compute_discount_total_sevice_money': 0.0, + 'org_code': 'MACPWMWG69', + 'merchant_id': '1863384914068400094', + 'start_soc': 0.0, + 'end_soc': 0.0, + 'order_amount': 0.0 + } + + # 25H - 充电信息 + if command == '25': + data.update({ + 'charge_status': 2 + }) + + # 23H - 最新充电订单 + elif command == '23': + # 起始充电电量(字节119-122,分辨率0.01kWh) + start_power = int.from_bytes(hex_bytes[119:123], byteorder='little') * 0.01 + # 结束充电电量(字节123-126,分辨率0.01kWh) + end_power = int.from_bytes(hex_bytes[123:127], byteorder='little') * 0.01 + # 计算总电量 + total_power = end_power - start_power + + # 充电金额(电费+服务费+停车费) + electricity_fee = int.from_bytes(hex_bytes[147:151], byteorder='little') * 0.01 + service_fee = int.from_bytes(hex_bytes[151:155], byteorder='little') * 0.01 + parking_fee = int.from_bytes(hex_bytes[155:159], byteorder='little') * 0.01 + total_money = electricity_fee + service_fee + parking_fee + + # 充电开始时间和结束时间(字节127-132和133-138,格式为BCD码) + start_time = self.parse_bcd_time(hex_bytes[127:133]) + end_time = self.parse_bcd_time(hex_bytes[133:139]) + + # 假设SOC(协议中可能有相关字段,需确认) + start_soc = float(int.from_bytes(hex_bytes[139:141], byteorder='little')) if len( + hex_bytes) > 140 else 0.0 + end_soc = float(int.from_bytes(hex_bytes[141:143], byteorder='little')) if len(hex_bytes) > 142 else 0.0 + + # 假设VIN(协议中可能有相关字段,需确认) + vin = hex_bytes[143:160].decode('ascii', errors='ignore') if len(hex_bytes) > 159 else None + + data.update({ + 'start_time': start_time if start_time else timestamp, + 'end_time': end_time if end_time else timestamp, + 'total_power': total_power, + 'elec_money': electricity_fee, + 'sevice_money': service_fee, + 'total_money': total_money, + 'charge_status': 4, + 'compute_start_time': start_time if start_time else timestamp, + 'compute_end_time': end_time if end_time else timestamp, + 'compute_total_power': total_power, + 'compute_total_elec_money': electricity_fee, + 'compute_total_sevice_money': service_fee, + 'compute_total_money': total_money, + 'start_soc': start_soc, + 'end_soc': end_soc, + 'vin': vin, + 'order_amount': total_money + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的charge_order_info表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID + hex_data = row[12] # 十六进制数据 + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data, timestamp, pile_id) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 生成唯一uuid + record_uuid = str(uuid.uuid4()).replace('-', '') + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM charge_order_info WHERE uuid = %s + """ + self.pg_cursor.execute(check_query, (record_uuid,)) + exists = self.pg_cursor.fetchone() is not None + + # 如果记录已存在,跳过 + if exists or record_uuid in self.processed_uuids: + logging.info(f"订单信息记录已存在,UUID: {record_uuid},跳过") + continue + + # 准备插入PostgreSQL的数据 + insert_query = """ + INSERT INTO public.charge_order_info ( + uuid, connector_id, start_time, end_time, total_power, + elec_money, sevice_money, total_money, stop_reason, sum_period, + ident_code, created_at, updated_at, charge_status, fail_reason, + operator_id, vin, compute_start_time, compute_end_time, + compute_total_power, compute_total_elec_money, compute_total_sevice_money, + compute_total_money, compute_discount_total_money, + compute_discount_total_elec_money, compute_discount_total_sevice_money, + org_code, merchant_id, start_soc, end_soc, order_amount + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + values = ( + record_uuid, + parsed_data['connector_id'], + parsed_data['start_time'], + parsed_data['end_time'], + parsed_data['total_power'], + parsed_data['elec_money'], + parsed_data['sevice_money'], + parsed_data['total_money'], + parsed_data['stop_reason'], + parsed_data['sum_period'], + parsed_data['ident_code'], + timestamp, + timestamp, + parsed_data['charge_status'], + parsed_data['fail_reason'], + parsed_data['operator_id'], + parsed_data['vin'], + parsed_data['compute_start_time'], + parsed_data['compute_end_time'], + parsed_data['compute_total_power'], + parsed_data['compute_total_elec_money'], + parsed_data['compute_total_sevice_money'], + parsed_data['compute_total_money'], + parsed_data['compute_discount_total_money'], + parsed_data['compute_discount_total_elec_money'], + parsed_data['compute_discount_total_sevice_money'], + parsed_data['org_code'], + parsed_data['merchant_id'], + parsed_data['start_soc'], + parsed_data['end_soc'], + parsed_data['order_amount'] + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_uuids.add(record_uuid) + logging.info(f"插入订单信息,UUID: {record_uuid}, 充电枪: {parsed_data['connector_id']}") + + # 记录插入的完整数据 + log_values = { + 'uuid': record_uuid, + 'connector_id': parsed_data['connector_id'], + 'start_time': parsed_data['start_time'], + 'end_time': parsed_data['end_time'], + 'total_power': parsed_data['total_power'], + 'elec_money': parsed_data['elec_money'], + 'sevice_money': parsed_data['sevice_money'], + 'total_money': parsed_data['total_money'], + 'stop_reason': parsed_data['stop_reason'], + 'sum_period': parsed_data['sum_period'], + 'ident_code': parsed_data['ident_code'], + 'created_at': timestamp, + 'updated_at': timestamp, + 'charge_status': parsed_data['charge_status'], + 'fail_reason': parsed_data['fail_reason'], + 'operator_id': parsed_data['operator_id'], + 'vin': parsed_data['vin'], + 'compute_start_time': parsed_data['compute_start_time'], + 'compute_end_time': parsed_data['compute_end_time'], + 'compute_total_power': parsed_data['compute_total_power'], + 'compute_total_elec_money': parsed_data['compute_total_elec_money'], + 'compute_total_sevice_money': parsed_data['compute_total_sevice_money'], + 'compute_total_money': parsed_data['compute_total_money'], + 'compute_discount_total_money': parsed_data['compute_discount_total_money'], + 'compute_discount_total_elec_money': parsed_data['compute_discount_total_elec_money'], + 'compute_discount_total_sevice_money': parsed_data['compute_discount_total_sevice_money'], + 'org_code': parsed_data['org_code'], + 'merchant_id': parsed_data['merchant_id'], + 'start_soc': parsed_data['start_soc'], + 'end_soc': parsed_data['end_soc'], + 'order_amount': parsed_data['order_amount'] + } + logging.info(f"插入到 charge_order_info 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = ChargeOrderInfoMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/charge_order_info_migration.log b/charging_pile_proxy/hejin_forward/charge_order_info_migration.log new file mode 100644 index 0000000..7f43e20 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_info_migration.log @@ -0,0 +1,4 @@ +2025-03-24 10:41:06,685 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:41:08,226 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:41:08,226 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:41:08,226 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/charge_order_jiuxing.log b/charging_pile_proxy/hejin_forward/charge_order_jiuxing.log new file mode 100644 index 0000000..b298502 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/charge_order_jiuxing.log @@ -0,0 +1,30 @@ +2025-03-24 08:58:02,489 - INFO - Connected to MQTT broker +2025-03-24 08:58:02,516 - INFO - Subscribed to hejin/charging/log +2025-03-24 08:58:03,546 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-24 08:57:59.935', '4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 08 3A 09 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 AC', '0317676311360657', 'u'] +2025-03-24 08:58:03,546 - INFO - 未处理的命令码: 23 +2025-03-24 08:58:04,212 - INFO - Received message: ['192.168.8.200', '139.9.209.227', '2025-03-24 08:58:00.607', '4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 08 3A 02 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 AE', '0317446603151040', 'u'] +2025-03-24 08:58:04,212 - INFO - 未处理的命令码: 33 +2025-03-24 08:58:04,294 - INFO - Received message: ['139.9.209.227', '192.168.8.200', '2025-03-24 08:58:00.691', '4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 08 3A 02 00 A3 03 00 00 DC', '0317446603151040', 'd'] +2025-03-24 08:58:04,295 - INFO - 未处理的命令码: 34 +2025-03-24 08:58:05,036 - INFO - Received message: ['139.9.209.227', '192.168.8.104', '2025-03-24 08:58:01.431', '4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 08 3A 03 00 58', '0317676311360657', 'd'] +2025-03-24 08:58:05,036 - ERROR - Error processing message: 'NoneType' object has no attribute 'execute' +2025-03-24 08:58:05,870 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-24 08:58:02.258', '4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 08 3A 0B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 44', '0317676311360657', 'u'] +2025-03-24 08:58:05,870 - INFO - 未处理的命令码: 09 +2025-03-24 08:58:05,918 - INFO - Received message: ['192.168.8.104', '139.9.209.227', '2025-03-24 08:58:02.301', '4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 08 3A 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 77 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 33', '0317676311360657', 'u'] +2025-03-24 08:58:05,918 - INFO - 未处理的命令码: 0A +2025-03-24 08:58:06,551 - ERROR - TDengine connection error: +2025-03-24 09:00:06,370 - INFO - Connected to MQTT broker +2025-03-24 09:00:06,391 - INFO - Subscribed to hejin/charging/log +2025-03-24 09:00:08,192 - INFO - Received message: ['192.168.8.100', '139.9.209.227', '2025-03-24 09:00:04.583', '4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 08 3B 24 01 02 01 01 01 01 B2', '0317288703151018', 'u'] +2025-03-24 09:00:08,192 - INFO - 未处理的命令码: 0C +2025-03-24 09:00:08,331 - INFO - Received message: ['192.168.8.200', '139.9.209.227', '2025-03-24 09:00:04.725', '4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 09 00 06 00 00 02 01 01 00 00 00 01 01 00 00 00 64', '0317446603151040', 'u'] +2025-03-24 09:00:08,331 - INFO - 未处理的命令码: 09 +2025-03-24 09:00:08,599 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 09:00:04.991', '4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 09 00 0F 00 00 02 01 01 0A 00 00 01 01 0A 00 00 2F', '0317665611360637', 'u'] +2025-03-24 09:00:08,599 - INFO - 未处理的命令码: 09 +2025-03-24 09:00:08,652 - INFO - Received message: ['192.168.8.103', '139.9.209.227', '2025-03-24 09:00:05.044', '4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 09 00 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 76 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 7D 00 00 00 00 86', '0317665611360637', 'u'] +2025-03-24 09:00:08,652 - INFO - 未处理的命令码: 0A +2025-03-24 09:00:08,801 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-24 09:00:05.194', '4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 09 00 08 00 00 02 01 01 0A 00 00 01 01 0A 00 00 4E', '0317344611360613', 'u'] +2025-03-24 09:00:08,801 - INFO - 未处理的命令码: 09 +2025-03-24 09:00:08,856 - INFO - Received message: ['192.168.8.102', '139.9.209.227', '2025-03-24 09:00:05.247', '4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 09 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 79 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 78 00 00 00 00 26', '0317344611360613', 'u'] +2025-03-24 09:00:08,856 - INFO - 未处理的命令码: 0A +2025-03-24 09:00:10,422 - ERROR - TDengine connection error: diff --git a/charging_pile_proxy/hejin_forward/charge_rate_model_last.py b/charging_pile_proxy/hejin_forward/charge_rate_model_last.py new file mode 100644 index 0000000..e69de29 diff --git a/charging_pile_proxy/hejin_forward/charge_rate_model_version.py b/charging_pile_proxy/hejin_forward/charge_rate_model_version.py new file mode 100644 index 0000000..e69de29 diff --git a/charging_pile_proxy/hejin_forward/charge_service.py b/charging_pile_proxy/hejin_forward/charge_service.py new file mode 100644 index 0000000..e69de29 diff --git a/charging_pile_proxy/hejin_forward/charge_status_record.py b/charging_pile_proxy/hejin_forward/charge_status_record.py new file mode 100644 index 0000000..e69de29 diff --git a/charging_pile_proxy/hejin_forward/charger_measurement_detail.py b/charging_pile_proxy/hejin_forward/charger_measurement_detail.py new file mode 100644 index 0000000..e69de29 diff --git a/charging_pile_proxy/hejin_forward/parsed_data.log b/charging_pile_proxy/hejin_forward/parsed_data.log new file mode 100644 index 0000000..dad533e --- /dev/null +++ b/charging_pile_proxy/hejin_forward/parsed_data.log @@ -0,0 +1,2 @@ +2025-03-21 15:36:32,557 - INFO - Connected to MQTT broker +2025-03-21 15:36:32,557 - ERROR - TDengine connection error: module 'taos' has no attribute 'connect' diff --git a/charging_pile_proxy/hejin_forward/pile.log b/charging_pile_proxy/hejin_forward/pile.log new file mode 100644 index 0000000..83e3e8f --- /dev/null +++ b/charging_pile_proxy/hejin_forward/pile.log @@ -0,0 +1,4027 @@ +2025-03-24 10:17:28,028 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:17:29,579 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:17:29,579 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:17:29,579 - INFO - 数据库连接已关闭 +2025-03-24 17:25:02,122 - INFO - 尝试连接到TDengine (第 1 次): {'host': '123.6.102.119', 'port': 6041, 'user': 'readonly_user', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 17:25:11,286 - INFO - 成功连接到TDengine +2025-03-24 17:25:11,323 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 17:25:11,324 - INFO - 尝试连接到PostgreSQL: {'host': '123.6.102.119', 'port': 5432, 'database': 'tms-design', 'user': 'postgres', 'password': '687315e66ae24eeab8bb5c0441a40d79'} +2025-03-24 17:25:11,455 - INFO - 成功连接到PostgreSQL +2025-03-24 17:25:11,496 - INFO - 初始化last_processed_ts: 2025-03-24 17:25:09.994000 +2025-03-24 17:25:11,533 - INFO - 没有新数据,休眠10秒 +2025-03-24 17:25:21,584 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:21,623 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,623 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:21,655 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,655 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:21,687 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,687 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:21,719 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,719 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:21,753 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,753 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:21,790 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,790 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:21,821 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,821 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:21,870 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,870 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:21,932 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,933 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:21,976 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:21,976 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:22,027 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,027 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:22,108 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,108 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:22,139 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,139 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:22,172 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,172 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:22,202 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,202 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:22,353 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,395 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:22,426 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,426 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:22,457 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,457 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:22,490 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,490 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:22,522 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,523 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:22,555 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,555 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:22,596 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,596 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:22,642 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,642 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:22,674 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,674 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:22,719 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,719 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:22,750 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,750 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:22,784 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,784 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:22,817 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,817 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:22,863 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,863 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:22,924 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:22,924 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:23,000 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,000 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:23,077 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,129 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:23,160 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,160 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:23,200 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,200 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:23,232 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,232 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:23,263 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,263 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:23,296 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,297 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:23,328 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,328 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:23,359 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,359 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:23,391 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,391 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:23,422 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,422 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:23,477 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,477 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:23,510 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,510 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:23,543 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,543 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:23,582 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,582 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:23,615 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,615 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:23,648 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,648 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:23,680 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,680 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:23,714 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,715 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:23,748 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,793 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:23,823 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,823 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:23,856 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,856 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:23,895 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,895 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:23,926 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,926 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:23,956 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,956 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:23,990 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:23,990 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:24,022 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,023 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:24,055 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,056 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:24,094 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,094 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:24,127 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,127 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:24,159 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,159 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:24,191 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,191 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:24,221 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,221 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:24,252 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,252 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:24,285 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,286 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:24,317 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,317 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:24,353 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,353 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:24,391 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,432 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:24,463 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,463 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:24,495 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,495 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:24,528 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,528 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:24,558 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,558 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:24,591 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,591 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:24,622 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,622 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:24,655 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,655 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:24,687 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,687 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:24,719 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,719 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:24,754 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,754 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:24,790 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,790 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:24,838 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,838 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:24,898 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,898 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:24,930 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,930 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:24,974 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:24,974 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:25,030 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,030 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:25,119 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,119 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:25,150 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,196 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:25,228 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,228 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:25,259 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,259 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:25,305 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,305 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:25,337 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,337 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:25,370 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,370 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:25,400 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,400 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:25,434 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,434 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:25,466 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,466 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:25,496 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,496 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:25,529 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,529 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:25,560 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,560 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:25,593 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,593 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:25,633 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,633 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:25,666 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,667 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:25,697 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,697 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:25,728 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,728 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:25,759 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,759 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:25,795 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,796 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:25,829 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,874 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:25,905 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,905 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:25,935 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,935 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:25,967 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:25,967 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:26,001 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,001 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:26,036 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,036 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:26,074 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,074 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:26,112 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,113 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:26,145 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,145 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:26,176 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,177 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:26,208 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,208 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:26,264 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,264 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:26,299 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,299 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:26,332 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,332 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:26,368 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,369 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:26,403 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,403 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:26,436 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,436 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:26,466 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,466 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:26,499 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,499 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:26,532 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,532 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:26,564 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,607 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:26,639 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,640 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:26,675 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,675 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:26,707 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,708 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:26,739 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,739 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:26,768 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,768 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:26,799 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,799 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:26,832 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,833 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:26,864 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,864 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:26,895 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,895 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:26,925 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,925 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:26,957 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,957 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:26,991 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:26,991 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:27,024 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,024 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:27,056 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,056 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:27,087 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,088 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:27,121 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,121 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:27,151 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,151 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:27,185 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,185 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:27,216 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,216 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:27,251 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,251 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:27,285 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,330 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:27,360 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,360 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:27,393 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,393 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:27,436 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,436 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:27,474 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,474 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:27,509 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,509 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:27,540 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,540 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:27,571 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,571 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:27,603 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,603 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:27,638 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,639 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:27,677 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,677 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:27,715 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,715 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:27,746 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,746 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:27,778 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,778 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:27,813 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,813 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:27,847 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,847 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:27,884 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,884 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:27,916 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,917 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:27,952 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,952 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:27,997 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:27,997 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:28,040 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,040 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:28,073 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,073 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:28,106 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,150 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:28,190 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,190 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:28,234 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,235 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:28,276 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,276 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:28,322 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,322 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:28,356 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,356 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:28,389 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,389 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:28,423 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,423 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:28,456 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,456 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:28,492 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,492 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:28,523 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,523 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:28,554 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,554 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:28,585 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,585 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:28,619 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,619 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:28,650 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,650 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:28,682 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,682 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:28,742 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,743 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:28,775 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,775 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:28,807 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,807 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:28,839 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,839 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:28,872 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,872 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:28,903 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,903 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:28,936 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,936 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:28,967 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:28,967 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:29,000 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,045 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:29,080 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,081 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:29,113 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,113 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:29,144 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,144 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:29,175 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,176 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:29,208 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,208 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:29,240 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,240 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:29,270 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,270 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:29,302 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,302 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:29,333 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,333 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:29,382 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,382 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:29,416 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,416 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:29,461 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,461 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:29,495 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,495 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:29,526 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,526 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:29,568 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,568 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:29,604 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,604 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:29,636 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,636 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:29,671 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,671 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:29,704 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,704 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:29,740 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,740 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:29,787 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,787 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:29,818 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,818 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:29,849 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,850 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:29,884 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,884 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:29,918 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,918 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:29,952 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:29,993 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:30,026 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,026 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:30,070 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,071 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:30,103 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,103 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:30,136 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,136 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:30,170 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,170 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:30,200 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,200 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:30,237 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,237 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:30,270 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,270 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:30,302 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,303 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:30,337 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,339 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:30,372 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,372 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:30,402 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,402 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:30,432 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,432 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:30,464 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,464 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:30,496 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,496 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:30,530 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,530 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:30,564 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,564 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:30,595 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,596 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:30,627 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,627 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:30,659 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,659 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:30,692 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,692 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:30,724 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,724 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:30,780 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,780 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:30,818 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,818 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:30,855 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,855 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:30,886 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,886 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:30,927 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:30,927 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:31,025 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,069 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:31,105 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,105 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:31,137 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,137 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:31,168 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,168 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:31,199 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,199 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:31,232 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,232 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:31,265 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,266 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:31,303 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,303 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:31,336 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,336 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:31,369 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,369 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:31,406 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,406 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:31,438 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,438 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:31,471 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,471 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:31,504 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,504 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:31,547 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,547 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:31,586 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,586 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:31,630 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,630 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:31,662 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,662 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:31,693 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,694 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:31,728 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,728 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:31,758 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,758 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:31,790 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,790 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:31,823 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,823 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:31,853 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,853 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:31,883 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,883 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:31,916 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,916 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:31,947 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,948 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:31,980 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:31,980 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:32,015 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,015 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:32,047 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,048 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:32,078 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,078 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:32,109 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,109 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:32,142 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,142 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:32,190 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,235 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:32,266 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,266 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:32,303 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,304 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:32,358 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,358 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:32,389 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,390 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:32,423 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,423 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:32,456 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,456 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:32,494 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,494 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:32,528 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,528 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:32,560 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,561 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:32,592 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,592 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:32,624 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,624 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:32,655 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,655 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:32,692 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,692 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:32,728 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,728 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:32,760 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,760 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:32,792 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,792 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:32,823 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,823 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:32,859 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,859 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:32,893 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,893 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:32,926 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,926 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:32,962 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,962 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:32,992 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:32,993 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:33,026 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,026 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:33,056 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,057 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:33,092 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,093 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:33,131 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,131 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:33,164 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,164 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:33,196 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,197 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:33,227 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,228 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:33,262 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,262 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:33,293 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,293 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:33,325 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,326 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:33,360 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,362 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:33,394 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,394 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:33,424 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,424 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:33,460 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,461 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:33,493 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,536 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:33,572 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,572 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:33,615 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,615 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:33,652 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,652 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:33,683 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,683 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:33,715 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,715 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:33,749 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,749 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:33,781 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,781 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:33,813 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,814 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:33,847 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,847 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:33,878 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,878 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:33,909 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,909 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:33,943 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,943 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:33,978 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:33,979 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:34,033 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,033 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:34,169 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,169 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:34,209 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,209 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:34,240 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,240 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:34,273 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,273 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:34,305 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,305 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:34,335 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,335 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:34,368 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,368 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:34,400 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,400 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:34,433 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,433 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:34,467 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,467 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:34,500 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,500 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:34,532 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,532 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:34,564 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,565 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:34,595 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,595 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:34,630 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,630 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:34,664 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,664 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:34,695 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,696 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:34,729 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,729 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:34,762 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,762 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:34,798 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,799 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:34,847 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,847 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:34,879 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,879 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:34,917 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:34,918 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:35,006 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,006 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:35,092 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,171 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:35,203 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,203 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:35,233 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,233 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:35,264 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,264 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:35,299 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,299 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:35,331 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,331 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:35,362 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,363 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:35,395 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,395 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:35,428 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,428 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:35,460 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,460 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:35,496 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,496 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:35,529 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,529 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:35,568 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,568 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:35,603 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,603 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:35,638 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,638 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:35,667 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,667 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:35,720 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,720 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:35,765 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,765 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:35,798 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,798 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:35,829 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,829 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:35,861 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,861 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:35,900 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,900 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:35,930 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,930 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:35,960 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,960 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:35,991 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:35,991 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:36,020 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,020 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:36,053 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,053 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:36,084 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,084 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:36,120 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,120 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:36,153 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,153 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:36,185 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,185 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:36,217 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,217 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:36,253 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,253 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:36,287 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,287 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:36,320 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,320 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:36,352 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,352 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:36,389 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,389 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:36,423 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,423 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:36,454 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,454 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:36,488 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,488 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:36,525 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,525 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:36,558 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,603 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:36,633 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,633 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:36,666 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,666 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:36,697 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,697 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:36,730 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,730 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:36,773 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,773 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:36,804 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,804 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:36,834 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,834 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:36,871 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,872 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:36,904 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,904 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:36,936 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,936 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:36,972 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:36,972 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:37,003 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,003 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:37,036 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,037 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:37,074 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,074 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:37,104 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,104 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:37,135 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,136 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:37,199 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,199 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:37,231 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,232 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:37,264 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,265 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:37,299 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,299 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:37,331 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,331 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:37,363 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,363 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:37,394 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,394 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:37,427 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,427 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:37,463 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,463 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:37,506 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,506 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:37,539 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,539 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:37,570 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,570 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:37,602 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,603 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:37,635 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,635 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:37,670 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,670 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:37,705 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,705 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:37,740 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,740 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:37,775 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,775 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:37,807 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,808 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:37,840 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,840 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:37,872 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,872 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:37,950 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,950 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:37,982 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:37,982 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:38,012 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,012 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:38,043 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,095 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:38,127 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,127 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:38,202 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,202 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:38,234 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,234 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:38,268 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,268 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:38,302 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,302 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:38,333 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,333 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:38,366 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,366 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:38,409 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,409 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:38,443 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,443 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:38,477 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,478 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:38,509 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,509 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:38,540 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,540 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:38,574 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,574 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:38,632 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,632 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:38,665 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,665 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:38,697 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,697 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:38,729 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,729 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:38,767 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,767 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:38,798 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,798 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:38,835 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,835 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:38,870 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,870 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:38,903 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,903 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:38,936 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,936 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:38,969 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:38,969 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:39,001 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,001 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:39,041 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,042 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:39,073 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,073 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:39,107 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,107 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:39,136 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,136 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:39,167 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,167 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:39,200 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,200 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:39,232 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,232 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:39,265 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,265 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:39,298 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,298 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:39,330 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,330 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:39,364 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,364 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:39,399 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,399 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:39,434 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,435 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:39,470 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,470 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:39,501 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,501 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:39,534 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,534 - INFO - 处理记录: ts=2025-03-24 17:25:35.273000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:25:39,564 - ERROR - 处理时间戳为 2025-03-24 17:25:35.273000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,564 - INFO - 处理记录: ts=2025-03-24 17:25:35.354000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 23 00 A3 03 00 00 C7 +2025-03-24 17:25:39,598 - ERROR - 处理时间戳为 2025-03-24 17:25:35.354000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,598 - INFO - 处理记录: ts=2025-03-24 17:25:35.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 23 00 54 +2025-03-24 17:25:39,639 - ERROR - 处理时间戳为 2025-03-24 17:25:35.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,697 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:39,729 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,729 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:39,762 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,762 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:39,795 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,795 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:39,828 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,828 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:39,864 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,864 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:39,899 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,899 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:39,936 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,936 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:39,967 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,967 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:39,998 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:39,998 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:40,030 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,030 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:40,074 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,074 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:40,106 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,106 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:40,139 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,139 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:40,172 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,172 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:40,204 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,204 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:40,238 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,239 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:40,269 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,269 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:40,302 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,303 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:40,344 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,344 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:40,377 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,377 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:40,408 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,408 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:40,440 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,440 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:40,474 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,474 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:40,508 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,508 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:40,543 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,543 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:40,578 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,578 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:40,610 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,610 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:40,642 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,642 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:40,676 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,676 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:40,712 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,713 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:40,756 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,757 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:40,792 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,792 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:40,829 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,829 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:40,870 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,870 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:40,908 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,908 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:40,939 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:40,940 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:41,041 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,041 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:41,082 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,082 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:41,123 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,123 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:41,155 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,156 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:41,188 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,188 - INFO - 处理记录: ts=2025-03-24 17:25:35.273000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:25:41,222 - ERROR - 处理时间戳为 2025-03-24 17:25:35.273000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,222 - INFO - 处理记录: ts=2025-03-24 17:25:35.354000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 23 00 A3 03 00 00 C7 +2025-03-24 17:25:41,252 - ERROR - 处理时间戳为 2025-03-24 17:25:35.354000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,252 - INFO - 处理记录: ts=2025-03-24 17:25:35.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 23 00 54 +2025-03-24 17:25:41,286 - ERROR - 处理时间戳为 2025-03-24 17:25:35.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,286 - INFO - 处理记录: ts=2025-03-24 17:25:37.460000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 19 06 00 02 01 01 01 01 AA +2025-03-24 17:25:41,319 - ERROR - 处理时间戳为 2025-03-24 17:25:37.460000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,373 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:41,405 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,406 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:41,438 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,438 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:41,471 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,471 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:41,503 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,503 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:41,536 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,537 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:41,570 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,570 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:41,602 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,602 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:41,636 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,636 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:41,665 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,665 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:41,697 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,697 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:41,731 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,731 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:41,762 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,762 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:41,793 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,793 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:41,826 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,826 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:41,856 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,857 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:41,891 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,891 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:41,922 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,922 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:41,958 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,958 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:41,988 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:41,988 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:42,033 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,033 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:42,065 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,066 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:42,112 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,112 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:42,146 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,146 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:42,178 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,178 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:42,208 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,208 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:42,240 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,240 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:42,272 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,272 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:42,304 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,304 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:42,338 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,338 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:42,370 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,370 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:42,400 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,400 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:42,430 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,430 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:42,462 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,462 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:42,493 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,493 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:42,524 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,524 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:42,556 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,556 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:42,587 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,587 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:42,620 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,620 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:42,655 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,655 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:42,689 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,689 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:42,719 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,719 - INFO - 处理记录: ts=2025-03-24 17:25:35.273000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:25:42,751 - ERROR - 处理时间戳为 2025-03-24 17:25:35.273000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,751 - INFO - 处理记录: ts=2025-03-24 17:25:35.354000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 23 00 A3 03 00 00 C7 +2025-03-24 17:25:42,797 - ERROR - 处理时间戳为 2025-03-24 17:25:35.354000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,797 - INFO - 处理记录: ts=2025-03-24 17:25:35.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 23 00 54 +2025-03-24 17:25:42,830 - ERROR - 处理时间戳为 2025-03-24 17:25:35.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,830 - INFO - 处理记录: ts=2025-03-24 17:25:37.460000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 19 06 00 02 01 01 01 01 AA +2025-03-24 17:25:42,872 - ERROR - 处理时间戳为 2025-03-24 17:25:37.460000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,872 - INFO - 处理记录: ts=2025-03-24 17:25:38.808000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 2E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 17:25:42,904 - ERROR - 处理时间戳为 2025-03-24 17:25:38.808000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,905 - INFO - 处理记录: ts=2025-03-24 17:25:39.185000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 27 00 74 +2025-03-24 17:25:42,938 - ERROR - 处理时间戳为 2025-03-24 17:25:39.185000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:42,938 - INFO - 处理记录: ts=2025-03-24 17:25:39.898000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 19 08 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:25:42,978 - ERROR - 处理时间戳为 2025-03-24 17:25:39.898000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,023 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:43,054 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,055 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:43,086 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,086 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:43,118 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,120 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:43,151 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,151 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:43,181 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,182 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:43,217 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,217 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:43,263 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,263 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:43,309 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,309 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:43,344 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,344 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:43,378 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,378 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:43,409 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,409 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:43,442 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,442 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:43,474 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,474 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:43,509 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,509 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:43,540 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,540 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:43,570 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,570 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:43,602 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,602 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:43,633 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,633 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:43,664 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,664 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:43,695 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,695 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:43,729 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,730 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:43,760 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,761 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:43,810 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,810 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:43,844 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,844 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:43,876 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,877 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:43,910 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,910 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:43,953 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,953 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:43,990 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:43,990 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:44,022 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,022 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:44,054 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,054 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:44,098 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,098 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:44,135 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,135 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:44,176 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,176 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:44,210 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,210 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:44,243 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,243 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:44,273 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,273 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:44,305 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,305 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:44,336 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,336 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:44,367 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,367 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:44,399 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,399 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:44,429 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,429 - INFO - 处理记录: ts=2025-03-24 17:25:35.273000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:25:44,459 - ERROR - 处理时间戳为 2025-03-24 17:25:35.273000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,459 - INFO - 处理记录: ts=2025-03-24 17:25:35.354000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 23 00 A3 03 00 00 C7 +2025-03-24 17:25:44,490 - ERROR - 处理时间戳为 2025-03-24 17:25:35.354000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,490 - INFO - 处理记录: ts=2025-03-24 17:25:35.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 23 00 54 +2025-03-24 17:25:44,524 - ERROR - 处理时间戳为 2025-03-24 17:25:35.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,524 - INFO - 处理记录: ts=2025-03-24 17:25:37.460000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 19 06 00 02 01 01 01 01 AA +2025-03-24 17:25:44,556 - ERROR - 处理时间戳为 2025-03-24 17:25:37.460000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,556 - INFO - 处理记录: ts=2025-03-24 17:25:38.808000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 2E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 17:25:44,587 - ERROR - 处理时间戳为 2025-03-24 17:25:38.808000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,587 - INFO - 处理记录: ts=2025-03-24 17:25:39.185000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 27 00 74 +2025-03-24 17:25:44,620 - ERROR - 处理时间戳为 2025-03-24 17:25:39.185000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,620 - INFO - 处理记录: ts=2025-03-24 17:25:39.898000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 19 08 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 DE +2025-03-24 17:25:44,653 - ERROR - 处理时间戳为 2025-03-24 17:25:39.898000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,653 - INFO - 处理记录: ts=2025-03-24 17:25:39.977000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 28 01 9F 09 00 00 2E +2025-03-24 17:25:44,685 - ERROR - 处理时间戳为 2025-03-24 17:25:39.977000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,685 - INFO - 处理记录: ts=2025-03-24 17:25:41.356000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 29 02 02 01 01 01 01 52 +2025-03-24 17:25:44,719 - ERROR - 处理时间戳为 2025-03-24 17:25:41.356000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,763 - INFO - 处理记录: ts=2025-03-24 17:25:11.271000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 0B 01 02 01 01 01 01 73 +2025-03-24 17:25:44,793 - ERROR - 处理时间戳为 2025-03-24 17:25:11.271000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,793 - INFO - 处理记录: ts=2025-03-24 17:25:11.291000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 0B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 17 +2025-03-24 17:25:44,824 - ERROR - 处理时间戳为 2025-03-24 17:25:11.291000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,824 - INFO - 处理记录: ts=2025-03-24 17:25:11.768000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 13 01 02 01 01 01 01 7D +2025-03-24 17:25:44,862 - ERROR - 处理时间戳为 2025-03-24 17:25:11.768000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,862 - INFO - 处理记录: ts=2025-03-24 17:25:12.329000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 0D 01 02 01 01 01 01 51 +2025-03-24 17:25:44,893 - ERROR - 处理时间戳为 2025-03-24 17:25:12.329000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,893 - INFO - 处理记录: ts=2025-03-24 17:25:13.647000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 16 01 02 01 01 01 01 2C +2025-03-24 17:25:44,926 - ERROR - 处理时间戳为 2025-03-24 17:25:13.647000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,926 - INFO - 处理记录: ts=2025-03-24 17:25:13.904000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 0E 00 3B +2025-03-24 17:25:44,958 - ERROR - 处理时间戳为 2025-03-24 17:25:13.904000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,958 - INFO - 处理记录: ts=2025-03-24 17:25:15.015000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 0F 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 99 +2025-03-24 17:25:44,991 - ERROR - 处理时间戳为 2025-03-24 17:25:15.015000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:44,991 - INFO - 处理记录: ts=2025-03-24 17:25:15.098000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 0F 00 A3 03 00 00 EB +2025-03-24 17:25:45,030 - ERROR - 处理时间戳为 2025-03-24 17:25:15.098000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,031 - INFO - 处理记录: ts=2025-03-24 17:25:15.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 0F 00 78 +2025-03-24 17:25:45,098 - ERROR - 处理时间戳为 2025-03-24 17:25:15.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,098 - INFO - 处理记录: ts=2025-03-24 17:25:15.648000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 17 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 88 +2025-03-24 17:25:45,150 - ERROR - 处理时间戳为 2025-03-24 17:25:15.648000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,150 - INFO - 处理记录: ts=2025-03-24 17:25:17.399000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 2E 00 02 01 01 01 01 83 +2025-03-24 17:25:45,183 - ERROR - 处理时间戳为 2025-03-24 17:25:17.399000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,183 - INFO - 处理记录: ts=2025-03-24 17:25:18.436000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 12 00 73 +2025-03-24 17:25:45,240 - ERROR - 处理时间戳为 2025-03-24 17:25:18.436000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,240 - INFO - 处理记录: ts=2025-03-24 17:25:18.738000, pile_id=0317665611360637, hex_data=4A 58 09 03 17 66 56 11 36 06 37 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 3A +2025-03-24 17:25:45,276 - ERROR - 处理时间戳为 2025-03-24 17:25:18.738000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,277 - INFO - 处理记录: ts=2025-03-24 17:25:18.794000, pile_id=0317665611360637, hex_data=4A 58 0A 03 17 66 56 11 36 06 37 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 0E D7 05 01 00 00 00 00 00 86 00 00 00 00 00 00 00 00 94 C0 72 01 00 00 00 00 00 84 00 00 00 00 9A +2025-03-24 17:25:45,314 - ERROR - 处理时间戳为 2025-03-24 17:25:18.794000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,314 - INFO - 处理记录: ts=2025-03-24 17:25:19.635000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 30 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 E7 +2025-03-24 17:25:45,345 - ERROR - 处理时间戳为 2025-03-24 17:25:19.635000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,346 - INFO - 处理记录: ts=2025-03-24 17:25:19.725000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 13 01 9F 09 00 00 15 +2025-03-24 17:25:45,387 - ERROR - 处理时间戳为 2025-03-24 17:25:19.725000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,387 - INFO - 处理记录: ts=2025-03-24 17:25:21.297000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 15 00 02 01 01 01 01 6C +2025-03-24 17:25:45,420 - ERROR - 处理时间戳为 2025-03-24 17:25:21.297000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,420 - INFO - 处理记录: ts=2025-03-24 17:25:21.435000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 1D 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 82 +2025-03-24 17:25:45,452 - ERROR - 处理时间戳为 2025-03-24 17:25:21.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,452 - INFO - 处理记录: ts=2025-03-24 17:25:23.623000, pile_id=0317288703151018, hex_data=4A 58 0A 03 17 28 87 03 15 10 18 01 48 00 19 03 18 11 18 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 A9 40 AD 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 79 6E E4 01 00 00 00 00 00 00 00 00 00 00 6C +2025-03-24 17:25:45,483 - ERROR - 处理时间戳为 2025-03-24 17:25:23.623000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,483 - INFO - 处理记录: ts=2025-03-24 17:25:24.186000, pile_id=0317344611360613, hex_data=4A 58 0B 03 17 34 46 11 36 06 13 01 07 00 19 03 18 11 19 18 00 4B +2025-03-24 17:25:45,528 - ERROR - 处理时间戳为 2025-03-24 17:25:24.186000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,528 - INFO - 处理记录: ts=2025-03-24 17:25:25.146000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 19 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 8F +2025-03-24 17:25:45,559 - ERROR - 处理时间戳为 2025-03-24 17:25:25.146000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,560 - INFO - 处理记录: ts=2025-03-24 17:25:25.228000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 19 00 A3 03 00 00 FD +2025-03-24 17:25:45,590 - ERROR - 处理时间戳为 2025-03-24 17:25:25.228000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,590 - INFO - 处理记录: ts=2025-03-24 17:25:26.148000, pile_id=0317344611360613, hex_data=4A 58 09 03 17 34 46 11 36 06 13 01 13 00 19 03 18 11 19 1B 00 00 02 01 01 0A 00 00 01 01 0A 00 00 5C +2025-03-24 17:25:45,621 - ERROR - 处理时间戳为 2025-03-24 17:25:26.148000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,621 - INFO - 处理记录: ts=2025-03-24 17:25:26.206000, pile_id=0317344611360613, hex_data=4A 58 0A 03 17 34 46 11 36 06 13 01 48 00 19 03 18 11 19 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 96 B0 68 01 00 00 00 00 00 81 00 00 00 00 00 00 00 00 7A 6D 68 01 00 00 00 00 00 87 00 00 00 00 33 +2025-03-24 17:25:45,655 - ERROR - 处理时间戳为 2025-03-24 17:25:26.206000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,655 - INFO - 处理记录: ts=2025-03-24 17:25:27.229000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 22 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 BD +2025-03-24 17:25:45,687 - ERROR - 处理时间戳为 2025-03-24 17:25:27.229000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,687 - INFO - 处理记录: ts=2025-03-24 17:25:27.428000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 18 38 01 02 01 01 01 01 94 +2025-03-24 17:25:45,718 - ERROR - 处理时间戳为 2025-03-24 17:25:27.428000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,718 - INFO - 处理记录: ts=2025-03-24 17:25:27.638000, pile_id=0317344611360613, hex_data=4A 58 0C 03 17 34 46 11 36 06 13 01 0C 00 19 03 18 11 19 1D 01 02 01 01 01 01 41 +2025-03-24 17:25:45,750 - ERROR - 处理时间戳为 2025-03-24 17:25:27.638000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317344611360613', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,750 - INFO - 处理记录: ts=2025-03-24 17:25:27.667000, pile_id=0317676311360657, hex_data=4A 58 0C 03 17 67 63 11 36 06 57 01 0C 00 19 03 18 11 19 23 01 02 01 01 01 01 4D +2025-03-24 17:25:45,783 - ERROR - 处理时间戳为 2025-03-24 17:25:27.667000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,783 - INFO - 处理记录: ts=2025-03-24 17:25:28.637000, pile_id=0317288703151018, hex_data=4A 58 09 03 17 28 87 03 15 10 18 01 13 00 19 03 18 11 18 39 00 00 02 01 01 00 00 00 01 01 00 00 00 8E +2025-03-24 17:25:45,822 - ERROR - 处理时间戳为 2025-03-24 17:25:28.637000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,823 - INFO - 处理记录: ts=2025-03-24 17:25:28.905000, pile_id=0317665611360637, hex_data=4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 03 18 11 19 1D 00 28 +2025-03-24 17:25:45,853 - ERROR - 处理时间戳为 2025-03-24 17:25:28.905000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,853 - INFO - 处理记录: ts=2025-03-24 17:25:29.042000, pile_id=0317665611360637, hex_data=4A 58 0C 03 17 66 56 11 36 06 37 01 0C 00 19 03 18 11 19 25 00 02 01 01 01 01 1E +2025-03-24 17:25:45,884 - ERROR - 处理时间戳为 2025-03-24 17:25:29.042000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317665611360637', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,885 - INFO - 处理记录: ts=2025-03-24 17:25:29.556000, pile_id=0317676311360657, hex_data=4A 58 09 03 17 67 63 11 36 06 57 01 13 00 19 03 18 11 19 25 00 00 02 01 01 0A 00 00 01 01 0A 00 00 50 +2025-03-24 17:25:45,918 - ERROR - 处理时间戳为 2025-03-24 17:25:29.556000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,918 - INFO - 处理记录: ts=2025-03-24 17:25:29.610000, pile_id=0317676311360657, hex_data=4A 58 0A 03 17 67 63 11 36 06 57 01 48 00 19 03 18 11 19 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 4A BC B2 00 00 00 00 00 00 88 00 00 00 00 00 00 00 00 AA AF F8 00 00 00 00 00 00 E1 00 00 00 00 D8 +2025-03-24 17:25:45,952 - ERROR - 处理时间戳为 2025-03-24 17:25:29.610000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,952 - INFO - 处理记录: ts=2025-03-24 17:25:29.733000, pile_id=0317446603151040, hex_data=4A 58 09 03 17 44 66 03 15 10 40 01 13 00 19 03 18 11 19 1D 00 00 02 01 01 00 00 00 01 01 00 00 00 7E +2025-03-24 17:25:45,984 - ERROR - 处理时间戳为 2025-03-24 17:25:29.733000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:45,984 - INFO - 处理记录: ts=2025-03-24 17:25:29.767000, pile_id=0317288703151018, hex_data=4A 58 33 03 17 28 87 03 15 10 18 01 A3 00 19 03 18 11 18 3A 01 9F 09 00 00 30 33 31 37 32 38 38 37 30 33 31 35 31 30 31 38 32 30 32 34 31 30 32 39 30 35 33 38 39 33 34 39 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4C 55 45 43 42 46 41 57 36 52 4E 32 39 30 37 30 30 18 0A 1D 05 26 22 18 0A 1D 05 27 02 3C B1 8C 00 3C B1 8C 00 3A 3A 03 ED 89 09 00 01 00 01 01 08 00 00 01 07 00 01 15 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ED +2025-03-24 17:25:46,015 - ERROR - 处理时间戳为 2025-03-24 17:25:29.767000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,015 - INFO - 处理记录: ts=2025-03-24 17:25:29.857000, pile_id=0317288703151018, hex_data=4A 58 34 03 17 28 87 03 15 10 18 01 0B 00 19 03 18 11 19 1D 01 9F 09 00 00 1B +2025-03-24 17:25:46,048 - ERROR - 处理时间戳为 2025-03-24 17:25:29.857000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,048 - INFO - 处理记录: ts=2025-03-24 17:25:29.995000, pile_id=0317288703151018, hex_data=4A 58 0B 03 17 28 87 03 15 10 18 01 07 00 19 03 18 11 19 1E 00 BC +2025-03-24 17:25:46,077 - ERROR - 处理时间戳为 2025-03-24 17:25:29.995000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,077 - INFO - 处理记录: ts=2025-03-24 17:25:31.326000, pile_id=0317446603151040, hex_data=4A 58 0C 03 17 44 66 03 15 10 40 01 0C 00 19 03 18 11 19 1F 01 02 01 01 01 01 67 +2025-03-24 17:25:46,108 - ERROR - 处理时间戳为 2025-03-24 17:25:31.326000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,108 - INFO - 处理记录: ts=2025-03-24 17:25:31.346000, pile_id=0317446603151040, hex_data=4A 58 0A 03 17 44 66 03 15 10 40 01 48 00 19 03 18 11 19 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 32 32 32 32 00 00 00 00 00 00 00 00 00 02 00 00 00 00 54 06 5D 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 C9 C1 05 00 00 00 00 00 00 00 00 00 00 03 +2025-03-24 17:25:46,140 - ERROR - 处理时间戳为 2025-03-24 17:25:31.346000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,140 - INFO - 处理记录: ts=2025-03-24 17:25:33.018000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 28 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B7 +2025-03-24 17:25:46,171 - ERROR - 处理时间戳为 2025-03-24 17:25:33.018000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,171 - INFO - 处理记录: ts=2025-03-24 17:25:33.435000, pile_id=0317676311360657, hex_data=4A 58 0B 03 17 67 63 11 36 06 57 01 07 00 19 03 18 11 19 21 00 40 +2025-03-24 17:25:46,204 - ERROR - 处理时间戳为 2025-03-24 17:25:33.435000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317676311360657', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,204 - INFO - 处理记录: ts=2025-03-24 17:25:35.273000, pile_id=0317446603151040, hex_data=4A 58 33 03 17 44 66 03 15 10 40 01 A3 00 19 03 18 11 19 23 00 A3 03 00 00 30 33 31 37 34 34 36 36 30 33 31 35 31 30 34 30 32 30 32 34 30 36 33 30 30 30 35 33 31 39 37 36 65 36 39 61 32 31 30 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 18 06 1E 00 35 32 18 06 1E 00 36 24 B5 CB 69 00 D1 CB 69 00 09 09 03 1E 67 06 00 01 00 01 01 08 00 00 01 36 00 01 0D 00 0A 00 00 00 0A 00 00 00 00 00 00 00 01 00 1C 00 B5 +2025-03-24 17:25:46,235 - ERROR - 处理时间戳为 2025-03-24 17:25:35.273000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,235 - INFO - 处理记录: ts=2025-03-24 17:25:35.354000, pile_id=0317446603151040, hex_data=4A 58 34 03 17 44 66 03 15 10 40 01 0B 00 19 03 18 11 19 23 00 A3 03 00 00 C7 +2025-03-24 17:25:46,268 - ERROR - 处理时间戳为 2025-03-24 17:25:35.354000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,268 - INFO - 处理记录: ts=2025-03-24 17:25:35.378000, pile_id=0317446603151040, hex_data=4A 58 0B 03 17 44 66 03 15 10 40 01 07 00 19 03 18 11 19 23 00 54 +2025-03-24 17:25:46,302 - ERROR - 处理时间戳为 2025-03-24 17:25:35.378000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317446603151040', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,302 - INFO - 处理记录: ts=2025-03-24 17:25:37.460000, pile_id=0317288703151018, hex_data=4A 58 0C 03 17 28 87 03 15 10 18 01 0C 00 19 03 18 11 19 06 00 02 01 01 01 01 AA +2025-03-24 17:25:46,335 - ERROR - 处理时间戳为 2025-03-24 17:25:37.460000 的记录时出错: malformed array literal: "[1]" +LINE 10: ...4', '0317288703151018', '直流', 2, '2.100', NULL, '[1]', '[2... + ^ +DETAIL: Missing "=" after array dimensions. + +2025-03-24 17:25:46,335 - INFO - 处理记录: ts=2025-03-24 17:25:38.808000, pile_id=0317676311360657, hex_data=4A 58 23 03 17 67 63 11 36 06 57 01 A3 00 19 03 18 11 19 2E 00 38 0F 00 00 30 33 31 37 36 37 36 33 31 31 33 36 30 36 35 37 32 35 30 33 31 34 31 31 35 32 30 35 33 35 34 32 4C 55 45 43 42 46 42 54 35 52 4E 33 30 33 35 39 39 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 19 03 0E 0B 33 27 19 03 0E 0B 34 07 6D 04 B2 00 6D 04 B2 00 00 00 04 00 00 00 00 01 00 00 00 00 00 00 01 5C 00 01 1D 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 B1 +2025-03-24 17:25:46,350 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/pile.py b/charging_pile_proxy/hejin_forward/pile.py new file mode 100644 index 0000000..d846164 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/pile.py @@ -0,0 +1,376 @@ +import taosrest +import psycopg2 +import json +from datetime import datetime +import binascii +import logging +import uuid +import time + +# 配置日志 +logging.basicConfig( + filename='pile.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +class PileMigrator: + def __init__(self): + # TDengine连接参数 + self.tdengine_config = { + 'host': '123.6.102.119', + 'port': 6041, + 'user': 'readonly_user', + 'password': 'Aassword123', + 'database': 'antsev' + } + + # PostgreSQL连接参数 + self.pg_config = { + 'host': '123.6.102.119', + 'port': 5432, + 'database': 'tms-design', + 'user': 'postgres', + 'password': '687315e66ae24eeab8bb5c0441a40d79' + } + + self.td_conn = None + self.td_cursor = None + self.pg_conn = None + self.pg_cursor = None + self.last_processed_ts = None + self.processed_pile_ids = set() + self.processed_uuids = set() + + def connect(self): + """建立与两个数据库的连接""" + max_retries = 3 + retry_delay = 10 # 秒 + for attempt in range(max_retries): + try: + # 连接到TDengine + logging.info(f"尝试连接到TDengine (第 {attempt + 1} 次): {self.tdengine_config}") + rest_url = f"http://{self.tdengine_config['host']}:{self.tdengine_config['port']}" + self.td_conn = taosrest.connect( + url=rest_url, + user=self.tdengine_config['user'], + password=self.tdengine_config['password'], + database=self.tdengine_config['database'] + ) + self.td_cursor = self.td_conn.cursor() + logging.info("成功连接到TDengine") + + # 测试查询以验证连接 + self.td_cursor.execute("SELECT SERVER_VERSION()") + version = self.td_cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + # 连接到PostgreSQL + logging.info(f"尝试连接到PostgreSQL: {self.pg_config}") + self.pg_conn = psycopg2.connect( + host=self.pg_config['host'], + port=self.pg_config['port'], + database=self.pg_config['database'], + user=self.pg_config['user'], + password=self.pg_config['password'] + ) + self.pg_conn.autocommit = True + self.pg_cursor = self.pg_conn.cursor() + logging.info("成功连接到PostgreSQL") + break # 连接成功,退出重试循环 + + except Exception as e: + logging.error(f"连接错误 (第 {attempt + 1} 次): {str(e)}") + if attempt < max_retries - 1: + logging.info(f"将在 {retry_delay} 秒后重试...") + time.sleep(retry_delay) + else: + raise + + def parse_hex_data(self, hex_data, timestamp, pile_id): + """根据协议解析十六进制数据""" + try: + # 移除空格并将十六进制字符串转换为字节 + hex_bytes = bytes.fromhex(hex_data.replace(" ", "")) + + # 验证帧起始(应该是"JX") + if hex_bytes[0:2] != b'JX': + return None + + # 提取命令 + command = hex_bytes[2:3].hex().upper() + + # 默认费率清单 + default_rate_record = [ + { + "discountAfterTotalPrice": 1.779, + "discountElecPrice": 0, + "discountServicePrice": 0, + "elecPrice": 0.889, + "endTime": "18:00:00", + "phaseType": 4, + "servicePrice": 0 + } + ] + + # 初始化数据字典 + data = { + 'command': command, + 'uuid': str(uuid.uuid4()).replace('-', ''), + 'classification_id': 'S5F', + 'manufacturer_id': 'cf17ad0840f79ab4483e4c4c8bda875b', + 'product_id': '111818', + 'station_id': '200076', + 'name': '直流充电桩A04', + 'code': pile_id, + 'dc_or_ac': '直流', + 'gun_number': 2, + 'software_version': '2.100', + 'hardware_version': None, + 'startup_mode': json.dumps([1]), + 'startup_type': json.dumps([22]), + 'created_at': timestamp, + 'created_by': None, + 'updated_at': timestamp, + 'updated_by': None, + 'charge_person': None, + 'label': None, + 'power': 240.0, + 'address': None, + 'longitude': 109.997164, + 'dimension': 38.634963, + 'service_time': None, + 'device_type': 1, + 'operator_id': 'K1TUBMOLH', + 'remark': None, + 'production_date': None, + 'entity_id': 'MACKSFTXX', + 'org_code': 'MACKSFTXX', + 'merchant_id': '18633849140684009482', + 'rate_record_list': json.dumps(default_rate_record) + } + + # 21H - 充电桩软件版本 + if command == '21': + # 软件版本(字节127-142) + software_version = hex_bytes[127:143].decode('ascii', errors='ignore').strip() + # 硬件版本(字节143-158) + hardware_version = hex_bytes[143:159].decode('ascii', errors='ignore').strip() + + data.update({ + 'software_version': software_version if software_version else '2.100', + 'hardware_version': hardware_version if hardware_version else None + }) + + # 22H - 充电桩信息(假设包含功率和枪数) + elif command == '22': + # 功率(假设字节127-130,分辨率1W) + power = int.from_bytes(hex_bytes[127:131], byteorder='little') * 0.001 # 转换为kW + # 枪数(假设字节131) + gun_number = int(hex_bytes[131]) if len(hex_bytes) > 131 else 2 + + # 判断直流/交流 + dc_or_ac = '直流' if power > 60 else '交流' + + data.update({ + 'power': power if power > 0 else 240.0, + 'gun_number': gun_number, + 'dc_or_ac': dc_or_ac + }) + + return data + + except Exception as e: + logging.error(f"解析十六进制数据时出错: {str(e)}") + return None + + def migrate_data(self): + """将新数据从TDengine迁移到PostgreSQL的pile表""" + while True: + try: + # 如果last_processed_ts为空,初始化为当前时间 + if self.last_processed_ts is None: + try: + # 避免使用 MAX(ts),改用 ORDER BY ts DESC LIMIT 1 获取最新时间戳 + self.td_cursor.execute("SELECT ts FROM antsev.charge_jiuxing ORDER BY ts DESC LIMIT 1") + result = self.td_cursor.fetchone() + self.last_processed_ts = result[0] if result and result[0] else datetime.now() + except Exception as e: + logging.error(f"获取最新时间戳失败: {str(e)},使用当前时间作为默认值") + self.last_processed_ts = datetime.now() + logging.info(f"初始化last_processed_ts: {self.last_processed_ts}") + + # 查询新数据 + query = f"SELECT * FROM antsev.charge_jiuxing WHERE ts > '{self.last_processed_ts}' ORDER BY ts" + self.td_cursor.execute(query) + rows = self.td_cursor.fetchall() + + if not rows: + logging.info("没有新数据,休眠10秒") + time.sleep(10) + continue + + for row in rows: + try: + # 从TDengine行中提取数据 + timestamp = row[0] # 时间戳 + pile_id = row[3] # 充电桩ID + hex_data = row[12] # 十六进制数据 + + # 记录原始数据 + logging.info(f"处理记录: ts={timestamp}, pile_id={pile_id}, hex_data={hex_data}") + + # 跳过已处理的充电桩 + if pile_id in self.processed_pile_ids: + logging.info(f"充电桩已处理,pile_id: {pile_id},跳过") + continue + + # 解析十六进制数据 + parsed_data = self.parse_hex_data(hex_data, timestamp, pile_id) + if not parsed_data: + logging.warning(f"无法解析 hex_data: {hex_data},跳过此记录") + continue + + # 检查记录是否已存在 + check_query = """ + SELECT 1 FROM pile WHERE uuid = %s + """ + self.pg_cursor.execute(check_query, (parsed_data['uuid'],)) + exists = self.pg_cursor.fetchone() is not None + + # 如果记录已存在,跳过 + if exists or parsed_data['uuid'] in self.processed_uuids: + logging.info(f"充电桩记录已存在,UUID: {parsed_data['uuid']},跳过") + continue + + # 准备插入PostgreSQL的数据 + insert_query = """ + INSERT INTO public.pile ( + uuid, classification_id, manufacturer_id, product_id, station_id, + name, code, dc_or_ac, gun_number, software_version, + hardware_version, startup_mode, startup_type, created_at, created_by, + updated_at, updated_by, charge_person, label, power, + address, longitude, dimension, service_time, device_type, + operator_id, remark, production_date, entity_id, org_code, + merchant_id, rate_record_list + ) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + """ + values = ( + parsed_data['uuid'], + parsed_data['classification_id'], + parsed_data['manufacturer_id'], + parsed_data['product_id'], + parsed_data['station_id'], + parsed_data['name'], + parsed_data['code'], + parsed_data['dc_or_ac'], + parsed_data['gun_number'], + parsed_data['software_version'], + parsed_data['hardware_version'], + parsed_data['startup_mode'], + parsed_data['startup_type'], + parsed_data['created_at'], + parsed_data['created_by'], + parsed_data['updated_at'], + parsed_data['updated_by'], + parsed_data['charge_person'], + parsed_data['label'], + parsed_data['power'], + parsed_data['address'], + parsed_data['longitude'], + parsed_data['dimension'], + parsed_data['service_time'], + parsed_data['device_type'], + parsed_data['operator_id'], + parsed_data['remark'], + parsed_data['production_date'], + parsed_data['entity_id'], + parsed_data['org_code'], + parsed_data['merchant_id'], + parsed_data['rate_record_list'] + ) + + self.pg_cursor.execute(insert_query, values) + self.processed_pile_ids.add(pile_id) + self.processed_uuids.add(parsed_data['uuid']) + logging.info(f"插入充电桩,UUID: {parsed_data['uuid']}, 充电桩编号: {pile_id}") + + # 记录插入的完整数据 + log_values = { + 'uuid': parsed_data['uuid'], + 'classification_id': parsed_data['classification_id'], + 'manufacturer_id': parsed_data['manufacturer_id'], + 'product_id': parsed_data['product_id'], + 'station_id': parsed_data['station_id'], + 'name': parsed_data['name'], + 'code': parsed_data['code'], + 'dc_or_ac': parsed_data['dc_or_ac'], + 'gun_number': parsed_data['gun_number'], + 'software_version': parsed_data['software_version'], + 'hardware_version': parsed_data['hardware_version'], + 'startup_mode': parsed_data['startup_mode'], + 'startup_type': parsed_data['startup_type'], + 'created_at': parsed_data['created_at'], + 'created_by': parsed_data['created_by'], + 'updated_at': parsed_data['updated_at'], + 'updated_by': parsed_data['updated_by'], + 'charge_person': parsed_data['charge_person'], + 'label': parsed_data['label'], + 'power': parsed_data['power'], + 'address': parsed_data['address'], + 'longitude': parsed_data['longitude'], + 'dimension': parsed_data['dimension'], + 'service_time': parsed_data['service_time'], + 'device_type': parsed_data['device_type'], + 'operator_id': parsed_data['operator_id'], + 'remark': parsed_data['remark'], + 'production_date': parsed_data['production_date'], + 'entity_id': parsed_data['entity_id'], + 'org_code': parsed_data['org_code'], + 'merchant_id': parsed_data['merchant_id'], + 'rate_record_list': parsed_data['rate_record_list'] + } + logging.info(f"插入到 pile 表的数据: {log_values}") + + # 更新last_processed_ts + self.last_processed_ts = max(self.last_processed_ts, timestamp) + + except Exception as e: + logging.error(f"处理时间戳为 {timestamp} 的记录时出错: {str(e)}") + continue + + except Exception as e: + logging.error(f"迁移过程中出错: {str(e)}") + time.sleep(10) # 出错后休眠10秒后重试 + + def close(self): + """关闭数据库连接""" + try: + if self.td_cursor: + self.td_cursor.close() + if self.td_conn: + self.td_conn.close() + if self.pg_cursor: + self.pg_cursor.close() + if self.pg_conn: + self.pg_conn.close() + logging.info("数据库连接已关闭") + except Exception as e: + logging.error(f"关闭连接时出错: {str(e)}") + raise + + def run(self): + """运行迁移的主方法""" + try: + self.connect() + self.migrate_data() + except Exception as e: + logging.error(f"迁移失败: {str(e)}") + raise + finally: + self.close() + +if __name__ == "__main__": + migrator = PileMigrator() + migrator.run() \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/pile_migration.log b/charging_pile_proxy/hejin_forward/pile_migration.log new file mode 100644 index 0000000..5392162 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/pile_migration.log @@ -0,0 +1,4 @@ +2025-03-24 10:41:22,692 - INFO - 尝试连接到TDengine: {'host': '123.6.102.119', 'port': 6041, 'user': 'root', 'password': 'Aassword123', 'database': 'antsev'} +2025-03-24 10:41:24,244 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 10:41:24,244 - ERROR - 迁移失败: [0x000b]: Unable to establish connection +2025-03-24 10:41:24,244 - INFO - 数据库连接已关闭 diff --git a/charging_pile_proxy/hejin_forward/test.py b/charging_pile_proxy/hejin_forward/test.py new file mode 100644 index 0000000..6aec5f8 --- /dev/null +++ b/charging_pile_proxy/hejin_forward/test.py @@ -0,0 +1,34 @@ +import taosrest +import logging + +logging.basicConfig( + filename='test_tdengine.log', + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + encoding='utf-8' +) + +try: + # 使用 taosrest 模块连接 + conn = taosrest.connect( + url="http://123.6.102.119:6041", + user="readonly_user", + password="Aassword123", + database="antsev" + ) + cursor = conn.cursor() + logging.info("成功连接到TDengine") + + cursor.execute("SELECT SERVER_VERSION()") + version = cursor.fetchone() + logging.info(f"TDengine 服务器版本: {version[0]}") + + cursor.execute("SELECT * FROM antsev.charge_jiuxing LIMIT 10") + row = cursor.fetchone() + logging.info(f"查询结果: {row}") + + cursor.close() + conn.close() +except Exception as e: + logging.error(f"连接错误: {str(e)}") + raise \ No newline at end of file diff --git a/charging_pile_proxy/hejin_forward/test_tdengine.log b/charging_pile_proxy/hejin_forward/test_tdengine.log new file mode 100644 index 0000000..3543c5d --- /dev/null +++ b/charging_pile_proxy/hejin_forward/test_tdengine.log @@ -0,0 +1,7 @@ +2025-03-24 15:54:08,296 - ERROR - 连接错误: [0x000b]: Unable to establish connection +2025-03-24 16:25:18,217 - INFO - 成功连接到TDengine +2025-03-24 16:25:18,261 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:25:18,315 - INFO - 查询结果: [datetime.datetime(2025, 1, 20, 11, 7, 3, 36000), '139.9.209.227', '192.168.8.141', '0317665611360637', 'd', '4A 58', '0B', '03 17 66 56 11 36 06 37', '01', '07 00', '19 01 14 0B 07 05 00', '3A', '4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 01 14 0B 07 05 00 3A'] +2025-03-24 16:26:47,018 - INFO - 成功连接到TDengine +2025-03-24 16:26:47,060 - INFO - TDengine 服务器版本: 3.3.3.0 +2025-03-24 16:26:47,105 - INFO - 查询结果: [datetime.datetime(2025, 1, 20, 11, 7, 3, 36000), '139.9.209.227', '192.168.8.141', '0317665611360637', 'd', '4A 58', '0B', '03 17 66 56 11 36 06 37', '01', '07 00', '19 01 14 0B 07 05 00', '3A', '4A 58 0B 03 17 66 56 11 36 06 37 01 07 00 19 01 14 0B 07 05 00 3A']