-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segmentation fault (core dumped) when putting items in Index #215
Comments
Thanks for the report, I can reproduce it. From a quick look I see a memory corruption as the issue, I will take a closer look tomorrow. |
I debugged your issue and was able to create a standalone example that triggers the crash in boost parallel stable sort. This sort is used only in the index compiler for > 10000 keys. I opened boostorg/sort#54. |
@hendrikmuhs |
I switched the parallel sorting algorithm to the other one provided in boost sort and released a new version I hope this fixes it for you, don't hesitate to report further problems. |
Hello,
first of all I really appreciate your work and tool you have created. Currently I am trying to create a PoC using keyvi but I am facing following issue.
I have decided to put some data in one batch in order to create as few files as possible. I am using python so I cannot verify the issue by calling C++ code directly but it seems that error returned
Segmentation fault (core dumped)
is related to C++ part.Basically I am trying to create 100300 items Index. Interesting part is that when I try to create i.e. 200300 items Index the issue is not occurring. You can find repro script below.
Any help will be appreciated.
best regards,
Kamil
The text was updated successfully, but these errors were encountered: