Skip to content

Instantly share code, notes, and snippets.

View douglasjarquin's full-sized avatar

Douglas Jarquin douglasjarquin

View GitHub Profile
@douglasjarquin
douglasjarquin / ops-rotate-slowlog.rb
Created April 17, 2013 14:23
Rotate the RDS slow log table
#!/usr/bin/env ruby
# Usage: ops rds-rotate-slowlog <absolute_path_to_log>
# Summary: Use this command to rotate the slow log of on RDS instance.
# Help: Queries the slowlog database table maintained by Amazon RDS and outputs it in
# the normal MySQL slow log text format. The log file path defaults to
# /var/log/mysql/slow_query.log, and can be overriden with a command line argument.
#
# Examples:
#
@douglasjarquin
douglasjarquin / nullify.rb
Created February 10, 2013 14:46
Convert the string "NULL" into a proper NULL across an entire database.
require 'rubygems'
require 'mysql'
@database = {
'host' => '',
'user' => '',
'password' => '',
'name' => ''
}

Checklist - Ideal Ops

In a perfect world, where things are done well, not just quickly, I would expect to find the following when joining the company:

Documentation

  • Accurate / up-to-date systems architecture diagram
  • Accurate / up-to-date network diagram
  • Out-of-hours support plan
  • Incident management plan
@douglasjarquin
douglasjarquin / mysql-unicode.rb
Created December 18, 2012 22:46
Enable full Unicode support in a MySQL database.
require 'rubygems'
require 'mysql'
@database = {
'host' => '',
'user' => '',
'password' => '',
'name' => ''
}
@douglasjarquin
douglasjarquin / mysql-to-redis.rb
Created December 13, 2012 21:07
Migrate CakePHP sessions from MySQL to Redis.
require 'rubygems'
require 'mysql'
require 'redis'
# start your engines
mysql = Mysql.new('host', 'username', 'password', 'database')
redis = Redis.new('host' => '', 'port' => , 'password' => '')
sessions = mysql.query("select * from cake_sessions where expires > '#{Time.now.to_i - 10800}' LIMIT 10")
@douglasjarquin
douglasjarquin / benchmark-rds.sh
Created October 2, 2012 19:50 — forked from yyuu/gist:1277579
Benchmark RDS with mysqlslap
#!/bin/sh -e
rds_db_instance_identifier() {
echo "$@" | sed -e 's/[^-0-9A-Za-z]/-/g'
}
rds_describe_db_instance() {
if test $# -lt 1; then
return 1
fi
@douglasjarquin
douglasjarquin / amazon-linux.erb
Last active February 29, 2016 01:42 — forked from darrinholst/amazon-linux.erb
Chef bootstrap template for Amazon Linux
bash -c '
#
# make sure sudo users have the full path...
#
# sudo visudo
# Defaults env_keep += "PATH"
# Defaults !secure_path
#
@douglasjarquin
douglasjarquin / operations-engineer.md
Created April 10, 2012 02:45
Operations Engineer

Operations Engineer

About Zumba

Zumba® Fitness is a global lifestyle brand that fuses fitness, entertainment and culture into an exhilarating dance-party workout. Founded in 2001, the company is now the largest branded fitness program in the world — reporting more than 12 million weekly class participants, in over 110,000 locations, across more than 125 countries. The Zumba® fitness lifestyle is rounded out by the company’s many consumer product offerings, including DVD sets, music collections, multi-seasonal apparel and footwear, video games, Fitness-ConcertTM events and a lifestyle magazine. All of our rapid growth means that we have many interesting and challenging problems to solve, most critically in operations. Zumba Instructor's bet their businesses on the availability of our platform. This is why we’re looking to add two experienced Operations Engineer's to our technical operations team.

Skills

  • 3+ years of Linux administration
@douglasjarquin
douglasjarquin / gist:2208690
Created March 26, 2012 18:58
Amazon RDS Performance Tuning Settings
rds-modify-db-parameter-group {param-group-name} \
--parameters="name=character_set_server, value=utf8, method=pending-reboot" \
--parameters="name=collation_server, value=utf8_general_ci, method=pending-reboot" \
--parameters="name=tmp_table_size, value={DBInstanceClassMemory/16}, method=pending-reboot" \
--parameters="name=max_heap_table_size, value={DBInstanceClassMemory/16}, method=pending-reboot" \
--parameters="name=query_cache_type, value=1, method=pending-reboot" \
--parameters="name=query_cache_size, value=131072, method=pending-reboot" \
--parameters="name=table_open_cache, value=2500, method=pending-reboot" \
--parameters="name=join_buffer_size, value={DBInstanceClassMemory/64}, method=pending-reboot" \
--parameters="name=thread_cache_size, value={DBInstanceClassMemory/12582880}, method=pending-reboot" \
@douglasjarquin
douglasjarquin / s3_list_versions.py
Created September 27, 2011 17:03
List S3 object versions with Boto and Python
"""
List all S3 object versions
"""
import os
from boto.s3.connection import S3Connection
print '--- Connecting to S3'
c = S3Connection(aws_access_key_id=os.environ['AWS_ACCESS_KEY_ID'],
aws_secret_access_key=os.environ['AWS_SECRET_ACCESS_KEY'])