Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ func (ext *ExternalStream) Domain() string {

// For managing stream ingest.
const (
streamDefaultMaxQueueMsgs = 10_000
streamDefaultMaxQueueBytes = 1024 * 1024 * 128
streamDefaultMaxQueueMsgs = 100_000
streamDefaultMaxQueueBytes = 128 * 1024 * 1024
)

// For managing stream batches.
Expand Down
Loading