Closed deatinor closed 4 years ago
IIRC, it means that one of your tasks launched a program, which ran into a segmentation fault (signal 11).
@lallea Something similar happened to me. I have a Task that trains a machine learning model using sklearn's GridSearchCV and it runs perfectly when I use luigi 2.7.5 but when I use update to 2.8.9 it shows this exception in every run. Perhaps I am wrong but if it had to do with a segmentation fault, shouldn't it happen with both versions. Am I missing something? Thanks!
Luigi cannot cause a segmentation fault inside a spawned process. Butterfly effects can, however. If your program has wild pointers, a slight change in the environment, or in timing, can trigger a segmentation fault.
I see, nevertheless I can replicate this problem just by changing Luigi's library version. This is why I thought it was related to Luigi.
The same issue for me running with luigi 2.8.11. But I did not test in luigi 2.7.5 to see if its work without any problem.
Someone has any idea what can an I do to fix this problem?
This is almost certainly a symptom of a problem with a program that is started from Luigi, and not with Luigi itself. I suggest closing this issue.
If you want to debug the issue, searching the web for "segmentation fault" yields some starting points, linked below. Segmentation faults happen primarily in C/C++ programs, but can also occur in other languages that link in C libraries.
https://en.wikipedia.org/wiki/Segmentation_fault https://stackoverflow.com/questions/2346806/what-is-a-segmentation-fault https://www.cprogramming.com/debugging/segfaults.html https://kb.iu.edu/d/aqsj
Closing for the reasons provided by @lallea.
Hello, my Luigi pipeline failed with this error.
Do you have an idea what does it mean? I didn't find any documentation regarding this. I have no clue about what could have caused this error.
Thank you!