We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c756bdc commit a0d284cCopy full SHA for a0d284c
kafka-questdb-connector-samples/faker/index.js
@@ -22,12 +22,12 @@ async function ingest() {
22
lastname: faker.name.lastName(),
23
birthday: faker.date.birthdate({min: year, max: year}),
24
};
25
- batch.push({value: 'JSON.stringify(data)'})
+ batch.push({value: JSON.stringify(data)})
26
}
27
await producer.sendBatch({
28
topicMessages: [
29
{
30
- topic: 'test',
+ topic: 'People',
31
messages: batch
32
}]
33
});
0 commit comments