-
Notifications
You must be signed in to change notification settings - Fork 44
Closed
Description
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.
from keyvi._core import Index
def run_repro():
index = Index('repro')
data = [(str(i), 'test') for i in range(100300)] #
index.MSet(data)
index.Flush()
if __name__ == '__main__':
run_repro()
best regards,
Kamil
Metadata
Metadata
Assignees
Labels
No labels