Skip to content
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

Open
pangeneral opened this issue Aug 31, 2023 · 4 comments
Open

Can OverflowDb load data from more than one file? #396

pangeneral opened this issue Aug 31, 2023 · 4 comments

Comments

@pangeneral
Copy link

For example, I want to load data from A.kryo and B.kryo, is it possible?

@mpollmeier
Copy link
Contributor

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?

@pangeneral
Copy link
Author

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?

@mpollmeier
Copy link
Contributor

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).
Each overflowdb graph corresponds to exactly one storage file. That being said, you can have multiple graphs open at the same time. Does that help?

@pangeneral
Copy link
Author

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). Each overflowdb graph corresponds to exactly one storage file. That being said, you can have multiple graphs open at the same time. Does that help?

I want to query the data at the same time. Can I complete the functionality with multiple graphs?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants