yihua commented on issue #5482: URL: https://github.com/apache/hudi/issues/5482#issuecomment-1115347064
@parisni Could you also provide the steps, commands, and code that do the ingestion, e.g., Deltastreamer, Spark datasource or Spark SQL? Also, do the timeouts prevent the ingestion from proceeding? Could you also search the logs to see what requests are sent to `192.168.1.61:33361`? These are timeline server requests, and they are retried automatically. Given that the metadata table is enabled and async table services are enabled as well (`hoodie.clean.async=true`), the following configs need to be added. The full guide is [here](https://hudi.apache.org/docs/metadata). ``` hoodie.write.concurrency.mode=optimistic_concurrency_control hoodie.cleaner.policy.failed.writes=LAZY hoodie.write.lock.provider=<lock provider name depending on deployment model> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
