Re: JSON out of memory error on PostgreSQL 9.6.x - Mailing list pgsql-general

From Yuri Budilov
Subject Re: JSON out of memory error on PostgreSQL 9.6.x
Date
Msg-id DM5PR13MB175560E8AD15E320C025EB72993C0@DM5PR13MB1755.namprd13.prod.outlook.com
Whole thread Raw
In response to Re: JSON out of memory error on PostgreSQL 9.6.x  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
thank you, I will look into the work-around ! ________________________________ From: Tom Lane Sent: Monday, 4 December 2017 11:39 AM To: Yuri Budilov Cc: rob stone; pgsql-general@lists.postgresql.org Subject: Re: JSON out of memory error on PostgreSQL 9.6.x Yuri Budilov writes: > The out-of-memory error happens if I also retrieve another JSON Column like so: > CREATE TABLE csnbi_stg.junk4 > AS > SELECT > json_rmq->>'totalSize' as totalSize, -- this plus array below causes out of memory error > json_array_elements(json_rmq -> 'orders'::text) AS orders > FROM csnbi_stg.stg_rmq_prod_test_json_raw_jmcn stg_rmq_json_raw Ah. The problem here is that "json_rmq->>'totalSize'" leaks some memory on each execution, and it's executed again for each row produced by the json_array_elements() SRF, and the memory can't be reclaimed until we've finished the full output cycle for the SRF. So the leakage (which is more or less of the size of the JSON value, I think) accumulates across 150K executions in this example. This is fixed as of v10. It seems impractical to do anything about it in previous release branches, although you could reformulate your query to avoid it by not having any other expression evaluations occurring in the same tlist as the SRF. Something like this should work: SELECT totalSize, json_array_elements(json_rmq -> 'orders'::text) AS orders FROM (SELECT json_rmq->>'totalSize' as totalSize, json_rmq FROM csnbi_stg.stg_rmq_prod_test_json_raw_jmcn stg_rmq_json_raw WHERE ... OFFSET 0) ss; regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: JSON out of memory error on PostgreSQL 9.6.x
Next
From: Michael Paquier
Date:
Subject: Re: JSON out of memory error on PostgreSQL 9.6.x