Assume I have some storage. Then I created LDB dataset. Can I modify original data (add, delete, update) using LDB?
As far as I understand, LDB considers a storage immutable and LDB hasn't command to push new data items to the storage.
So I see just two ways to update data and share it:
update date directly in the storage -> re-index LDB dataset -> share index (#37); but the storage must be immutable.. or no?...
create new directory in the storage -> create new LDB storage -> share index; in other words, new data - new dataset
Case example:
I have storage
I created LDB dataset
I added some data items in the LDB dataset workspace, reindexed, sync and commit it:
ldb index ./train --annotation-update merge
ldb sync
ldb commit -m "add new data items"
Assume I have some storage. Then I created LDB dataset. Can I modify original data (add, delete, update) using
LDB
?As far as I understand,
LDB
considers a storage immutable andLDB
hasn't command to push new data items to the storage. So I see just two ways to update data and share it:Case example: