...
Cell Member Federation Post Steps
Updating service files for 4-CPU cell members
DPOD cell member is using NUMA (Non-Uniform Memory Access) technology.
The default cell member configuration binds DPOD's agent to NUMA node 0 and the Store's nodes to NUMA node 1.
If the server has 4 CPUs, the user should update the service files of nodes 2 and 3 and change the bound NUMA nodes to 2 and 3 respectively.
Identifying CPU amount
To identify Note: In case the cell member has only 2 CPUs - skip this step.
To verify the amount of CPUs installed on the server, use the NUMA utility:
Code Block | ||||
---|---|---|---|---|
| ||||
numactl -s | grep cpubind Expected output: policy: default preferred node: current physcpubindfor 4-CPU cell members: cpubind: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 cpubind: 0 1 2 3 nodebind: 0 1 2 3 membind: 0 1 2 3 |
...
To update the service files, execute the following command:
Code Block | ||||
---|---|---|---|---|
| ||||
sed -i 's#/usr/bin/numactl --membind=1 --cpunodebind=1#/usr/bin/numactl --membind=2 --cpunodebind=2#g' /etc/init.d/MonTier-es-raw-trans-Node-2
sed -i 's#/usr/bin/numactl --membind=1 --cpunodebind=1#/usr/bin/numactl --membind=3 --cpunodebind=3#g' /etc/init.d/MonTier-es-raw-trans-Node-3 |
Updating service files for cell members with more than 384GB RAM
DPOD cell members with a high amount of RAM should assign more RAM to the Store services to ensure performance if storing and fetching data.
Note: In case the cell member has only 2 CPUs less than 384GB RAM - skip this step.
To update the service files, execute the following command:
Code Block | ||||
---|---|---|---|---|
| ||||
sed -i 's#/usr/bin/numactl --membind=1 --cpunodebind=1#/usr/bin/numactl --membind=2 --cpunodebind=2#gs/^NODE_HEAP_SIZE=.*/NODE_HEAP_SIZE="64G"/g' /etc/init.d/MonTier-es-raw-trans-Node-1 sed -i 's/^NODE_HEAP_SIZE=.*/NODE_HEAP_SIZE="64G"/g' /etc/init.d/MonTier-es-raw-trans-Node-2 sed -i 's#/usr/bin/numactl --membind=1 --cpunodebind=1#/usr/bin/numactl --membind=3 --cpunodebind=3#gs/^NODE_HEAP_SIZE=.*/NODE_HEAP_SIZE="64G"/g' /etc/init.d/MonTier-es-raw-trans-Node-3 |
...