Kafka js
Skill ComeOnOliver/skillshub/skills/TerminalSkills/skills/kafka-js
π§ The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill kafka-jsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
3.9 KB, as published. Nobody here has run it
KafkaJS β Apache Kafka Client for Node.js
You are an expert in KafkaJS, the pure JavaScript Apache Kafka client for Node.js. You help developers build event-driven architectures with producers, consumers, consumer groups, exactly-once semantics, SASL authentication, and admin operations β processing millions of events per second for real-time analytics, event sourcing, log aggregation, and microservices communication.
Core Capabilities
Producer
import { Kafka, Partitioners, CompressionTypes } from "kafkajs";
const kafka = new Kafka({
clientId: "my-app",
brokers: ["kafka1:9092", "kafka2:9092", "kafka3:9092"],
ssl: true,
sasl: { mechanism: "plain", username: process.env.KAFKA_USER!, password: process.env.KAFKA_PASS! },
retry: { initialRetryTime: 300, retries: 10 },
});
const producer = kafka.producer({
createPartitioner: Partitioners.DefaultPartitioner,
idempotent: true, // Exactly-once delivery
transactionalId: "order-service",
});
await producer.connect();
// Send single message
await producer.send({
topic: "orders",
messages: [
{
key: order.userId, // Same user β same partition β ordered
value: JSON.stringify({ type: "order.created", data: order }),
headers: { "correlation-id": requestId, "source": "order-service" },
},
],
compression: CompressionTypes.GZIP,
});
// Transactional send (atomic multi-topic)
const transaction = await producer.transaction();
try {
await transaction.send({ topic: "orders", messages: [{ key: order.id, value: JSON.stringify(order) }] });
await transaction.send({ topic: "notifications", messages: [{ key: order.userId, value: JSON.stringify(notification) }] });
await transaction.commit();
} catch (err) {
await transaction.abort();
}
Consumer
const consumer = kafka.consumer({
groupId: "order-processor",
sessionTimeout: 30000,
heartbeatInterval: 3000,
maxBytesPerPartition: 1048576, // 1MB per partition fetch
});
await consumer.connect();
await consumer.subscribe({ topics: ["orders", "payments"], fromBeginning: false });
await consumer.run({
eachMessage: async ({ topic, partition, message }) => {
const event = JSON.parse(message.value!.toString());
switch (topic) {
case "orders":
await processOrder(event);
break;
case "payments":
await processPayment(event);
break;
}
},
});
// Batch processing for throughput
await consumer.run({
eachBatch: async ({ batch, resolveOffset, heartbeat }) => {
for (const message of batch.messages) {
await processMessage(message);
resolveOffset(message.offset);
await heartbeat(); // Prevent session timeout on long batches
}
},
});
// Graceful shutdown
const shutdown = async () => {
await consumer.disconnect();
await producer.disconnect();
process.exit(0);
};
process.on("SIGTERM", shutdown);
Installation
npm install kafkajs
Best Practices
- Idempotent producer β Enable
idempotent: truefor exactly-once delivery; prevents duplicate messages on retries - Key-based partitioning β Use message keys (userId, orderId) to ensure related events go to the same partition (ordered)
- Consumer groups β Add more consumers to a group for horizontal scaling; Kafka auto-rebalances partitions
- Manual offset commits β Commit offsets after processing, not before; prevents data loss on consumer crashes
- Heartbeat in batches β Call
heartbeat()during long batch processing to prevent session timeout - Dead-letter topics β Send failed messages to a DLT (
topic.DLT) after retries; don't block the consumer - Schema validation β Use Avro/Protobuf with Schema Registry for strong typing across producers/consumers
- Compression β Use GZIP or LZ4 compression; reduces network bandwidth 60-80% for JSON payloads