promql-engine icon indicating copy to clipboard operation
promql-engine copied to clipboard

plan: add test for bug in distributed engine

Open MichaHoffmann opened this issue 5 months ago • 0 comments

The actually generated plan is:

group by (region) (
  dedup(
    remote(group by (region) (foo)),
    remote(group by (region) (foo)))
) * on (region) bar`,

which means that "bar" is fetched with Series API not as remote query.

MichaHoffmann avatar Jul 25 '25 10:07 MichaHoffmann