0Pricing
Advanced Spring Boot 4: Event-Driven Architecture (Kafka) · Leçon

Personnaliser les configurations des producteurs

Explorez différentes configurations de producteurs, comme les accusés de réception, la taille des lots, linger.ms et les nouvelles tentatives, afin d’optimiser les performances et la fiabilité.

Personnaliser les configurations des producteurs est une leçon Advanced Spring Boot 4: Event-Driven Architecture (Kafka) gratuite sur CoddyKit. Ceci est la leçon 3 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Advanced Spring Boot 4: Event-Driven Architecture (Kafka), et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Advanced Spring Boot 4: Event-Driven Architecture (Kafka) comprend 4 leçons au total.

Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.

Why Customize Producer Settings?

When sending messages to Kafka, default settings might not always be ideal. Customizing your producer's configuration is key to optimizing for specific needs.

You can fine-tune your producer for better performance, increased reliability, or optimized throughput, depending on your application's requirements.

Configuring in Spring Boot

In Spring Boot, Kafka producer properties are typically defined in your application.yml (or .properties) file.

All producer-related settings usually start with the prefix spring.kafka.producer. Spring Boot automatically picks these up to configure your KafkaTemplate.

spring:
  kafka:
    bootstrap-servers: localhost:9092
    producer:
      key-serializer: org.apache.kafka.common.serialization.StringSerializer
      value-serializer: org.apache.kafka.common.serialization.StringSerializer
      # Custom configurations go here

Acknowledgments (`acks`)

The acks (acknowledgments) property determines the level of durability for messages sent by the producer. It controls how many replicas must acknowledge the write before the producer considers the message sent successfully.

  • acks=0: Producer doesn't wait for any acknowledgment. Fastest, but lowest durability (messages might be lost).
  • acks=1: Producer waits for the leader replica to acknowledge the write. Good balance of durability and speed.
  • acks=all: Producer waits for all in-sync replicas to acknowledge. Highest durability, but slowest.

Setting `acks=all`

For critical messages where data loss is unacceptable, you'd typically set acks to all. This ensures that your message is safely replicated before the producer moves on.

Remember, higher durability often means slightly higher latency.

spring:
  kafka:
    producer:
      acks: all # Ensures high durability
      # Other producer configs

Batching: `batch.size` & `linger.ms`

To improve throughput, Kafka producers don't send every message individually. Instead, they batch multiple messages together.

  • batch.size: The maximum amount of data (in bytes) that will be collected before sending a batch. Default is 16KB.
  • linger.ms: The maximum time (in milliseconds) the producer will wait for more messages to accumulate in a batch. Default is 0ms (send immediately).

These two properties work together: a batch is sent when either batch.size is reached OR linger.ms expires.

Optimizing Batch Settings

Adjusting batch.size and linger.ms can significantly impact performance. Larger batches and longer linger times can increase throughput but also slightly increase latency for individual messages.

Here's how you might configure them for better batching:

spring:
  kafka:
    producer:
      batch-size: 32768 # 32 KB (larger batch)
      linger-ms: 50     # Wait up to 50ms (longer wait)
      # Other producer configs

Retries (`retries`)

What happens if a message fails to send due to a transient network issue or a temporary broker unavailability?

The retries property specifies how many times the producer should re-attempt sending a message that failed due to a potentially recoverable error. This greatly enhances the reliability of your message delivery.

Setting `retries`

Setting a reasonable number of retries helps ensure your messages eventually reach Kafka, even if there are temporary glitches.

It's often combined with delivery.timeout.ms, which defines the total time a producer will wait for a message to be delivered, including retries.

spring:
  kafka:
    producer:
      retries: 5 # Try up to 5 times on failure
      delivery-timeout-ms: 120000 # 2 minutes total timeout
      # Other producer configs

Custom Producer in Action

While Spring Boot handles the underlying Kafka client configuration based on your application.yml, let's see how these properties are set directly in a Java Kafka producer. This helps understand the core mechanism.

This example explicitly configures and uses a Kafka producer:

import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.ProducerRecord;
import java.util.Properties;

public class CustomProducerDemo {
    public static void main(String[] args) {
        Properties props = new Properties();
        props.put("bootstrap.servers", "localhost:9092");
        props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
        props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");

        // Custom configurations we discussed
        props.put("acks", "all");
        props.put("batch.size", 32768);
        props.put("linger.ms", 50);
        props.put("retries", 5);

        try (KafkaProducer<String, String> producer = new KafkaProducer<>(props)) {
            producer.send(new ProducerRecord<>("custom-topic", "key1", "Hello from CoddyKit!"));
            producer.send(new ProducerRecord<>("custom-topic", "key2", "Another custom message!"));
            producer.flush(); // Ensure all buffered records are sent
            System.out.println("Messages sent with custom configurations.");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

Check Your Knowledge

You've learned about several key producer configurations. Let's test your understanding!

Recap: Customizing Producers

Great job! You've explored how to customize your Kafka producers for various needs:

  • acks: Controls message durability.
  • batch.size & linger.ms: Optimize for throughput by batching messages.
  • retries: Enhances reliability by re-sending failed messages.

By understanding and adjusting these properties, you can tailor your Spring Boot Kafka applications to meet specific performance and reliability goals. Next, we'll dive into implementing Kafka consumers!

Questions Fréquemment Posées

La leçon « Personnaliser les configurations des producteurs » est-elle gratuite ?

Oui — le texte complet de « Personnaliser les configurations des producteurs » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Advanced Spring Boot 4: Event-Driven Architecture (Kafka), passe à CoddyKit PRO. Le cours Advanced Spring Boot 4: Event-Driven Architecture (Kafka) comprend 4 leçons au total.

Qu'est-ce que j'apprendrai dans « Personnaliser les configurations des producteurs » ?

Explorez différentes configurations de producteurs, comme les accusés de réception, la taille des lots, linger.ms et les nouvelles tentatives, afin d’optimiser les performances et la fiabilité. Tu pratiques Advanced Spring Boot 4: Event-Driven Architecture (Kafka) avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.

Dois-je avoir de l'expérience pour commencer Advanced Spring Boot 4: Event-Driven Architecture (Kafka) ?

Aucune expérience préalable n'est requise. Advanced Spring Boot 4: Event-Driven Architecture (Kafka) sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 3 sur 4.

Combien de temps prend la leçon « Personnaliser les configurations des producteurs » ?

La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.

Peux-tu écrire et exécuter du code dans cette leçon Advanced Spring Boot 4: Event-Driven Architecture (Kafka) ?

Oui. Chaque leçon Advanced Spring Boot 4: Event-Driven Architecture (Kafka) inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.

Toutes les leçons de ce cours

  1. Intégrer Spring Kafka Starter
  2. Envoyer des messages avec KafkaTemplate
  3. Personnaliser les configurations des producteurs
  4. Gérer les rappels d’envoi et les accusés de réception des producteurs
← Retour à Advanced Spring Boot 4: Event-Driven Architecture (Kafka)