kvc0

Results 16 comments of kvc0

> For now I would suggest following this example #968 this will currently work with `tonic 0.7`. The future plan for tonic is to actually remove the `transport` module. I...

#1005 does not adequately address this issue. Extended table write outages are not really an option in cases like mine, and I can not know which indexes I will need...

@JLockerman just to check my assumptions, this is in fact an issue right? I notice this is exactly the same query pattern [as the docs show.](https://docs.timescale.com/timescaledb/latest/how-to-guides/hyperfunctions/counter-aggregation/counter-aggs/) Specifically this query from...

I'm trying to get a tdigest into timescaledb: ``` DbError { severity: "ERROR", parsed_severity: Some(Error), code: SqlState(E42883), message: "no binary input function available for type tdigest", detail: None, hint: None,...

@epgts I am glad to hear it! I used unwrap all the time at first until I got a little more understanding. I think a lot of this is also...

I've been unable to produce a repro script. I do not know what manner of data poisons the planner thusly. There are no null values or anything particularly interesting among...

``` postgres=# EXPLAIN SELECT time_bucket('1m', time), count(total_measurement) FROM metrics WHERE time between '2020-11-10T12:58Z' and '2020-11-10T18:43:01Z' AND item = '15660' GROUP BY 1 ; ERROR: could not find pathkey item to...

For a workaround instead of `$__timeFilter(“time”)` try `time between $__timeFrom()::timestamptz and $__timeTo()::timestamptz`.

@edsinclair Are you using `timestamp with time zone` for metrics.ts? Try your original query but use ``` WHERE [...] AND "metrics"."ts" BETWEEN '2020-12-01T19:21:20'::timestamptz AND '2020-12-01T19:42:40'::timestamptz ```

@erimatnor Thank you for the fix!