@@ -158,21 +158,23 @@ func runTestWriter(ctx context.Context) error {
158
158
return errors .New ("Stopping because of user response" )
159
159
}
160
160
161
+ batchSize := 5
162
+
161
163
writer := kafka .NewWriter (
162
164
kafka.WriterConfig {
163
- Brokers : []string {connector .Config .BrokerAddr },
164
- Dialer : connector .Dialer ,
165
- Topic : testerConfig .topic ,
166
- Balancer : & kafka.LeastBytes {},
167
- Async : true ,
168
- QueueCapacity : 5 ,
169
- BatchSize : 5 ,
165
+ Brokers : []string {connector .Config .BrokerAddr },
166
+ Dialer : connector .Dialer ,
167
+ Topic : testerConfig .topic ,
168
+ Balancer : & kafka.LeastBytes {},
169
+ Async : false ,
170
+ BatchSize : batchSize ,
171
+ BatchTimeout : 1 * time . Nanosecond ,
170
172
},
171
173
)
172
174
defer writer .Close ()
173
175
174
176
index := 0
175
- tickDuration := time .Duration (1000.0 / float64 (testerConfig .writeRate )) * time .Millisecond
177
+ tickDuration := time .Duration (1000.0 / float64 (testerConfig .writeRate / batchSize )) * time .Millisecond
176
178
sendTicker := time .NewTicker (tickDuration )
177
179
logTicker := time .NewTicker (5 * time .Second )
178
180
@@ -183,17 +185,22 @@ func runTestWriter(ctx context.Context) error {
183
185
case <- ctx .Done ():
184
186
return nil
185
187
case <- sendTicker .C :
186
- err := writer .WriteMessages (
187
- ctx ,
188
- kafka.Message {
188
+ msgs := []kafka.Message {}
189
+
190
+ for i := 0 ; i < 5 ; i ++ {
191
+ msgs = append (msgs , kafka.Message {
189
192
Key : []byte (fmt .Sprintf ("msg_%d" , index )),
190
193
Value : []byte (fmt .Sprintf ("Contents of test message %d" , index )),
191
- },
194
+ })
195
+ index ++
196
+ }
197
+ err := writer .WriteMessages (
198
+ ctx ,
199
+ msgs ... ,
192
200
)
193
201
if err != nil {
194
202
return err
195
203
}
196
- index ++
197
204
case <- logTicker .C :
198
205
log .Infof ("%d messages sent" , index )
199
206
}
0 commit comments