-
Notifications
You must be signed in to change notification settings - Fork 21
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
Can OverflowDb load data from more than one file? #396
Comments
We don't support the kryo format as far as I'm aware... can you please be more specific what you're trying to do? |
We're using version 1.90, it supports kryo. Did you remove kryo in the new version? Previous, we persist the whole project under analysis into one database file such as project.kryo. Now we want to perform incremental program analysis based on overflowDB. So we need to cut the whole project into small pieces and persist them into different database files such as module1.kryo, module2.kryo and module3.kryo. When we want to analyze the project, we just need to read the three database files. Is it possible for writing and reading more than one database files? |
We removed Tinkerpop (along with it's kryo support) in 1.116, i.e. around early 2022. The current storage format is based on mvstore (which also powers the H2 database). |
I want to query the data at the same time. Can I complete the functionality with multiple graphs? |
For example, I want to load data from A.kryo and B.kryo, is it possible?
The text was updated successfully, but these errors were encountered: