Uploaded image for project: 'Debezium'
  1. Debezium
  2. DBZ-3615

Handling database connection timeout during schema recovery

    XMLWordPrintable

Details

    • Enhancement
    • Resolution: Done
    • Minor
    • 1.6.0.CR1
    • None
    • mysql-connector
    • None
    • False
    • False
    • Undefined

    Description

      The issue is reproducible with the MySQL connector but in theory could be reproduced with other connectors that recover their schema from a database history topic.

      If the database schema includes many tables and has a long history, it might be represented by a large history topic (e.g. in our case it's ~4 million messages and ~4GB of data in total). When the connector restarts, the schema recovery can take significant time (30-60 minutes).

      From the standpoint of utilization of the database connection, the MySQL task lifecycle looks like the following (see MySqlConnectorTask):

      1. Connect to the database (supposedly, in order to validate the connection parameters).
      2. Recover database schema from the topic (may take a while).
      3. Start consuming events from the binlog.

      During the schema recovery, the connection isn't used by the connector and can time out if the schema recovery takes longer than one of the following:

      1. MySQL session wait_timeout. Might be worked around by increasing the timeout on the server or on the client.
      2. Underlying TCP connection timeout defined by the network between the client and the server. For instance, the AWS VPC NAT gateway timeout of 350 seconds.

      If the timeout happens, then at the moment when the schema is fully recovered, the connector will fail with an error message like the following:

      io.debezium.DebeziumException: Unexpected error while connecting to MySQL and looking for binary logs:
      ...
      Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 2,053,326 milliseconds ago. The last packet sent successfully to the server was 2,053,338 milliseconds ago. is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.

      Note that the 2,053,326 milliseconds above roughly corresponds to the 34 minutes the schema recovery took but the statement "is longer than the server configured value of 'wait_timeout'" is not necessarily relevant (it's produced by the underlying JDBC driver). Also, the suggestion of using autoReconnect=true (also produced by the driver) is also irrelevant since it requires handling of the reconnection by the connector which is currently not implemented.

      As a workaround, the logic implemented in https://github.com/sugarcrm/debezium/pull/68 could be used:

      1. Disconnect before starting schema recovery to avoid the timeout.
      2. Reconnect after the recovery is completed.

      Attachments

        Activity

          People

            Unassigned Unassigned
            sergeimorozov Sergei Morozov
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: