Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Ajay Pal BhullarAjay Pal BhullarReporter
Sitaram VemulapalliSitaram VemulapalliIs this a Regression?
NoTriage
UntriagedStory Points
1Priority
MinorInstabug
Open Instabug
Details
Details
Assignee
Ajay Pal Bhullar
Ajay Pal BhullarReporter
Sitaram Vemulapalli
Sitaram VemulapalliIs this a Regression?
No
Triage
Untriaged
Story Points
1
Priority
Instabug
Open Instabug
PagerDuty
PagerDuty
PagerDuty
Sentry
Sentry
Sentry
Zendesk Support
Zendesk Support
Zendesk Support
Created October 7, 2022 at 4:50 PM
Updated March 8, 2023 at 2:51 AM
Resolved December 7, 2022 at 4:53 PM
Basically we are seeing that this insert does not trigger a memory quota exceeded
empty bucket default
curl -v -u Administrator:password http://172.23.104.110:8093/query/service -d 'statement=insert into default (key, value) values("1", { "abcd": { "def": repeat("abcd", 29990), "arr": array_repeat(repeat("efgh", 1000), 5000)}}) returning *&memory_quota=1'
but if we do select * from default; where the only document is above, we are seeing the memory quota is exceeded, but the returning in insert will return the exact same document
insert into default (key a, value v ) select a, { "abcd": { "def": repeat("abcd", 29990), "arr": array_repeat(repeat("efgh", 1000), 5000)}} as v from ["1"] as a returning abcd.def ;
this does trigger memory quota error