SYaoJun opened a new issue, #733: URL: https://github.com/apache/hugegraph-toolchain/issues/733
### Bug Type (问题类型) data inconsistency (数据不一致) ### Before submit - [x] I had searched in the [issues](https://github.com/apache/hugegraph-toolchain/issues) and found no similar issues. ### Environment (环境信息) - Server Version: v1.x.x - Toolchain Version: v1.x.x - Data Size: xx vertices, xx edges <!-- (like 1000W 点, 9000W 边) --> ### Expected & Actual behavior (期望与实际表现) # Not thread-safe `DateUtil.parse()` and `DateUtil.now()` methods are not thread-safe. When called concurrently from multiple threads with different time zones, the time zone settings can interfere with each other, leading to incorrect parsing results. ```java Thread A: setTimeZone("GMT+8") → Thread B: setTimeZone("GMT+0") → Thread A: parse() // uses wrong GMT+0 timezone ``` ### Vertex/Edge example (问题点 / 边数据举例) ```javascript ``` ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构) ```javascript ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
