RT.
now some kafka clients, whether java, python or go, provide the configuration of setting kafka at the client side and code level. However, kafka has its own configuration files. I would like to ask which one will prevail, and if there is a conflict between the two configurations, which one will prevail?
for example, if a configuration item in producer is an acks, client, it is set in the code first, and then this setting is included when sending request. If acks is configured with another option in the producer.proporties file on the kafka side, which option will prevail at this time?
Thank you