So... one day all of our 'deploy service to VM' Jenkins jobs failed (about 12 of them) due to an error related to the 'sensu-puppet' module we use.
The codebase that pulls the service WARs from Nexus and configures Tomcat and the rest of the stuff on the VMs had not changed.
The sensu-puppet module itself had also not changed.
Was stumped as to what other variables there were in the equation...
Finally found out that the 'sensu-puppet' module defaulted the Sensu package version to "latest". And someone finally got around to updating the (ubuntu) package. And the new package didn't have a particular script that the 'sensu-puppet' module was looking for... and thus was failing.
ugly.
Tuesday, July 29, 2014
Monday, July 28, 2014
Tuesday, July 15, 2014
Humor - Devops Borat
DevopsBorat from Twitter:
Junior programmer is everybody can able understand your code is wrong. Senior programmer is nobody can able understand your code is wrong.
Small Data is when is fit in RAM. Big Data is when is crash because is not fit in RAM.
Junior programmer is everybody can able understand your code is wrong. Senior programmer is nobody can able understand your code is wrong.
Small Data is when is fit in RAM. Big Data is when is crash because is not fit in RAM.
MongoDB - Replication Failure due to stale journal
Had a replicaset member fall behind (not sure why yet)... Saw this in the logs:
Wed Jul 16 01:17:52.274 [rsBackgroundSync] replSet syncing to: shard-modb-s04-0001.prv-openclass.com:27017
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet error RS102 too stale to catch up, at least from shard-modb-s04-0001.prv-openclass.com:27017
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet our last optime : Jul 10 05:38:14 53a125c6:21a
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet oldest at shard-modb-s04-0001.prv-openclass.com:27017 : Jul 15 20:51:06 53c5943a:1
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet See http://dochub.mongodb.org/core/resyncingaverystalereplicasetmember
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet error RS102 too stale to catch up
Wed Jul 16 01:17:52.553 [rsSync] replSet still syncing, not yet to minValid optime 53c5943a:1
Wed Jul 16 01:17:52.274 [rsBackgroundSync] replSet syncing to: shard-modb-s04-0001.prv-openclass.com:27017
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet error RS102 too stale to catch up, at least from shard-modb-s04-0001.prv-openclass.com:27017
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet our last optime : Jul 10 05:38:14 53a125c6:21a
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet oldest at shard-modb-s04-0001.prv-openclass.com:27017 : Jul 15 20:51:06 53c5943a:1
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet See http://dochub.mongodb.org/core/resyncingaverystalereplicasetmember
Wed Jul 16 01:17:52.472 [rsBackgroundSync] replSet error RS102 too stale to catch up
Wed Jul 16 01:17:52.553 [rsSync] replSet still syncing, not yet to minValid optime 53c5943a:1
Thursday, July 10, 2014
Puppet - Geppetto, a Puppet IDE
http://puppetlabs.com/blog/geppetto-4.1-here
http://puppetlabs.github.io/geppetto/download.html
http://docs.puppetlabs.com/geppetto/latest/index.html
older:
http://puppetlabs.com/blog/geppetto-a-puppet-ide
http://puppetlabs.github.io/geppetto/download.html
http://docs.puppetlabs.com/geppetto/latest/index.html
older:
http://puppetlabs.com/blog/geppetto-a-puppet-ide
Wednesday, July 9, 2014
Tuesday, July 8, 2014
Bash Scripting - NPR Podcast downloader
Stuff to listen to on walk from South Station to work..
arrayNames=(AllSongs AlmostYesterday AtlandsSounds AustinMusic ByteMarks CarTalk ClassicsForKids DigitalAge Engines Environmental Freakonomics FutureTense Kinsey MoneyTalking MoneyTalks Music OnPoint PlanetMoney Tech Ted TinyDesk WorldCafe WaitWait)
arrayIds=(4819413 15167326 19099072 4819408 193172758 9911203 14946301 7494440 5183222 4985907 148603480 122980869 18659325 161302666 172886153 4819384 5183210 94411890 4819382 151446218 187050159 5421673 5183214)
printf "%s\n" "${arrayNames[@]}"
printf "%s\n" "${arrayIds[@]}"
total1=${#arrayNames[*]}
total2=${#arrayIds[*]}
if [ "$total1" -ne "$total2" ]
then
printf "array lengths not equal. BYE!"
exit 1
fi
for (( i=0; i<=$(( $total2 -1 )); i++ ))
do
echo $i
one=$(curl http://www.npr.org/rss/podcast/podcast_detail.php?siteId=${arrayIds[$i]} | grep downloadmp3 | cut -d\" -f2 )
echo $one
two=${arrayNames[$i]}$(date +%Y%m%d)
echo $two
curl -L $one > $two.mp3
echo
date
done
arrayNames=(AllSongs AlmostYesterday AtlandsSounds AustinMusic ByteMarks CarTalk ClassicsForKids DigitalAge Engines Environmental Freakonomics FutureTense Kinsey MoneyTalking MoneyTalks Music OnPoint PlanetMoney Tech Ted TinyDesk WorldCafe WaitWait)
arrayIds=(4819413 15167326 19099072 4819408 193172758 9911203 14946301 7494440 5183222 4985907 148603480 122980869 18659325 161302666 172886153 4819384 5183210 94411890 4819382 151446218 187050159 5421673 5183214)
printf "%s\n" "${arrayNames[@]}"
printf "%s\n" "${arrayIds[@]}"
total1=${#arrayNames[*]}
total2=${#arrayIds[*]}
if [ "$total1" -ne "$total2" ]
then
printf "array lengths not equal. BYE!"
exit 1
fi
for (( i=0; i<=$(( $total2 -1 )); i++ ))
do
echo $i
one=$(curl http://www.npr.org/rss/podcast/podcast_detail.php?siteId=${arrayIds[$i]} | grep downloadmp3 | cut -d\" -f2 )
echo $one
two=${arrayNames[$i]}$(date +%Y%m%d)
echo $two
curl -L $one > $two.mp3
echo
date
done
Tuesday, July 1, 2014
MongoDB - MongoWorld in Manhattan
Went to MongoWorld 2014 last week.
Here's what you missed:
http://www.mongodb.com/presentations/all
Here's what you missed:
http://www.mongodb.com/presentations/all
Subscribe to:
Posts (Atom)