OceanBase 为了避免事务长时间不提交持有锁影响其他会话,设计了两个超时逻辑。一个是事务未提交超时,一个是事务空闲超时。分别由租户变量 ob_trx_idle_timeout 和 ob_trx_timeout 控制,默认值分别是120秒和100秒。通常只会有一个超时机制被触发。

  1. obclient> show variables where variable_name in ('ob_trx_idle_timeout','ob_trx_timeout');
  2. +---------------------+-----------+
  3. | VARIABLE_NAME | VALUE |
  4. +---------------------+-----------+
  5. | ob_trx_idle_timeout | 120000000 |
  6. | ob_trx_timeout | 100000000 |
  7. +---------------------+-----------+
  8. 2 rows in set (0.00 sec)

关于事务空闲超时

OceanBase 的事务空闲时间超过一段时间还没有提交时,会自动断开连接并回滚事务,此时会话需要重新连接。

会话事务空闲超时时间阈值由租户变量 ob_trx_idle_timeout 控制,这个参数值建议不要小于100秒,实际空闲会话断开的时间会是在 [100s, 100s + ob_trx_idle_timeout ] 之间。

示例:事务空闲超时报错

下面示例先设置事务空闲超时时间为120秒,事务未提交超时时间为1000秒。当事务空闲时间超过120秒后,连接会被自动断开,事务也自动被 ROLLBACK 了。

  1. obclient> select sysdate, t.* from t_insert t;
  2. +---------------------+----+------+-------+---------------------+
  3. | SYSDATE | ID | NAME | VALUE | GMT_CREATE |
  4. +---------------------+----+------+-------+---------------------+
  5. | 2020-04-02 18:03:14 | 1 | CN | 10001 | 2020-04-02 17:52:31 |
  6. | 2020-04-02 18:03:14 | 2 | US | 10002 | 2020-04-02 17:52:38 |
  7. | 2020-04-02 18:03:14 | 3 | EN | 10003 | 2020-04-02 17:52:38 |
  8. +---------------------+----+------+-------+---------------------+
  9. 3 rows in set (0.00 sec)
  10. obclient> set session ob_trx_timeout=1000000000;
  11. Query OK, 0 rows affected (0.00 sec)
  12. obclient> set session ob_trx_idle_timeout=120000000;
  13. Query OK, 0 rows affected (0.00 sec)
  14. obclient> set session ob_trx_timeout=1000000000;
  15. Query OK, 0 rows affected (0.00 sec)
  16. obclient> update t_insert set gmt_create=sysdate where id=3;
  17. Query OK, 1 row affected (0.00 sec)
  18. Rows matched: 1 Changed: 1 Warnings: 0
  19. obclient> select sysdate, t.* from t_insert t;
  20. ERROR-02013: Lost connection to MySQL server during query
  21. obclient> select sysdate, t.* from t_insert t;
  22. ERROR-02006: MySQL server has gone away
  23. No connection. Trying to reconnect...
  24. Connection id: 53246
  25. Current database: TPCC
  26. +---------------------+----+------+-------+---------------------+
  27. | SYSDATE | ID | NAME | VALUE | GMT_CREATE |
  28. +---------------------+----+------+-------+---------------------+
  29. | 2020-04-02 18:07:51 | 1 | CN | 10001 | 2020-04-02 17:52:31 |
  30. | 2020-04-02 18:07:51 | 2 | US | 10002 | 2020-04-02 17:52:38 |
  31. | 2020-04-02 18:07:51 | 3 | EN | 10003 | 2020-04-02 17:52:38 |
  32. +---------------------+----+------+-------+---------------------+
  33. 3 rows in set (0.00 sec)

关于事务未提交超时

OceanBase的事务持续时间超过一段时间还没有提交,会报超时错误。此时会话需要明确发出 ROLLBACK 命令才可以继续在会话里执行SQL。

会话事务的未提交超时时间阈值是由租户变量 ob_trx_timeout 控制。

示例:事务未提交超时报错

下面示例先设置事务空闲超时时间为120秒,事务超时时间为100秒。当一个事务未提交时间持续到100秒时,事务内部状态就变为超时状态,同时锁会释放。此后会话需要显式发出 ROLLBACK 语句。

  1. obclient> set session ob_trx_timeout=100000000;
  2. Query OK, 0 rows affected (0.00 sec)
  3. obclient> set session ob_trx_idle_timeout=120000000;
  4. Query OK, 0 rows affected (0.00 sec)
  5. obclient> update t_insert set gmt_create=sysdate where id=3;
  6. Query OK, 1 row affected (0.00 sec)
  7. Rows matched: 1 Changed: 1 Warnings: 0
  8. obclient> select sysdate, t.* from t_insert t ;
  9. +---------------------+----+------+-------+---------------------+
  10. | SYSDATE | ID | NAME | VALUE | GMT_CREATE |
  11. +---------------------+----+------+-------+---------------------+
  12. | 2020-04-02 18:08:54 | 1 | CN | 10001 | 2020-04-02 17:52:31 |
  13. | 2020-04-02 18:08:54 | 2 | US | 10002 | 2020-04-02 17:52:38 |
  14. | 2020-04-02 18:08:54 | 3 | EN | 10003 | 2020-04-02 18:08:47 |
  15. +---------------------+----+------+-------+---------------------+
  16. 3 rows in set (0.01 sec)
  17. obclient> select sysdate, t.* from t_insert t ;
  18. ERROR-00600: internal error code, arguments: -6210, Transaction is timeout
  19. obclient> commit;
  20. ERROR-00600: internal error code, arguments: -6210, Transaction is timeout
  21. obclient> rollback;
  22. Query OK, 0 rows affected (0.00 sec)
  23. obclient> select sysdate, t.* from t_insert t ;
  24. +---------------------+----+------+-------+---------------------+
  25. | SYSDATE | ID | NAME | VALUE | GMT_CREATE |
  26. +---------------------+----+------+-------+---------------------+
  27. | 2020-04-02 18:09:21 | 1 | CN | 10001 | 2020-04-02 17:52:31 |
  28. | 2020-04-02 18:09:21 | 2 | US | 10002 | 2020-04-02 17:52:38 |
  29. | 2020-04-02 18:09:21 | 3 | EN | 10003 | 2020-04-02 17:52:38 |
  30. +---------------------+----+------+-------+---------------------+
  31. 3 rows in set (0.00 sec)

说明

建议不要将事务未提交超时参数设置小于1秒。