I am currently using VoltDB kafka importer
to import data from multiple kafka
topics. I am facing performance issue with the loader.
I read the VoltDB
documentation but unable to find how to fine tune the importer.
How can specify specific partition of topic?
My current setup
6 nodes of VoltDB cluster and Kafka importers on the nodes with custom procedure for insert.
Kafka importer config
Host: 172.x.x.x:9092
Topic: mytopic_1,mytopic_2,...mytopic_10
Procedure: tinsert
Create procedure tinsert INSERT INTO tinsert (sensor_id, column2, column3, received_time) VALUES (?, ?, ?,now());
Table is partitioned and partition key is sensor_id
The problem is importer is not pulling data as fast as it is generated.
Message publication rate is 10,000 records per sec
Any help would be appreciated.