如何从oceanbase中导出整库的表结构和数据呢?我用mydumper报错

【 使用环境 】生产环境
【 OB or 其他组件 】OB
【 使用版本 】4.1.0
【问题描述】我们计划从oceanbase中导出某个租户下某个数据库的表结构和数据,用mydumper执行导出报错,基于代理2883和直连2881导出都报错,报错详情:

[root@dbserver test]# mydumper -h 192.168.0.33 -P 2883 -u ‘edudiagnose@tt_edu’ -B edu_dw --no-data -o /home/test/schema2

** (mydumper:41270): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

** (mydumper:41270): CRITICAL **: Error obtaining information from processlist

[root@dbserver test]# mydumper -h 192.168.0.33 -P 2881 -u ‘edudiagnose@tt_edu’ -B edu_dw --no-data -o /home/test/schema2

** (mydumper:41281): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

** (mydumper:41281): WARNING **: Flush tables failed, we are continuing anyways: You have an error in your SQL syntax; c
heck the manual that corresponds to your OceanBase version for the right syntax to use near ‘FLUSH NO_WRITE_TO_BINLOG TA
BLES’ at line 1

** (mydumper:41281): CRITICAL **: Couldn’t acquire global lock, snapshots will not be consistent: You have an error in y
our SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘FLUSH TABL
ES WITH READ LOCK’ at line 1

** (mydumper:41281): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

** (mydumper:41281): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

** (mydumper:41281): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

** (mydumper:41281): WARNING **: Set session failed: /*!80003 SET SESSION information_schema_stats_expiry = 0 */

所以请教下,oceanbase支持mydumper导出数据库吗(租户模式是mysql)?这个错误怎么解决呢,谢谢

【附件】

看报错应该是mydumper执行了某些 SQL OB 不支持,可以看下是否有对应参数去关闭特定的功能。
如果不限于用mydumper来做导出的话,可以参考下使用obdumper或者odc来导出数据
https://www.oceanbase.com/docs/common-oceanbase-dumper-loader-1000000000246570#4-title-OBDUMPER
https://www.oceanbase.com/docs/common-odc-1000000000231552

您好,我们还有mysql数据库通过mydumper集中备份的,所以OB库也还想用mydumper。应该改哪里的什么参数呢?没有找到相关参数