We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
write_batch_size
1 parent 57e680c commit 15a19f5Copy full SHA for 15a19f5
_nx_arangodb/__init__.py
@@ -81,6 +81,7 @@ def get_info():
81
"db_name": None,
82
"read_parallelism": None,
83
"read_batch_size": None,
84
+ "write_batch_size": None,
85
}
86
87
return d
nx_arangodb/classes/graph.py
@@ -158,6 +158,7 @@ def _set_arangodb_backend_config(self) -> None:
158
config.db_name = self._db_name
159
config.read_parallelism = self.read_parallelism
160
config.read_batch_size = self.read_batch_size
161
+ config.write_batch_size = self.write_batch_size
162
163
def _set_factory_methods(self) -> None:
164
"""Set the factory methods for the graph, _node, and _adj dictionaries.
0 commit comments