refactor: Add Kuzu buffer change (#1094)
<!-- .github/pull_request_template.md --> ## Description Change Kuzu default buffer size ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
parent
f43250e849
commit
7f62daebd2
1 changed files with 2 additions and 2 deletions
|
|
@ -54,8 +54,8 @@ class KuzuAdapter(GraphDBInterface):
|
|||
|
||||
self.db = Database(
|
||||
self.temp_graph_file,
|
||||
buffer_pool_size=256 * 1024 * 1024, # 256MB buffer pool
|
||||
max_db_size=1024 * 1024 * 1024,
|
||||
buffer_pool_size=2048 * 1024 * 1024, # 2048MB buffer pool
|
||||
max_db_size=4096 * 1024 * 1024,
|
||||
)
|
||||
else:
|
||||
# Ensure the parent directory exists before creating the database
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue