We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4ef70 commit 4c7a102Copy full SHA for 4c7a102
lib/logstorage/consts.go
@@ -14,6 +14,10 @@ const maxUncompressedBlockSize = 2 * 1024 * 1024
14
const maxRowsPerBlock = 8 * 1024 * 1024
15
16
// maxColumnsPerBlock is the maximum number of columns per block.
17
+//
18
+// It isn't recommended setting this value to too big value, because this may result
19
+// in excess memory usage during data ingestion and significant slowdown during query execution,
20
+// since every column header is unpacked in every matching block during query execution.
21
const maxColumnsPerBlock = 1_000
22
23
// MaxFieldNameSize is the maximum size in bytes for field name.
0 commit comments