Valery Meleshkin
Valery Meleshkin
Having a weird segfault when building our extension under CentOS 7: `cargo pgx schema pg14 --out sql/promscale--0.5.0.sql --release` fails right after it outputs ``` Discovered 32 SQL entities: 8 schemas...
Adding a flag that forces `CREATE OR REPLACE FUNCTION` statements instead of plain `CREATE FUNCTION` statements pgx now produces by default. The new default (#554) is potentially less destructive to...
When `hackney` consumes a chunked response, it always waits until an entire chunk is available before sending it to a client process even when used asynchronously. I do understand why...
When `hackney` fetches a chunked response, it uses the very same binary to [accumulate incoming data](https://github.com/benoitc/hackney/blob/master/src/hackney_http.erl#L138) and [match for a chunk size](https://github.com/benoitc/hackney/blob/master/src/hackney_http.erl#L481). In general, it is a [clearly documented anti-pattern](http://erlang.org/doc/efficiency_guide/binaryhandling.html#id66216)...
## Description Adding two more metric types from #492 ## Merge requirements Please take into account the following non-code changes that you may need to make with your PR: -...
The idea here is to redirect maintenance jobs logs into a (hyper)table while bypassing the transaction control using the mechanism built for https://github.com/timescale/promscale_extension/issues/495. Alternatively, and at the very least, logging...
While working on https://github.com/timescale/promscale/pull/1634, we discovered that some queries on the metrics retention code path could be significantly sped up. ```SQL WITH conf AS MATERIALIZED (SELECT _prom_catalog.get_default_retention_period() AS def_retention) SELECT...
It appears to be a holdover from before we switched to `tag_map` + support functions (#189 and follow-ups). - `migration/idempotent/002-tag-operators.sql` defines a bunch of functions. Probably can remove entirely. -...
A follow up to https://github.com/timescale/promscale/issues/748 With the focus on list partitioning and isolating hot entries.