aboutsummaryrefslogtreecommitdiff
path: root/test/kafka/kafka-client-loadtest/tools/JavaProducerTest.java
blob: e9898d5f070c4b54981b26f8f6877c350cb3a605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.ProducerConfig;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.kafka.clients.producer.RecordMetadata;
import org.apache.kafka.common.serialization.StringSerializer;

import java.util.Properties;
import java.util.concurrent.Future;

public class JavaProducerTest {
    public static void main(String[] args) {
        String bootstrapServers = args.length > 0 ? args[0] : "localhost:9093";
        String topicName = args.length > 1 ? args[1] : "test-topic";

        System.out.println("Testing Kafka Producer with broker: " + bootstrapServers);
        System.out.println("    Topic: " + topicName);

        Properties props = new Properties();
        props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers);
        props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName());
        props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName());
        props.put(ProducerConfig.CLIENT_ID_CONFIG, "java-producer-test");
        props.put(ProducerConfig.ACKS_CONFIG, "1");
        props.put(ProducerConfig.RETRIES_CONFIG, 0);
        props.put(ProducerConfig.MAX_BLOCK_MS_CONFIG, 10000);

        System.out.println("Creating Producer with config:");
        props.forEach((k, v) -> System.out.println("  " + k + " = " + v));

        try (KafkaProducer<String, String> producer = new KafkaProducer<>(props)) {
            System.out.println("Producer created successfully");

            // Try to send a test message
            System.out.println("\n=== Test: Send Message ===");
            try {
                ProducerRecord<String, String> record = new ProducerRecord<>(topicName, "key1", "value1");
                System.out.println("Sending record to topic: " + topicName);
                Future<RecordMetadata> future = producer.send(record);

                RecordMetadata metadata = future.get(); // This will block and wait for response
                System.out.println("Message sent successfully!");
                System.out.println("  Topic: " + metadata.topic());
                System.out.println("  Partition: " + metadata.partition());
                System.out.println("  Offset: " + metadata.offset());
            } catch (Exception e) {
                System.err.println("Send failed: " + e.getMessage());
                e.printStackTrace();

                // Print cause chain
                Throwable cause = e.getCause();
                int depth = 1;
                while (cause != null && depth < 5) {
                    System.err.println(
                            "  Cause " + depth + ": " + cause.getClass().getName() + ": " + cause.getMessage());
                    cause = cause.getCause();
                    depth++;
                }
            }

            System.out.println("\nTest completed!");

        } catch (Exception e) {
            System.err.println("Producer creation or operation failed: " + e.getMessage());
            e.printStackTrace();
            System.exit(1);
        }
    }
}