The trepctl shard command provides and interface to the replicator shard system definition system.
trepctl shard [ -delete shard ] [ -insert shard ] [ -list ] [ -update shard ]
Where:
Table 8.44. trepctl shard Command Options
| Option | Description |
|---|---|
-delete shard | Delete a shard definition |
-insert shard | Add a new shard definition |
-list | List configured shards |
-update shard | Update a shard definition |
The replicator shard system is used during multi-site replication configurations to control where information is replicated.
To obtain a list of the currently configured shards:
shell> trepctl shard -list
shard_id master critical
alpha sales trueThe shard map information can also be captured and then edited to update existing configurations:
shell> trepctl shard -list>shard.mapTo add a new shard map definition, either enter the information interactively:
shell> trepctl shard -insert
Reading from standard input
...
1 new shard insertedOr import from a file:
shell> trepctl shard -insert < shard.map
Reading from standard input
1 new shard insertedTo update a definition:
shell> trepctl shard -update < shard.map
Reading from standard input
1 shard updated