Forum Replies Created
Viewing 1 post (of 1 total)
-
AuthorPosts
-
May 28, 2026 at 5:27 pm in reply to: FABRIC Distributed Storage is now available for active users! #9816
Hi Komal,
In the YouTube video you shared, you clearly demonstrated Ceph storage and data migration between nodes within a single FABRIC slice. I was wondering whether there is a way to perform similar data transfers between nodes that belong to different slices under the same FABRIC account.
For example, I know how to create and transfer data between nodes within a single slice, but I am interested in understanding whether slice-to-slice data transfer or migration is supported, and if so, whether there are any example implementations, sample code, or recommended approaches available for this use case.
Thank you!
sree
from fabrictestbed_extensions.fablib.fablib import FablibManager as fablib_manager
fablib = fablib_manager()
SLICE_NAME = “ceph-benchmarking”[site1, site2] = fablib.get_random_sites(count=2)
slice1 = fablib.new_slice(name=SLICE_NAME)
node1 = slice1.add_node(name=”node1″, site=site1, cores=4, ram=8, disk=50, storage=True)
node2 = slice1.add_node(name=”node2″, site=site2, cores=4, ram=8, disk=50, storage=True)
slice1.submit()-
This reply was modified 2 days, 19 hours ago by
Sree bhargavi Balija.
-
This reply was modified 2 days, 19 hours ago by
-
AuthorPosts
Viewing 1 post (of 1 total)