Files
signoz/pkg/modules/rawdataexport/implrawdataexport/constants.go
Vikrant Gupta 2163e1ce41 chore(lint): enable godot and staticcheck (#10775)
* chore(lint): enable godot and staticcheck

* chore(lint): merge main and fix new lint issues in main
2026-03-31 09:11:49 +00:00

20 lines
396 B
Go

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
)