Skip to content

Commit

Permalink
MB-22079. Increase bulkget queue size.
Browse files Browse the repository at this point in the history
Change-Id: I05a032c3d10bf151ab262ba3f8473a6d1b3cefaa
Reviewed-on: http://review.couchbase.org/71190
Reviewed-by: Sitaram Vemulapalli <sitaram.vemulapalli@couchbase.com>
Tested-by: Gerald Sangudi <gerald@couchbase.com>
  • Loading branch information
geraldss committed Dec 21, 2016
1 parent b84c624 commit 18938d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ func InitBulkGet() {
_VB_BULK_GET_CHANNELS = make([]chan *vbBulkGet, _NUM_CHANNELS)

for i := 0; i < _NUM_CHANNELS; i++ {
channel := make(chan *vbBulkGet, 1024*_NUM_CHANNEL_WORKERS)
channel := make(chan *vbBulkGet, 16*1024*_NUM_CHANNEL_WORKERS)
_VB_BULK_GET_CHANNELS[i] = channel

for j := 0; j < _NUM_CHANNEL_WORKERS; j++ {
Expand Down

0 comments on commit 18938d8

Please sign in to comment.