Changeset 31305 for other-projects


Ignore:
Timestamp:
2017-01-20T14:50:12+13:00 (7 years ago)
Author:
davidb
Message:

Next good commit point. Initial testing of shard replset scripts

Location:
other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-mongodb-setup-local-disk-all.sh

    r31302 r31305  
    1515
    1616  ssh $mongodb_host "if [ ! -d $local_dbdir ] ; then mkdir $local_dbdir ; fi"
    17   ssh $mongodb_host "if [ ! -d $local_dbdir/config-metadata ] ; then mkdir $local_dbdir/config-metadata ; fi"
     17##  ssh $mongodb_host "if [ ! -d $local_dbdir/config-metadata ] ; then mkdir $local_dbdir/config-metadata ; fi"
    1818
    1919done
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-mongodb-start-configservers.sh

    r31303 r31305  
    11#!/bin/bash
     2
     3repl_set=htrc-ef-config-metadata
    24
    35for h in $MONGODB_CONFIG_HOSTS ; do
    46  echo "* Starting MongoDB Config Server on $h:$MONGODB_CONFIG_PORT"
    5   ssh $h "mongod --configsvr --dbpath \"$MONGODB_DBDIR/config-metadata\" --port $MONGODB_CONFIG_PORT > mongodb-output-$h-config.log &"
     7  repl_dir="$MONGODB_DBDIR/$repl_set-$h"
     8  ssh $h "if [ ! -d $repl_dir ] ; then mkdir $repl_dir ; fi"
     9
     10  ssh $h "mongod --configsvr --replSet $repl_set --dbpath \"$repl_dir\" --port $MONGODB_CONFIG_PORT > mongodb-output-$h-config.log &"
    611done
     12
     13# mongod --configsvr --port 26050 --logpath /var/lib/mongodb/shardedcluster/log.cfg0 --logappend --dbpath /var/lib/mongodb/shardedcluster/cfg0 --fork
     14# mongod --configsvr --port 26051 --logpath /var/lib/mongodb/shardedcluster/log.cfg1 --logappend --dbpath /var/lib/mongodb/shardedcluster/cfg1 --fork
     15# mongod --configsvr --port 26052 --logpath /var/lib/mongodb/shardedcluster/log.cfg2 --logappend --dbpath /var/lib/mongodb/shardedcluster/cfg2 --fork
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-mongodb-start-routerservers.sh

    r31303 r31305  
    11#!/bin/bash
     2
     3repl_set="htrc-ef-config-metadata"
    24
    35configdb_arg=""
     
    1517  echo "* Starting MongoDB Router Server on $h:$MONGODB_ROUTER_PORT"
    1618
    17   echo ssh $h "mongos --configdb $configdb_arg --port $MONGODB_ROUTER_PORT > mongodb-output-$h-router.log &"
     19  ssh $h "mongos --configdb $repl_set/$configdb_arg --port $MONGODB_ROUTER_PORT > mongodb-output-$h-router.log &"
    1820
    1921done
     22
     23# mongos --configdb juan-mongodbspain:26050,juan-mongodbspain:26051,juan-mongodbspain:26052 --fork --logappend --logpath /var/lib/mongodb/shardedcluster/log.mongos0
     24# mongos --configdb juan-mongodbspain:26050,juan-mongodbspain:26051,juan-mongodbspain:26052 --fork --logappend --logpath /var/lib/mongodb/shardedcluster/log.mongos1 --port 26061
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SETUP.bash

    r31303 r31305  
    5555export MONGODB_CONFIG_HOSTS="gc0 gc1 gc2"
    5656export MONGODB_CONFIG_PORT="27019"
     57
    5758export MONGODB_ROUTER_HOSTS="gc3 gc4 gc5"
    5859export MONGODB_ROUTER_PORT="27017"
    59 export MONGODB_SHARD_HOSTS="gc6 gc7"
     60
     61export MONGODB_REPLSET1_HOSTS="gc6 gc7"
     62export MONGODB_REPLSET2_HOSTS="gc8 gc9"
     63export MONGODB_REPLSET_PORT="27017"
     64##export MONGODB_REPLSET_ARRAY=("$MONGODB_REPLSET1_HOSTS" "$MONGODB_REPLSET2_HOSTS")
     65export MONGODB_REPLSET_METALIST="MONGODB_REPLSET1_HOSTS MONGODB_REPLSET2_HOSTS"
     66export MONGODB_SHARD_HOSTS="$MONGODB_REPLSET1_HOSTS $MONGODB_REPLSET2_HOSTS"
     67
    6068source SETUP/setup-mongodb.bash
    6169
Note: See TracChangeset for help on using the changeset viewer.