Transfer artifacts from a local instance to a cloud instance

import lamindb as ln
import bionty as bt

ln.connect("laminlabs/lamin-dev")
bt.settings.organism = "human"
Hide code cell content
def cleanup(artifact: ln.Artifact):
    features_sets = artifact.feature_sets.all()
    experiments = artifact.experiments.all()
    artifact.delete(permanent=True, storage=False)
    features_sets.delete()
    experiments.delete()


artifacts = ln.Artifact.filter(description="test-transfer-to-cloud").all()
for artifact in artifacts:
    cleanup(artifact)
artifact = ln.Artifact.using("testuser1/test-transfer-to-cloud").get(
    description="test-transfer-to-cloud"
)
artifact.describe()
Artifact .parquet/DataFrame
├── General
│   ├── .uid = 'tGKJ8arKCwmpVZcr0000'
│   ├── .size = 1562
│   ├── .hash = 'XLjq7GCoPd1lKqkLX1ItCg'
│   ├── .n_observations = 3
│   ├── .path = 
│   │   /home/runner/work/lamindb/lamindb/docs/storage/test-transfer-to-cloud/.lamindb/tGKJ8arKCwmpVZcr0000.parquet
│   ├── .created_by = testuser1 (Test User1)
│   └── .created_at = 2025-03-31 16:09:50
├── Dataset features/.feature_sets
│   └── var2                     [bionty.CellMarker]                                                 
PD1                         num                                                                 
CD21                        num                                                                 
└── Labels
    └── .organisms                  bionty.Organism            human                                    
        .experiments                wetlab.Experiment          experiment-test-transfer-to-cloud        
artifact.save()
! no run & transform got linked, call `ln.track()` & re-run
 returning existing schema with same hash: Schema(uid='q2UuNrDzpd68WVVfPSEI', n=2, dtype='num', itype='bionty.CellMarker', is_type=False, hash='F5IeIcP-EDh9KAZRsliluA', minimal_set=True, ordered_set=False, maximal_set=False, space_id=1, created_by_id=2, created_at=2024-08-21 14:12:09 UTC)
 mapped records: Organism(uid='1dpCL6Td')
 transferred records: Artifact(uid='tGKJ8arKCwmpVZcr0000'), Experiment(uid='dSGlcIeq')
Artifact(uid='tGKJ8arKCwmpVZcr0000', is_latest=True, description='test-transfer-to-cloud', suffix='.parquet', kind='dataset', otype='DataFrame', size=1562, hash='XLjq7GCoPd1lKqkLX1ItCg', n_observations=3, space_id=1, storage_id=3, run_id=178, created_by_id=2, created_at=2025-03-31 16:09:50 UTC)
artifact.describe()
Artifact .parquet/DataFrame
├── General
│   ├── .uid = 'tGKJ8arKCwmpVZcr0000'
│   ├── .size = 1562
│   ├── .hash = 'XLjq7GCoPd1lKqkLX1ItCg'
│   ├── .n_observations = 3
│   ├── .path = 
│   │   /home/runner/work/lamindb/lamindb/docs/storage/test-transfer-to-cloud/.lamindb/tGKJ8arKCwmpVZcr0000.parquet
│   ├── .created_by = testuser1 (Test User1)
│   ├── .created_at = 2025-03-31 16:09:50
│   └── .transform = 'Transfer from `testuser1/test-transfer-to-cloud`'
├── Dataset features/.feature_sets
│   └── var2                     [bionty.CellMarker]                                                 
CD21                        num                                                                 
PD1                         num                                                                 
└── Labels
    └── .organisms                  bionty.Organism            human                                    
        .experiments                wetlab.Experiment          experiment-test-transfer-to-cloud        
assert artifact._state.db == "default"
assert artifact.organisms.get().name == "human"
assert artifact.experiments.get().name == "experiment-test-transfer-to-cloud"
assert artifact.features["var"].count() == 2
/tmp/ipykernel_2948/1699649831.py:4: FutureWarning: Use slots[slot].members instead of __getitem__, __getitem__ will be removed in the future.
  assert artifact.features["var"].count() == 2
!lamin delete --force test-transfer-to-cloud
!rm -r ./test-transfer-to-cloud
╭─ Error ──────────────────────────────────────────────────────────────────────╮
 Storage                                                                      
 '/home/runner/work/lamindb/lamindb/docs/storage/test-transfer-to-cloud/.lami 
 ndb' contains 1 objects - delete them prior to deleting the instance         
╰──────────────────────────────────────────────────────────────────────────────╯