postgres: increase record batch size (#3708)

This commit is contained in:
Caleb Doxsey 2022-10-26 07:40:13 -06:00 committed by GitHub
parent 30bdae3d9e
commit 1b596115e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ import (
"github.com/pomerium/pomerium/pkg/storage"
)
const recordBatchSize = 64
const recordBatchSize = 4 * 1024
type recordStream struct {
backend *Backend