You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am currently using the MySQL JDBC Source Connector. However, I am encountering an issue with the time zone setting for the connector's offset.
I am using a database set to the Asia/Seoul time zone (UTC+9).
The time zone settings of the database are as follows:
I expected the connector's offset to be stored based on the current time.
However, the offset is being stored as a future timestamp, 9 hours ahead of the current time.
For example, when the offset value should be stored as 2024-12-16T11:00:00+09:00 (1734314400000), it is instead being stored as a future time, 2024-12-16T20:00:00+09:00 (1734346800000), 9 hours later.
Additionally, when running queries, the data is not retrieved correctly.
The current time is correctly reflected as the end time in the WHERE clause, but the start time seems to be applied as the offset, 9 hours ahead, causing the range to be incorrect.
It seems there is an issue with the time zone conversion in the connector, or perhaps there is something wrong with my configuration.
Could you please help me resolve this?
The text was updated successfully, but these errors were encountered:
Hello,
I am currently using the MySQL JDBC Source Connector. However, I am encountering an issue with the time zone setting for the connector's offset.
I am using a database set to the Asia/Seoul time zone (UTC+9).
The time zone settings of the database are as follows:
And the configuration of the connector is as follows:
I expected the connector's offset to be stored based on the current time.
However, the offset is being stored as a future timestamp, 9 hours ahead of the current time.
For example, when the offset value should be stored as
2024-12-16T11:00:00+09:00 (1734314400000)
, it is instead being stored as a future time,2024-12-16T20:00:00+09:00 (1734346800000)
, 9 hours later.Additionally, when running queries, the data is not retrieved correctly.
The current time is correctly reflected as the end time in the WHERE clause, but the start time seems to be applied as the offset, 9 hours ahead, causing the range to be incorrect.
It seems there is an issue with the time zone conversion in the connector, or perhaps there is something wrong with my configuration.
Could you please help me resolve this?
The text was updated successfully, but these errors were encountered: