Skip to content

Commit 2f401c6

Browse files
committed
[FAB-8570] Reduce log severity if existing block added
Gossip enqueues blocks into the payload buffer via different mechanisms: State transfer anti-entropy Pull Push Whenever an attempt to add a block to the payload buffer which was already added before by some other pathway - a warning is logged. I think we should make that warning a debug, since it's not something that users should be worried about. Change-Id: Ia735473e33ddff3f8787c121f39a6d15e54baa04 Signed-off-by: yacovm <yacovm@il.ibm.com>
1 parent 318bff3 commit 2f401c6

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

gossip/state/payloads_buffer.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ SPDX-License-Identifier: Apache-2.0
77
package state
88

99
import (
10-
"strconv"
1110
"sync"
1211
"sync/atomic"
1312

1413
"github.com/hyperledger/fabric/gossip/util"
1514
proto "github.com/hyperledger/fabric/protos/gossip"
1615
"github.com/op/go-logging"
17-
"github.com/pkg/errors"
1816
)
1917

2018
// PayloadsBuffer is used to store payloads into which used to
@@ -23,7 +21,7 @@ import (
2321
// to signal whenever expected block has arrived.
2422
type PayloadsBuffer interface {
2523
// Adds new block into the buffer
26-
Push(payload *proto.Payload) error
24+
Push(payload *proto.Payload)
2725

2826
// Returns next expected sequence number
2927
Next() uint64
@@ -75,15 +73,15 @@ func (b *PayloadsBufferImpl) Ready() chan struct{} {
7573
// Push new payload into the buffer structure in case new arrived payload
7674
// sequence number is below the expected next block number payload will be
7775
// thrown away and error will be returned.
78-
func (b *PayloadsBufferImpl) Push(payload *proto.Payload) error {
76+
func (b *PayloadsBufferImpl) Push(payload *proto.Payload) {
7977
b.mutex.Lock()
8078
defer b.mutex.Unlock()
8179

8280
seqNum := payload.SeqNum
8381

8482
if seqNum < b.next || b.buf[seqNum] != nil {
85-
return errors.Errorf("Payload with sequence number = %s has been already processed",
86-
strconv.FormatUint(payload.SeqNum, 10))
83+
logger.Debugf("Payload with sequence number = %d has been already processed", payload.SeqNum)
84+
return
8785
}
8886

8987
b.buf[seqNum] = payload
@@ -95,7 +93,6 @@ func (b *PayloadsBufferImpl) Push(payload *proto.Payload) error {
9593
b.readyChan <- struct{}{}
9694
}()
9795
}
98-
return nil
9996
}
10097

10198
// Next function provides the number of the next expected block

gossip/state/payloads_buffer_test.go

+1-13
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ func TestPayloadsBufferImpl_ConcurrentPush(t *testing.T) {
122122
payload, err := randomPayloadWithSeqNum(nextSeqNum)
123123
assert.NoError(t, err)
124124

125-
var errors []error
126-
127125
ready := int32(0)
128126
readyWG := sync.WaitGroup{}
129127
readyWG.Add(1)
@@ -136,26 +134,16 @@ func TestPayloadsBufferImpl_ConcurrentPush(t *testing.T) {
136134

137135
for i := 0; i < concurrency; i++ {
138136
go func() {
137+
buffer.Push(payload)
139138
startWG.Wait()
140-
errors = append(errors, buffer.Push(payload))
141139
finishWG.Done()
142140
}()
143141
}
144142
startWG.Done()
145143
finishWG.Wait()
146144

147-
success := 0
148-
149-
// Only one push attempt expected to succeed
150-
for _, err := range errors {
151-
if err == nil {
152-
success++
153-
}
154-
}
155-
156145
readyWG.Wait()
157146
assert.Equal(t, int32(1), atomic.LoadInt32(&ready))
158-
assert.Equal(t, 1, success)
159147
// Buffer size has to be only one
160148
assert.Equal(t, 1, buffer.Size())
161149
}

gossip/state/state.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ func (s *GossipStateProviderImpl) addPayload(payload *proto.Payload, blockingMod
765765
time.Sleep(enqueueRetryInterval)
766766
}
767767

768-
return s.payloads.Push(payload)
768+
s.payloads.Push(payload)
769+
return nil
769770
}
770771

771772
func (s *GossipStateProviderImpl) commitBlock(block *common.Block, pvtData util.PvtDataCollections) error {

0 commit comments

Comments
 (0)