-
Context / ScenarioI have a database of documents that I would like to "rsync" with KernelMemory on a schedule. QuestionIs there plan to support listing documents? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Currently there's no plan, we're trying to limit the scope of the storage operations to avoid turning KM into a file manager or a DB abstraction. Any new feature added on one storage (e.g. Azure Blob) would have to be implemented in all the storage extensions for consistency, which is quite expensive. That said, the suggestion is to use the SDK of your storage choice, to access the storage and run custom operations. For instance, if you're using KM with Azure Blobs, you can leverage the Azure Storage SDK to browse the storage account, list folders and files. |
Beta Was this translation helpful? Give feedback.
-
Thanks, @dluc. I assume that will rely on the content storage structure. But it shall work for me for now. Thank you! |
Beta Was this translation helpful? Give feedback.
Currently there's no plan, we're trying to limit the scope of the storage operations to avoid turning KM into a file manager or a DB abstraction. Any new feature added on one storage (e.g. Azure Blob) would have to be implemented in all the storage extensions for consistency, which is quite expensive.
That said, the suggestion is to use the SDK of your storage choice, to access the storage and run custom operations. For instance, if you're using KM with Azure Blobs, you can leverage the Azure Storage SDK to browse the storage account, list folders and files.