Friday, December 19, 2014

MongoDB - Backing up a Sharded Cluster (is tricky)

*UPDATE*
I am blind.  Just found this:
http://docs.mongodb.org/manual/tutorial/backup-sharded-cluster-with-database-dumps/



Maybe I'm blind, but I haven't seen a concise, high level summary of how to backup a sharded cluster.


  1. halt balancer.
  2. make sure no chunks flying around (isBalancerRunning lets u know if chunk is movin).
  3. backup preferably from Primary shards.
  4. backup config server data.
  5. re-enable balancer.

THEY ARE ONE UNIT.  AND MUST BE RESTORED AS ONE UNIT.

Thursday, December 18, 2014

Puppet - Containment Again

Most of the content is a poor regurgitation of these pretty damn good links:
http://blog.mayflower.de/4573-The-Puppet-Anchor-Pattern-in-Practice.html
http://bombasticmonkey.com/2011/12/27/stop-writing-puppet-modules-that-suck/

include does NOT cause the included class to be Contained within the including class
require -does- .....

When you write a module, make sure you CONTAIN ALL THE THINGS.
Otherwise you may screw a user of your module... as your classes 'float off' and may not be applied when the user anticipated.

Your containing class could use a buncha REQUIREs to contain other classes, BUT
if you need to declare parameterized classes, you are SOL or 
if you need the classes you declare in a certain sequence, you'll have to use another option:


You'll either need "The Anchor Pattern" or "Contain" (contain is only available in 3.4+)
-------------------------------------
"Anchor Pattern" example:
class wrapper {
  anchor { 'wrapper::begin': } ->
  class { 'foo': }             ->
  class { 'bar': }             ->
  class { 'end': }             ->
  anchor { 'wrapper::end': }
}
-------------------------------------
"Contain" Example:
class wrapper {
  contain foo
  contain bar
  contain end

  Class['foo'] ->
  Class['bar'] ->
  Class['end']
}
-------------------------------------

StatsD - links

https://github.com/etsy/statsd#concepts
https://github.com/etsy/statsd#more-specific-topics
** Sneaky Caveat with Graphite **
https://github.com/etsy/statsd/blob/master/docs/graphite.md



Tuesday, December 16, 2014

MongoDB - Finding Slow Operations

db.currentOp()
db.currentOp({"secs_running" : { "$gt" : 2 }})

currentOp.client can give you the IP and Port of where the query originated from.
(in our case, we have many Services....... this can help isolate commands coming from a specific Service)

http://docs.mongodb.org/manual/reference/method/db.currentOp/#db.currentOp


Saturday, December 13, 2014

Linux - netcat aka nc

So for some reason some of our VMs dont seem to be able to deliver their collectd data to the graphite VM.  So I wondered about port blocking..

Ran the following commands:

SERVER:
  nc -lu 25827

CLIENT 1:
  echo 'test1' |nc -u -w1 thatServer 25827
CLIENT 2:
  echo 'test2' |nc -u -w1 thatServer 25827

Linux - APT

I wish I could get a count of how many times I've used these commands, forgotten them, and had to google them again. 


(show what version of package is installed)
dpkg -s collectd-core
  blah blah blah
  Version: 5.4.0-2ppa1

(uninstall package)
sudo apt-get remove collectd-core

(show versions available for the package)
apt-cache showpkg collectd-core
  blah blah blah
  Provides:
  5.4.0-2ppa1 -
  5.2.0-2ubuntu1 -
  4.10.1-2.1ubuntu7 -

(install a specific version)
sudo apt-get install collectd-core=5.2.0-2ubuntu1

(show where the various package versions are coming from)
apt-cache madison collectd-core
  collectd-core | 5.4.0-2ppa1 | http://something.com/junk/ precise/main amd64 Packages
  collectd-core | 5.2.0-2ubuntu1 | http://barf.com/apt/ precise/main amd64 Packages
  collectd-core | 4.10.1-2.1ubuntu7 | http://trash.com/ubuntu/ precise/universe amd64 Packages





(show where your box is configured to pull packages from)
/etc/apt# cat sources.list
  ###### Ubuntu Main Repos
  blah blah
  ###### Ubuntu Update Repos
  blah blah

Tuesday, December 9, 2014

MongoDB - Delayed Secondaries Timeline

Just an illustration of a sample sequence of events that could cause you to need to recover from a secondary.  (or other backup option)

Monday, December 8, 2014

Puppet - links

How NOT to write a puppet module:
http://bombasticmonkey.com/2011/12/27/stop-writing-puppet-modules-that-suck/

Puppet-Lint 1.0
http://bombasticmonkey.com/2011/12/27/stop-writing-puppet-modules-that-suck/

RSpec Puppet 1.0
http://bombasticmonkey.com/2013/12/05/rspec-puppet-1.0.0/

Puppet Resource Ordering
http://blog.mayflower.de/4573-The-Puppet-Anchor-Pattern-in-Practice.html

Misc - Scoville Units

I've had a slightly strange obsession with hot sauces over the past few years.
Here are two crazy varieties from Tropical Pepper Co:
 
Scorpion Pepper:  780,000 units
and
Ghost Pepper:  500,000 units


Tuesday, December 2, 2014

MongoDB - Delayed Secondaries

Setting up a delayed secondary is a good way to help you recover from a fat-finger error.
In the picture below, you'll notice that a test object can be found on the Primary, but not yet on the delayed Secondary.  To accomplish this, you need to set 'hidden' and 'priority' and 'slaveDelay' attributes.

More about recovering with a delayed secondary by tweaking the OpLog:
http://stackoverflow.com/questions/15444920/modify-and-replay-mongodb-oplog/15451297#15451297


Monday, December 1, 2014

Puppet - Containment Revisited

So as of Puppet 3.4.0, they addressed classes-containing-classes.


Read this as they will describe it much better than me.
http://puppetlabs.com/blog/class-containment-puppet

So the latest docs mention the old anchor pattern:
https://docs.puppetlabs.com/puppet/latest/reference/lang_containment.html#anchor-pattern-containment-for-compatibility-with-puppet--340

Some of the older docs mention the new-in-3.4.0 'contain' function:
https://docs.puppetlabs.com/puppet/3/reference/lang_containment.html#in-puppet-340--puppet-enterprise-32-and-later

And here's the 'contain' function again in the new docs:
https://docs.puppetlabs.com/puppet/3.5/reference/lang_containment.html#the-contain-function

Thus no more Anchor Pattern needed:
http://projects.puppetlabs.com/projects/puppet/wiki/Anchor_Pattern



Vagrant - revisited

Happy Thanksgiving.

Revisiting Vagrant.

Apparently there is a v2 now with new Vagrantfile format.
Also found a VagrantCloud.com.
Used to be frustrating locating trustworthy vagrant boxes.
Got myself a Ubuntu 14.04 LTS box:  https://vagrantcloud.com/ubuntu/boxes/trusty64