postgres: increase record batch size

This commit is contained in:
Caleb Doxsey 2022-10-26 06:40:40 -06:00
parent 30bdae3d9e
commit 8ae9f45ce0

View file

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