So im trying to configure a proxmox cluster with ceph.
So from what i can see i can make a pool directly and use it (as in add it to the cluster storage as RBD)
In order to create a CephFS storage in proxmox i need to create 2 sepparate ceph pools and then create the cephfs specifying the pool for data and for metadata , like this :
Now i can add each of the 3 to the custer storage. The first 2 pools as RBD storage types, and the cephfs as, well, CephFS.
My questions are these:
1. Which pool should i use for VMS ? The "data" pool right ? What do i do with the metadata pool ? What happens to it?
2. How can i copy the files from the pool used for the vms ? Lets say i want to copy them to another pool. Could i mount them somehow ?
3. How should i use the CephFS storage? From what i can see i can only use it for backups. What it its relation to the other 2 pools (data and metadata).
So from what i can see i can make a pool directly and use it (as in add it to the cluster storage as RBD)
In order to create a CephFS storage in proxmox i need to create 2 sepparate ceph pools and then create the cephfs specifying the pool for data and for metadata , like this :
Code:
ceph osd pool create cephfs_data <pg_num>
ceph osd pool create cephfs_metadata <pg_num>
ceph fs new cephfs cephfs_metadata cephfs_data
Now i can add each of the 3 to the custer storage. The first 2 pools as RBD storage types, and the cephfs as, well, CephFS.
My questions are these:
1. Which pool should i use for VMS ? The "data" pool right ? What do i do with the metadata pool ? What happens to it?
2. How can i copy the files from the pool used for the vms ? Lets say i want to copy them to another pool. Could i mount them somehow ?
3. How should i use the CephFS storage? From what i can see i can only use it for backups. What it its relation to the other 2 pools (data and metadata).