diff --git a/docs/VictoriaLogs/CHANGELOG.md b/docs/VictoriaLogs/CHANGELOG.md index 7aed28ee1..21e7354c7 100644 --- a/docs/VictoriaLogs/CHANGELOG.md +++ b/docs/VictoriaLogs/CHANGELOG.md @@ -18,6 +18,7 @@ according to [these docs](https://docs.victoriametrics.com/victorialogs/quicksta * FEATURE: add support for extra filters across all the [HTTP querying APIs](https://docs.victoriametrics.com/victorialogs/querying/#http-api). See [these docs](https://docs.victoriametrics.com/victorialogs/querying/#extra-filters) for details. This is needed for implementing quick filtering on field values at [this feature request](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/7365). * BUGFIX: properly apply [`replace`](https://docs.victoriametrics.com/victorialogs/logsql/#replace-pipe) and [`replace_regexp`](https://docs.victoriametrics.com/victorialogs/logsql/#replace_regexp-pipe) pipes to identical values in adjacent log entries. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/7162). +* BUGFIX: properly apply [`extract`](https://docs.victoriametrics.com/victorialogs/logsql/#extract-pipe) and [`extract_regexp`](https://docs.victoriametrics.com/victorialogs/logsql/#extract_regexp-pipe) pipe with additional `if (...)` filter (aka [conditional extract](https://docs.victoriametrics.com/victorialogs/logsql/#conditional-extract) and [conditional extract_regexp](https://docs.victoriametrics.com/victorialogs/logsql/#conditional-extract_regexp)). ## [v0.39.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v0.39.0-victorialogs) diff --git a/lib/logstorage/pipe_extract.go b/lib/logstorage/pipe_extract.go index 89f518e31..ec89b15f7 100644 --- a/lib/logstorage/pipe_extract.go +++ b/lib/logstorage/pipe_extract.go @@ -192,13 +192,13 @@ func (pep *pipeExtractProcessor) writeBlock(workerID uint, br *blockResult) { shard.resultValues = slicesutil.SetLength(shard.resultValues, len(rcs)) resultValues := shard.resultValues - hadUpdates := false + needUpdates := true vPrev := "" for rowIdx, v := range values { if bm.isSetBit(rowIdx) { - if !hadUpdates || vPrev != v { + if needUpdates || vPrev != v { vPrev = v - hadUpdates = true + needUpdates = false ptn.apply(v) @@ -219,6 +219,7 @@ func (pep *pipeExtractProcessor) writeBlock(workerID uint, br *blockResult) { for i, c := range resultColumns { resultValues[i] = c.getValueAtRow(br, rowIdx) } + needUpdates = true } for i, v := range resultValues { diff --git a/lib/logstorage/pipe_extract_regexp.go b/lib/logstorage/pipe_extract_regexp.go index 3ce6ee503..2f40d36ad 100644 --- a/lib/logstorage/pipe_extract_regexp.go +++ b/lib/logstorage/pipe_extract_regexp.go @@ -215,13 +215,13 @@ func (pep *pipeExtractRegexpProcessor) writeBlock(workerID uint, br *blockResult shard.resultValues = slicesutil.SetLength(shard.resultValues, len(rcs)) resultValues := shard.resultValues - hadUpdates := false + needUpdates := true vPrev := "" for rowIdx, v := range values { if bm.isSetBit(rowIdx) { - if !hadUpdates || vPrev != v { + if needUpdates || vPrev != v { vPrev = v - hadUpdates = true + needUpdates = false shard.apply(pe.re, v) @@ -246,6 +246,7 @@ func (pep *pipeExtractRegexpProcessor) writeBlock(workerID uint, br *blockResult resultValues[i] = c.getValueAtRow(br, rowIdx) } } + needUpdates = true } for i, v := range resultValues { diff --git a/lib/logstorage/pipe_extract_test.go b/lib/logstorage/pipe_extract_test.go index 740420513..12af5971b 100644 --- a/lib/logstorage/pipe_extract_test.go +++ b/lib/logstorage/pipe_extract_test.go @@ -211,12 +211,20 @@ func TestPipeExtract(t *testing.T) { {"x", `a foo=cc baz=aa b`}, {"bar", "abc"}, }, + { + {"x", `a foo=cc baz=aa b`}, + }, }, [][]Field{ { {"x", `a foo=cc baz=aa b`}, {"bar", `cc`}, {"xx", `aa b`}, }, + { + {"x", `a foo=cc baz=aa b`}, + {"bar", `cc`}, + {"xx", `aa b`}, + }, }) // single row, if mismatch diff --git a/lib/logstorage/pipe_update.go b/lib/logstorage/pipe_update.go index 3ff41e14f..151c302bf 100644 --- a/lib/logstorage/pipe_update.go +++ b/lib/logstorage/pipe_update.go @@ -84,14 +84,14 @@ func (pup *pipeUpdateProcessor) writeBlock(workerID uint, br *blockResult) { c := br.getColumnByName(pup.field) values := c.getValues(br) - hadUpdates := false + needUpdates := true vPrev := "" vNew := "" for rowIdx, v := range values { if bm.isSetBit(rowIdx) { - if !hadUpdates || vPrev != v { + if needUpdates || vPrev != v { vPrev = v - hadUpdates = true + needUpdates = false vNew = pup.updateFunc(&shard.a, v) }