Skip to content

Commit

Permalink
chore(kafka): Added more descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexnortung committed Nov 11, 2024
1 parent fb4dab3 commit d80734e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/modules/services/kafka-connect.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,17 @@ in
"offset.storage.file.filename" = lib.mkOption {
type = types.str;
default = storageFile;
description = ''
The file to store connector offsets in. By storing offsets on disk, a standalone process can be stopped and started on a single node and resume where it previously left off.
'';
};

"offset.flush.interval.ms" = lib.mkOption {
type = types.int;
default = 10000;
description = ''
Interval at which to try committing offsets for tasks
'';
};

"key.converter" = lib.mkOption {
Expand Down

0 comments on commit d80734e

Please sign in to comment.