Friday, April 11, 2014

Big Data Oracle NoSQL in No Time - Increasing Throughput Read/Write Part 7

Big Data Oracle NoSQL in No Time - Increasing Throughput Read/Write Part 7

Index
Big Data Oracle NoSQL in No Time - Getting Started Part 1
Big Data Oracle NoSQL in No Time - Startup & Shutdown Part 2

Big Data Oracle NoSQL in No Time - Setting up 1x1 Topology Part 3
Big Data Oracle NoSQL in No Time - Expanding 1x1 to 3x1 Topology Part 4
Big Data Oracle NoSQL in No Time - From 3x1 to 3x3 Topology Part 5
Big Data Oracle NoSQL in No Time - Smoke Testing Part 6
Big Data Oracle NoSQL in No Time - Increasing Throughput Read/Write Part 7
Big Data Oracle NoSQL in No Time - It is time to Upgrade
Big Data Oracle NoSQL in No Time - It is time to Load Data for a Simple Use Case

Let us expand our environment.
If your NoSQL store has write bottleneck then adding a storage node would help.
If your NoSQL store had read bottlenech then increasing the replication factor would help.

Steps to make 3x4 (to increase the write throughput)

kv-> plan deploy-sn -dc dc1 -port 5300 -wait -host server4
kv-> plan change-parameters -service sn4 -wait -params capacity=3
kv-> topology clone -current -name 3x4
kv-> topology change-repfactor -name 3x4 -pool AllStorageNodes -rf 4 -dc dc1
kv-> topology preview -name 3x4
kv-> plan deploy-topology -name 3x4 -wait



Steps to make 4x4 (to increase the read throughput)

kv-> plan change-parameters -service sn1 -wait -params capacity=4
kv-> plan change-parameters -service sn2 -wait -params capacity=4
kv-> plan change-parameters -service sn3 -wait -params capacity=4
kv-> plan change-parameters -service sn4 -wait -params capacity=4
kv-> topology clone -current -name 4x4
kv-> topology redistribute -name 4x4 -pool AllStorageNodes
kv-> topology preview -name 4x4
kv-> plan deploy-topology -name 4x4 -wait



Popular Posts