- property lance.LanceDataset.tags : Tags
Tag management for the dataset.
Similar to Git, tags are a way to add metadata to a specific version of the dataset.
Warning
Tagged versions are exempted from the
cleanup_old_versions()
process.To remove a version that has been tagged, you must first
delete()
the associated tag.Examples
ds = lance.open("dataset.lance") ds.tags.create("v2-prod-20250203", 10) tags = ds.tags.list()