You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a parquet file(78mb),and create a table in duckDB,but throw error Out of Memory,so i set temp_directory = '/tmp/duckdb-tmp' .but throw error tried to read past the endwhen i use group by
c.query("SET temp_directory = '/tmp/duckdb-tmp'")
await c.query('CREATE TABLE dm_machine_part_recommendation_ap AS SELECT * FROM read_parquet(\'data.parquet\')')
const result = await c.query('select region,sub_region,segment,count(1) from "dm_machine_part_recommendation_ap" group by region,sub_region,segment order by region desc')
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a parquet file(78mb),and create a table in duckDB,but throw error Out of Memory,so i
set temp_directory = '/tmp/duckdb-tmp'
.but throw errortried to read past the end
when i usegroup by
c.query("SET temp_directory = '/tmp/duckdb-tmp'")
await c.query('CREATE TABLE dm_machine_part_recommendation_ap AS SELECT * FROM read_parquet(\'data.parquet\')')
const result = await c.query('select region,sub_region,segment,count(1) from "dm_machine_part_recommendation_ap" group by region,sub_region,segment order by region desc')
Beta Was this translation helpful? Give feedback.
All reactions