20 lines
393 B
Go
Raw Permalink Normal View History

package implrawdataexport
import (
"time"
)
const (
// Row Limits
MaxExportRowCountLimit = 50_000 // 50k
DefaultExportRowCountLimit = 10_000 // 10k
// Data Limits
MaxExportBytesLimit = 10 * 1024 * 1024 * 1024 // 10 GB
// Query Limits
ChunkSize = 5_000 // 5k
ClickhouseExportRawDataMaxThreads = 2
ClickhouseExportRawDataTimeout = 10 * time.Minute
)