Skip to content

DataJoint 0.14.8

Choose a tag to compare

@dimitri-yatsenko dimitri-yatsenko released this 05 Feb 20:11
· 693 commits to master since this release
60a8f05

Bug Fixes

  • fix: Add config option to skip filepath checksum on insert (#1387)
    • New filepath_checksum_size_limit_insert config option
    • Prevents transaction timeouts when inserting large files with filepath attributes in three-part make() methods
    • Fixes #1386

Usage

import datajoint as dj

# Skip checksum on insert for files > 1GB
dj.config['filepath_checksum_size_limit_insert'] = 1024 * 1024 * 1024

Installation

pip install datajoint==0.14.8