https://delta.io logo
r

rtyler

05/10/2023, 4:56 AM
Any of you have a Windows machine available to try to test my pull request, CI keeps getting
fatal error LNK1180: insufficient disk space to complete link
which I cannot reproduce on *nix.
there's nothing here that I think should be failing windows: https://github.com/delta-io/delta-rs/pull/1226 So i'm guessing something fishy is going on
w

Will Jones

05/10/2023, 5:28 AM
Maybe we need to clear the cache if that’s taking up a lot of disk space
👍 1
r

Robert

05/10/2023, 7:03 AM
Clearing the caches usually works for me… Would be great if we find a way to mitigate this, but I am not sure if the caches for windows just grow differently then others, or if the windows machines are just more constrained (may due to windows taking up more space?). But somehow ogther runners seems to not care about that …
r

rtyler

05/10/2023, 5:13 PM
well today is not a good day to debug failed actions https://www.githubstatus.com/incidents/pr3498h3qkfy
I will remove the cache and test, but I think there's definitely something fishy about our build, it looks like there's a lot of copies of object files being created in
target/
, look at this command for example:
Copy code
= note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.35.32215\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcDY8K5b\\symbols.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.12wtr4byc1kmxkvs.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.15dq8myxsy1lqg43.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.17bjr1otwjvro78u.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1b13c4c3t3c5oeu3.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1bq346ncicmhcvvc.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1bx676425bfjo2v0.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1dllhnckm8ls0jdz.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1drc87vh1tkhkh53.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1h4fbkb0qkz7qb5x.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1jhaczs9fysm43pw.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1k29gmziccwrwns3.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1kf8lyzsqycrtloz.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1odnemntgj5bfgto.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1p6k8hh54plu8o2f.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1tnd9f5keisdtepv.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.1xb8zakie195o7nn.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.20k8aqn2uwak2ch.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.21wx0awn1bkw5guu.rcgu.o" "D:\\a\\delta-rs\\delta-rs\\target\\debug\\deps\\add_actions_test-9c369872c4cc6975.26vc1l3c4tbwpb49.rcgu.o" 

------8<------8<-----
snipped a lot of redundancies
------8<------8<-----

  = note: LINK : fatal error LNK1318: Unexpected PDB error; FILE_SYSTEM (3) 'D:\a\delta-rs\delta-rs\target\debug\deps\add_actions_test-9c369872c4cc6975.pdb'
I have actually seen similar behavior when I put my
target/
directory on a ramdisk, somehow it would exhaust all available memory in some cases.
no joy on the cache cleaning 😕
😢 1
r

Robert

05/11/2023, 9:04 AM
cleared all caches and re-ran the jobs on main.
seemed to have passed. but the issue remains, why are the win jobs so resource hungry…
r

rtyler

05/11/2023, 3:03 PM
@Robert where did you clear caches? I would like to know that for the future too
r

Robert

05/11/2023, 3:19 PM
Screenshot 2023-05-11 at 17.19.26.png
then “caches” on the lower left.
and I mostly jsut clear the entire list of chaches
r

rtyler

05/11/2023, 3:31 PM
ah, I was thinking it was somewhere in Settings for the repo, thanks
👍 1