Monitoring Topics
On the Topics page, you can:- View all topics, their volume, error counts, and event counts at a glance
- Drill into a topic to see message offsets, partitions, and recent activity
- Search for topics by name


Performance Tuning
If you are experiencing performance issues or lag, consider the following adjustments:-
Increase maximum poll records
In your Connector’s Settings under Advanced, set the Maximum poll records to a higher value such as25000
,50000
, or80000
—depending on your record sizes. This allows the Destination to fetch more records per poll and can improve throughput. -
Increase topic partitions
On the Topics page, increase the number of partitions for your topic to at leastData consistencyIncreasing the number of partitions for a topic can improve throughput and parallelism, but it must be done carefully to avoid data consistency issues.For most destinations, follow the safe procedure below. However, ClickHouse (via
ReplacingMergeTree
background merging) and Snowflake (using Dynamic Tables/dbt, sorted by_streamkap_ts_ms DESC
,_streamkap_offset DESC
) can safely handle out-of-order records through post-ingestion de-duplication.Safe Partition Increase Procedure:- Stop sources/producers
- Wait for consumer lag to drop to 0
- Stop destinations streaming this topic
- Truncate destination table (Optional - depending on destination)
- Increase topic partitions
- Start sources/producers
- Trigger snapshot (Optional - depending on destination)
- Start destinations
5
. More partitions enable greater parallelism and can help distribute the load more efficiently.Increasing partitions won’t affect existing data but will only apply to new data written to the topic. So high lag may persist on the existing partitions until they are fully processed. -
Increase tasks
In your Connector’s Settings, set the Tasks to a higher value to allow more tasks to process topic partitions in parallel. This can help reduce lag and improve processing speed.
Best Practices
- Monitor topic metrics regularly to detect lag or errors early.
- Adjust partitions and tasks incrementally, monitoring the impact after each change.
- Always follow the safe procedure when increasing partitions, especially for destinations that do not support out-of-order de-duplication.