source: other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-solr-check-local-shardsize-all.sh@ 31169

Last change on this file since 31169 was 31105, checked in by davidb, 7 years ago

Additional scripts to help with running solr locally out of /tmp area

  • Property svn:executable set to *
File size: 227 bytes
Line 
1#!/bin/bash
2
3unique_hosts=`echo $SOLR_NODES | tr ' ' '\n' | sed 's/:.*$//' | sort | uniq`
4
5echo "Running 'du -hs' on all Solr shards"
6
7for solr_host in $unique_hosts ; do
8 ssh $solr_host du -hs /tmp/solr-ef/solr/*shard*;
9done
Note: See TracBrowser for help on using the repository browser.