Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

Debezium connector fails connecting to MariaDB, error 'LOAD DATA LOCAL INFILE but functionality is disabled at client'

We're using Debezium along with Kafka-Connect to ingest data from several MariaDB-database instances. The connectors run successfully for most databases, but for one the connector fails with the following error:

    at io.debezium.connector.mysql.AbstractReader.wrap(AbstractReader.java:241)
    at io.debezium.connector.mysql.AbstractReader.failed(AbstractReader.java:218)
    at io.debezium.connector.mysql.SnapshotReader.execute(SnapshotReader.java:848)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
    at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.sql.SQLException: Server asked for stream in response to LOAD DATA LOCAL INFILE but functionality is disabled at client by 'allowLoadLocalInfile' being set to 'false'.
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
    at com.mysql.cj.jdbc.ConnectionImpl.commit(ConnectionImpl.java:814)
    at io.debezium.connector.mysql.SnapshotReader.execute(SnapshotReader.java:764)
    ... 3 more

The server-side variable local_infile is set ON, so on the serverside everything should be fine. I guess a solution could be to somehow pass the client-side option allowLoadLocalInfile in the connection-string, but I can't see how you can configure that in Debezium. Also I'd find it rather strange this error pops up now, while other connectors don't have this problem. Does anyone recognize this error while using Debezium, know the cause or even have a solution?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I've found the solution. In the connector configuration, e.g. the json file to register/update the connector I've changed the setting: From this:

"min.row.count.to.stream.results": "0"

to this:

"min.row.count.to.stream.results": "1000"

When the property is set to 0, results are streamed. Somehow for a rather large table this resulted into the mentioned error. LOAD DATA LOCAL INFILE but functionality is disabled at client by 'allowLoadLocalInfile' being set to 'false'

I don't know the exact reason why this fails for a large table at mariadb, but at least the problem is solved.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...