Jacob Champion

Results 21 comments of Jacob Champion

@DimCitus I picked this back up and attempted to rebase it on top of the `--disable-monitor` features in #494. Unfortunately, the code that has the bug under test is inside...

@DimCitus Looks like those regression tests aren't currently passing; `git bisect` shows 3d6f4af introduced the failures.

> This somewhat increases the overhead and decreases some of the utility of `sendfile`. Agreed. But I think the ability to send large resources from disk without buffering them in...

Ugh... that is an excellent point. The danger of doing my development work in plaintext is that I sometimes forget that browers don't speak it... So, for now, such a...

@jayadevanm With #63 merged, the utility no longer uses `lib/pq` under the hood. Can you rebuild with the most recent commit and see if this solves your issue?

@hjfeldy Thanks for the report. It looks like the utility doesn't play well with the `HEADER` option you've specified -- Postgres will ignore the first line from every chunk, which...

This utility uses the [`COPY FROM`](https://www.postgresql.org/docs/current/sql-copy.html) command to do its work, so in general the incoming CSV needs to follow those conventions: > The values in each record are separated...

Is an unzip pipeline helpful enough? E.g. ``` $ gunzip my-data.czv.gz | timescaledb-parallel-copy ... ``` This will unzip only enough to fill up the OS buffer and then it'll wait...

https://github.com/timescale/timescaledb/actions/runs/4175600633/jobs/7230752287 ``` diff -u /home/runner/work/timescaledb/timescaledb/test/expected/telemetry.out /home/runner/work/timescaledb/timescaledb/build/test/results/telemetry.out --- /home/runner/work/timescaledb/timescaledb/test/expected/telemetry.out 2023-02-14 15:55:07.734285219 +0000 +++ /home/runner/work/timescaledb/timescaledb/build/test/results/telemetry.out 2023-02-14 16:01:35.772586411 +0000 @@ -42,7 +42,7 @@ SELECT _timescaledb_internal.test_status_ssl(400); ERROR: endpoint sent back unexpected HTTP status: 400...

@ReaperGun It's a little more convoluted, but you should be able to achieve the same result with a combination of `-skip-header`, `-header-line-count` and `-limit`. For example, if you have a...