@@ -416,47 +416,49 @@ def __iter__(self):
416
416
417
417
def _fetch (self ):
418
418
# Create fetch request payloads for all the partitions
419
- requests = []
420
- partitions = self .fetch_offsets .keys ()
419
+ partitions = dict (( p , self . buffer_size )
420
+ for p in self .fetch_offsets .keys () )
421
421
while partitions :
422
- for partition in partitions :
422
+ requests = []
423
+ for partition , buffer_size in partitions .iteritems ():
423
424
requests .append (FetchRequest (self .topic , partition ,
424
425
self .fetch_offsets [partition ],
425
- self . buffer_size ))
426
+ buffer_size ))
426
427
# Send request
427
428
responses = self .client .send_fetch_request (
428
429
requests ,
429
430
max_wait_time = int (self .fetch_max_wait_time ),
430
431
min_bytes = self .fetch_min_bytes )
431
432
432
- retry_partitions = set ()
433
+ retry_partitions = {}
433
434
for resp in responses :
434
435
partition = resp .partition
436
+ buffer_size = partitions [partition ]
435
437
try :
436
438
for message in resp .messages :
437
439
# Put the message in our queue
438
440
self .queue .put ((partition , message ))
439
441
self .fetch_offsets [partition ] = message .offset + 1
440
442
except ConsumerFetchSizeTooSmall :
441
443
if (self .max_buffer_size is not None and
442
- self . buffer_size == self .max_buffer_size ):
444
+ buffer_size == self .max_buffer_size ):
443
445
log .error ("Max fetch size %d too small" ,
444
446
self .max_buffer_size )
445
447
raise
446
448
if self .max_buffer_size is None :
447
- self . buffer_size *= 2
449
+ buffer_size *= 2
448
450
else :
449
- self . buffer_size = max (self . buffer_size * 2 ,
450
- self .max_buffer_size )
451
+ buffer_size = max (buffer_size * 2 ,
452
+ self .max_buffer_size )
451
453
log .warn ("Fetch size too small, increase to %d (2x) "
452
- "and retry" , self . buffer_size )
453
- retry_partitions . add ( partition )
454
+ "and retry" , buffer_size )
455
+ retry_partitions [ partition ] = buffer_size
454
456
except ConsumerNoMoreData as e :
455
457
log .debug ("Iteration was ended by %r" , e )
456
458
except StopIteration :
457
459
# Stop iterating through this partition
458
460
log .debug ("Done iterating over partition %s" % partition )
459
- partitions = retry_partitions
461
+ partitions = retry_partitions
460
462
461
463
def _mp_consume (client , group , topic , chunk , queue , start , exit , pause , size ):
462
464
"""
0 commit comments