Skip to content

Commit

Permalink
Setting Up Volumes remove reference to obsolete transport (#770)
Browse files Browse the repository at this point in the history
It looks like the rdma transport is no longer supported and tcp is now the only transport, just went through and cleaned up references to rdma.
  • Loading branch information
brainbuz committed Jun 28, 2023
1 parent af6dcc3 commit 557a9a8
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docs/Administrator-Guide/Setting-Up-Volumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ See [Setting up Storage](./setting-up-storage.md) for how to set up bricks.

- Create a new volume :

`# gluster volume create <NEW-VOLNAME> [[replica <COUNT> [arbiter <COUNT>]]|[replica 2 thin-arbiter 1]] [disperse [<COUNT>]] [disperse-data <COUNT>] [redundancy <COUNT>] [transport <tcp|rdma|tcp,rdma>] <NEW-BRICK> <TA-BRICK>... [force]`
`# gluster volume create <NEW-VOLNAME> [[replica <COUNT> [arbiter <COUNT>]]|[replica 2 thin-arbiter 1]] [disperse [<COUNT>]] [disperse-data <COUNT>] [redundancy <COUNT>] [transport <tcp>] <NEW-BRICK> <TA-BRICK>... [force]`

For example, to create a volume called test-volume consisting of
server3:/exp3 and server4:/exp4:
Expand All @@ -55,6 +55,8 @@ See [Setting up Storage](./setting-up-storage.md) for how to set up bricks.
Creation of test-volume has been successful
Please start the volume to access data.

tcp is the default and currently only available transport.

## **Creating Distributed Volumes**

In a distributed volume files are spread randomly across the bricks in
Expand All @@ -75,7 +77,7 @@ hardware/software layers.

2. Create the distributed volume:

`# gluster volume create [transport tcp | rdma | tcp,rdma] `
`# gluster volume create [transport tcp] `

For example, to create a distributed volume with four storage
servers using tcp:
Expand All @@ -101,7 +103,7 @@ hardware/software layers.
For example, to create a distributed volume with four storage
servers over InfiniBand:

# gluster volume create test-volume transport rdma server1:/exp1 server2:/exp2 server3:/exp3 server4:/exp4
# gluster volume create test-volume transport tcp server1:/exp1 server2:/exp2 server3:/exp3 server4:/exp4
Creation of test-volume has been successful
Please start the volume to access data.

Expand Down Expand Up @@ -132,7 +134,7 @@ high-availability and high-reliability are critical.

2. Create the replicated volume:

`# gluster volume create [replica ] [transport tcp | rdma | tcp,rdma] `
`# gluster volume create [replica ] [transport tcp] `

For example, to create a replicated volume with two storage servers:

Expand Down Expand Up @@ -195,7 +197,7 @@ environments.

2. Create the distributed replicated volume:

`# gluster volume create [replica ] [transport tcp | rdma | tcp,rdma] `
`# gluster volume create [replica ] [transport tcp] `

For example, a four node distributed (replicated) volume with a
two-way mirror:
Expand Down Expand Up @@ -301,7 +303,7 @@ a RMW cycle for many writes (of course this always depends on the use case).

2. Create the dispersed volume:

`# gluster volume create [disperse [<count>]] [redundancy <count>] [transport tcp | rdma | tcp,rdma]`
`# gluster volume create [disperse [<count>]] [redundancy <count>] [transport tcp]`

A dispersed volume can be created by specifying the number of bricks in a
disperse set, by specifying the number of redundancy bricks, or both.
Expand Down Expand Up @@ -352,7 +354,7 @@ volumes, but using dispersed subvolumes instead of replicated ones.

2. Create the distributed dispersed volume:

`# gluster volume create disperse <count> [redundancy <count>] [transport tcp | rdma | tcp,rdma]`
`# gluster volume create disperse <count> [redundancy <count>] [transport tcp]`

To create a distributed dispersed volume, the *disperse* keyword and
&lt;count&gt; is mandatory, and the number of bricks specified in the
Expand Down

0 comments on commit 557a9a8

Please sign in to comment.