看您的cot_worker日志里面10:14附近的报错日志,是关于Mysql时间字段转换失败导致抽取报错。
- 2024-12-09 10:14:48.152+08:00 [ERR] GrapeCity.Enterprise.Data.CacheWork.ICacheWorkProcessor [CacheWork] FAILURE: Create/recreate cache for common table. Payload CacheKey:dd318d3e-9fab-41e8-9246-060d9c2bcc49.ac15c7ba-3c8c-4b2c-993a-688737a97087, payload table version:0, payload data version:0, stage:Create cache with data
- GrapeCity.Enterprise.DataService.DataWarehouse.Facade.DataWarehouseException: [DW] Failed to create data file.
- ---> System.InvalidCastException: Unable to convert MySQL date/time to System.DateTime, set AllowZeroDateTime=True or ConvertZeroDateTime=True in the connection string. See https://mysqlconnector.net/connection-options/
-
复制代码 同时报错信息中也给出了解决方法。在字符串连接符中添加 AllowZeroDateTime=True 或者 ConvertZeroDateTime=True。
您尝试一下看看是否能解决您的问题。
|