typedb-osi / typedb-loader

TypeDB Loader - Data Migration Tool for TypeDB
https://github.com/typedb-osi/typedb-loader
Apache License 2.0
58 stars 17 forks source link

Use try-with-resources for all transactions #37

Closed flyingsilverfin closed 2 years ago

flyingsilverfin commented 2 years ago

Goal

TypeDB Loader was causing a memory leak in TypeDB because it used transactions without closing them. All transactions need to be correctly closed after they are no longer used.

Implemented changes

We always use try blocks when opening a transaction, to guarantee that they are closed even in the event of error.