1. Sree bhargavi Balija

Sree bhargavi Balija

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • 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()
Viewing 1 post (of 1 total)