kevinjqliu commented on issue #1429: URL: https://github.com/apache/datafusion-python/issues/1429#issuecomment-4092283451
I ran this on my fork with some debugging logs. I see ``` Out of memory: Killed process 11035 (rustc) total-vm:25086084kB, anon-rss:15361808kB ``` `rustc` consumed ~15GB of memory; basically the whole machine, the runner had about 15.58 GiB total RAM plus 3 GiB swap. The build was happening inside Docker, so once rustc hit that peak during linking/codegen, it got killed. I think the cause is from naturally adding more and more dependencies to the build. We can modify the github job and cargo profile to tune the peak memory. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
