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:
Igor Ilic 2025-07-16 13:17:37 +02:00 committed by GitHub
parent f43250e849
commit 7f62daebd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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