0

I don't know how to check or increase the memory limitation of duckdb wasm. I'm using chrome and I import some parquet into the browser, one of them has 234Mb of data

I did my research and the limit seems to be 256Mb by default, but i don't know how to increase it.

5
  • Did you read the documented limitations? Commented Sep 25 at 14:54
  • Yes, i read it , but it seems to me that the limitation on my computer is far from 1Gb , that is why I thought there was a way to increase it to Gb. Commented Sep 25 at 14:57
  • "browsers may impose even stricter limits" is also important to note. Commented Sep 25 at 15:05
  • ok thanks you, that is really restrictive Commented Sep 25 at 15:12
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. Commented Sep 25 at 15:30

1 Answer 1

0

Current limitation as of today is 4GB and comes from WASM itself :

https://duckdb.org/docs/stable/clients/wasm/overview.html

You can check your memory limit doing following query :

SELECT current_setting('memory_limit');

Please take also in consideration following warning from duckdb which explains why the actual memory consumption can be higher than the specified memory limit.

https://duckdb.org/docs/stable/configuration/pragmas#resource-management

Sign up to request clarification or add additional context in comments.

1 Comment

ok thank you for the info

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.