Fix an issue where maxlag partition is selected badly

This commit is contained in:
Todd Palino 2016-05-02 22:19:30 -07:00
Родитель f7ce5a3e5a
Коммит 58bb3b3e3f
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
## X.Y.Z (TBD)
Bugfixes:
- Fix an issue where maxlag partition is selected badly
## 0.1.1 (2016-05-01)
Features:

Просмотреть файл

@ -510,6 +510,7 @@ func (storage *OffsetStorage) evaluateGroup(cluster string, group string, result
// Check if this partition is the one with the most lag currently
if lastOffset.Lag > maxlag {
status.Maxlag = thispart
maxlag = lastOffset.Lag
}
status.TotalLag += uint64(lastOffset.Lag)