Hi! I faced with the error 53400 which corresponds to issue:
SQL Error [53400]: ERROR: tuple decompression limit exceeded by operation
Details: current limit: 100000, tuples decompressed: 106000
Hint: Consider increasing timescaledb.max_tuples_decompressed_per_dml_transaction or set to 0 (unlimited).
I thought that I can upsert data with limit-offset in batches of 10000 records and commit in for-loop after each batch, but I still ran into an error.
What could I do to upsert data correctly without this error?
4 posts - 2 participants