2024-10-03 12:40:46 +05:30
|
|
|
package elasticstream
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Host string
|
|
|
|
// map of index name and position from where data is to be read.
|
2024-10-03 14:04:17 +05:30
|
|
|
Indexes []string
|
2024-10-03 12:40:46 +05:30
|
|
|
BatchSize int
|
2024-10-03 21:34:57 +05:30
|
|
|
DBPath string
|
2024-10-03 12:40:46 +05:30
|
|
|
}
|