Sean Reifschneider's Journal Recent Entries
Below is a summary of the most recent journal entries by this user. A full index of all entries is also available.Also available as: RSS
Tuesday March 02, at 01:04
Subject: mkpkg: Helper to create setup.py for your projects.
Keywords:
Packaging, Python
At the PyCon sprints I mostly worked on my write-up for the conference
networking, and other administratrivia related to PyCon 2010 and getting
ready for 2011. However, I did achieve one thing, and that's "mkpkg".
During the Language Summit we were speaking about packaging, and Guido
said that he usually doesn't create packages. And I felt his pain, because
I usually put it off a long as possible too. But from that I decided that
I wanted to build a helper to make setting up the package files a
no-brainer.
A couple of days into the sprint, I had something that was a good
start. Continue reading for more details.
(read more | 2 Comments)
(read more | 2 Comments)
Friday February 26, at 03:31
Subject: PyCon 2010 Networking Wrap-up
Keywords:
Networking, PyCon, Python
I've completed my wrap-up of the networking
at PyCon 2010. I hope you enjoy reading about it as much as I enjoyed
working on it.
(go to article | 0 Comments)
(go to article | 0 Comments)
Wednesday February 24, at 22:27
Subject: Python developers are the best!
Keywords:
Python
The hotel engineer comes over and is looking for someone in charge...
"What can I help you with?" I ask him. He explains that they have to set
these rooms they've given away from us to another conference and there are
power cords taped down all over.
I call out "Python Developers Activate! Form of a righteous swarm!"
5 minutes later the rooms are picked clean like the bones of some
(particularly tasty) carrion.
(go to article | 1 Comment)
(go to article | 1 Comment)
Monday February 22, at 08:46
Subject: The story behind the 4.2.2.2 DNS server.
Keywords:
DNS
I've hunted down some of the story behind the DNS server that runs at
4.2.2.2. I've taken some discussions I've found around the web, and some
responses I got on NANOG, into a story on the
history behind the popular 4.2.2.2 DNS server.
(go to article | 0 Comments)
(go to article | 0 Comments)
Thursday February 04, at 06:11
Subject: Firefox Weave: Syncing Between Machines
Keywords:
Firefox, Plugin, Synchronization
Evelyn pointed out the Weave plugin for Firefox on Sunday. There's a
server you can, allegedly, install the server on your own machine. I tried
that, but it's in pretty rough shape (40+ errors are all reported as a
generic "database failure" message, then I eventually got to the point
where it was just responding "https:///"). Or you can use a server
provided by the Mozilla foundation.
Everything is, apparently, encrypted for transit and storage, with a
key that you select. So there shouldn't be a security concern. You can
select what you want it to synchronize, including bookmarks, passwords,
preferences, history, and tabs.
One thing that kind of threw me is that the tabs show up under
"History -> Tabs from Other Computers".
Weave seems to work fine so far. You just install the weave plugin,
create an account, set the encryption password, and off you go. It's real
easy, man.
(go to article | 0 Comments)
(go to article | 0 Comments)
Tuesday February 02, at 21:04
Subject: Django snippet for automating templates.
Keywords:
Django, Python
I just posted a Django snippet that (ab)uses a decorator to change
how you call templates in Dango views. For example, it makes my view
code something like this:
(go to article | 0 Comments)
####################################
@with_template('friends/index.html')
def friends(request, context, username):
context['user'] = User.objects.get(username = username)
And the view:
{% extends "base.html" %}
{% block content %}
<h1>{{ user.username }}'s Friends</h1>(go to article | 0 Comments)
Friday January 22, at 16:59
Subject: ZFS-FUSE Status: Happy stable release after patch, and in Debian.
Keywords:
Status, ZFS
I've continued to do a lot of testing and other poking at ZFS-FUSE
under Linux, and things are looking pretty good. I had run into a problem
with the stable 0.6.0 release when used with lots (13+) of devices with
very long names (50-ish character /dev names). However, that seems to be
resolved with a very short patch as
mentioned in this mailing list thread.
Additionally, zfs-fuse has just been placed into Debian for the
Squeeze release (including the patch above). So, before long we should be
able to "apt-get zfs-fuse" and have solid access to the joys of ZFS.
Though note that this does not include dedup functionality -- there are
still some bugs in the base ZFS code to be worked out in that.
I've been running ZFS on my storage server for over a year, but I had
found a version that mostly worked (though there were issues with heavy
snapshot use). It wasn't until a couple of weeks ago that I finally
decided to upgrade. It hasn't been trouble-free -- because of the bug
above I ended up having to reload my pool. But considering that I have
good backups, I decided I might as well put the recent stable release to
the test.
Unfortunately, at the moment one of my test machines has had some sort
of hardware failure, and the other I had to swap to different hardware
because we needed the chassis that it was on for other testing, and it's
not booting in the new chassis. So for the moment, my stress testing is on
hold.
(go to article | 2 Comments)
(go to article | 2 Comments)
Thursday January 21, at 02:19
Subject: Proxmox VE versus VMWare ESXi
Keywords:
Review, Virtualization
A month or so ago I finally got a system that would correctly install
Proxmox
VE -- my earlier tests didn't produce much progress. That initial
test was done on a virtual machine on my laptop. To make matters worse, my
laptop runs 32-bit, so I had to run the test under full QEMU
virtualization, which made performance terrible. The amazing thing I found
then was that a OpenVZ virtual environment actually worked quite well in
those challenging situations.
It did definitely whet my appetite to do more experimentation with
Proxmox VE. It has loads of interesting features and I was dieing to try
it. It wasn't until recently that I had some spare hardware sitting around
that would support KVM virtualization (CPU virtual support). I happened to
get several systems that I could spare for some testing.
Read on for my impressions of the new 1.5 release of Proxmox VE and
how it compares to VMWare ESXi.
(read more | 0 Comments)
(read more | 0 Comments)
Sunday January 17, at 13:56
Subject: Naming screen sessions.
Keywords:
Linux, Screen
On some systems I have long-running screen sessions, like on one
system where I run folding under it, and I've also started running the
zfs-fuse daemon under screen. The normal naming causes me to end up with a
bunch of screens that I have to hunt through to find the one I want:
(go to article | 0 Comments)
guin:~$ screen -x
You may wish for a screen, what do you want?
13658.pts-13.guin (Detached)
13639.pts-13.guin (Detached)
13678.pts-13.guin (Attached)
Type "screen [-d] -r [pid.]tty.host" to resume one of them.
zsh: exit 1 screen -x
guin:~$
I started hunting for a way to get some more information about what
was on each screen, and found the "-S [sessionname]" option. Just what I
need:
root@stow:~# screen -x
There are several suitable screens on:
20873.pts-4.stow (Detached)
20303.zfs (Detached)
20224.folding (Detached)
Type "screen [-d] -r [pid.]tty.host" to resume one of them.
root@stow:~#
So now I can see which one s the one I started for just whatever (the
"pts" one), and I can resume screen sessions with "screen -x folding" or
"screen -x pts" to get to the generic one.(go to article | 0 Comments)
Saturday January 09, at 18:30
Subject: New Year's Python meme
Keywords:
Python
Richard Jones posts A New Year's Python Meme in which he answers these questions:
(go to article | 0 Comments)
-
What's the coolest Python application, framework or library you have discovered in 2009 ?
Hard to pick... Sprox I'm dying to try (for putting databases on the web), and Pinax looks very promising for making social sites. Django is really the only new thing I've spent significant time in though, and it is working fine. What new programming technique did you learn in 2009?
I've been messing around with decorators, and I've really become comfortable with list comprehensions. Because I'm a system administrator, I'm always years behond the curve deploying new features, because they need to work on the last few enterprise releases. What's the name of the open source project you contributed the most in 2009? What did you do?
I flitter around between proejcts, but the Python memcached module is the big, consistent one. I'm doing maintenance on it, so accepting patches and making new releases. What was the Python blog or website you read the most in 2009?
I usually skim Coder Who Says Py, it's great content but usually too involved for my typical lunch-time reads. Richard Jones' Log and pyOraGeek usually have small snippets and I always read them when they're up. What are the three top things you want to learn in 2010 ?
I'd love to write some code in Python 3.0 and get comfortable with it, but obviously still need to really target 2.x -- so 3to2 will be important. I'd like to play with CouchDB and it's replication.
(go to article | 0 Comments)
Sunday December 20, 2009 at 19:05
Subject: My musings on E-Books.
Keywords:
ebook, reading
I've also done a fair bit of e-book reading recently. Read below for
my thoughts on the Kindle (which I don't have), Gutenberg, and more...
(read more | 0 Comments)
(read more | 0 Comments)
Thursday December 10, 2009 at 08:18
Subject: Rsync and rdiff-backup: Two great tastes that go great together.
Keywords:
Backups, Technical
I really like the idea of rdiff-backup, but the drawbacks kept
stopping me from deploying it more widely. The nicest thing is that it
stores deltas as files change, so if you have a large file that changes a
little bit every day, rdiff-backup only stores the little bit that changes.
If you use the rsync hard-link trick to keep historic data around, it
duplicates the whole file every day which can quickly add up on a slowly
changing multi-gigabyte database file.
Problems with rdiff-backup include:
(read more | 8 Comments)
-
Server and client versions need to be the same. In a mixed
environment, this means you're going to have to maintain your own
packages for many of CentOS 4, CentOS 5, Hardy, Karmic, Fedora 12...
My personal backup server has clients that are most of those...
rdiff-backup doesn't deal very well with intermittently connected
systems. If you have a big set of changes that takes several days to
push up at a throttled rate, and you are disconnected part way through,
it needs to start over from scratch.
Worse, this failure may require running the next rdiff-backup with
a special option to clean up the broken backup directory.
No throttling like the "--bwlimit" option in rsync.
(read more | 8 Comments)
Thursday December 10, 2009 at 07:25
Subject: Munin plugins for PowerDNS Recursor
Keywords:
DNS, Munin
I've been increasingly using the PowerDNS Recursor (pdns_recursor),
and I've been pretty happy with it. I've been testing it for something
close to 2 years now, and have really had no problems with it. Initially
using it as a caching DNS server on my laptop, then putting it in place as
a backup recursor for our hosting. A week or so ago we completed setting
up it up on a HA load-balancing cluster as our primary recursor.
As part of that setup, I set up munin to graph some usage and
performance stats. Read below for more information and links to these
plugins.
(read more | 0 Comments)
(read more | 0 Comments)
Wednesday December 09, 2009 at 06:33
Subject: 18 months of ZFS-FUSE
Keywords:
Linux, ZFS
My "Ultimate Storage Box" has been in service 18 months now, so I
thought I'd do a status report. Particularly as ZFS-FUSE still kind of has
a "bad rap" as being a kludge. Which, you know, it kind of is... But it's
the only option Linux users have for a modern file system (ext4 is just,
IMHO, basically a polishing of the Berkeley FFS from 1983). I wish we
could have ZFS in the kernel, but the powers that be have decided that will
never happen. And btrfs is still years away (in the last month it did get
the ability to remove snapshots finally, yay!).
Read on for my experiences over the last 18 months with ZFS-FUSE.
(read more | 5 Comments)
(read more | 5 Comments)
Wednesday December 09, 2009 at 05:27
Subject: ZFS dedup Available in ZFS-FUSE
Keywords:
Dedup, Linux, Technical, ZFS
Not to subvert the recent 0.6.0 release of ZFS-FUSE, which I think is
great... But the thing I'm really interested in is the dedupication code
that just recently got released, and isn't even in the current OpenSolaris
release yet. Read below the fold for more information on dedup in
ZFS-FUSE.
(read more | 0 Comments)
(read more | 0 Comments)
Wednesday December 09, 2009 at 05:04
Subject: iptstate -- "top" for network connections
Keywords:
Linux, Network, Top
A few weeks ago at our favorite coffee shop, the net went just right
into the toilet... Jamie had recently put Tomato on their WRT54G router,
so I was able to get in and see what the problem was. Someone was
hammering the network, saturating both the incoming and outgoing, and had
been for an hour. But how to tell who it was?
The solution I ended up with was to read /proc/net/ip_conntrack and
look at the local machines with lots of remote connections, indicating
file-sharing. Seconds later, the network was usable again and the owner
was thanking us because they could run credit cards again.
But newer kernels don't have this file any more. They do have
similar functionality though, available through the "iptstate" tool. Read
below for more information.
(read more | 1 Comment)
(read more | 1 Comment)
Wednesday December 09, 2009 at 03:57
Subject: frandom: Even faster kernel randomness
Keywords:
Linux, Random
I'm running some stress-testing of ZFS-FUSE, in particular the new
"dedup" version. It seems to be working fine, but as part of my stress
testing I'm writing a bunch of random data. /dev/random and /dev/urandom
are very good sources of randomness, but they sure use a lot of CPU time.
After a (very) brief search I found the frandom driver. A
few minutes later I had it built and installed in my Karmic test system.
My stress test program has gone down from using 90% CPU time to 20% (with
ZFS using the remaining 180% :-).
(go to article | 0 Comments)
(go to article | 0 Comments)
Friday December 04, 2009 at 06:34
Subject: CLUSTERIP for load-balancing and HA.
Keywords:
CLUSTERIP, High-availability, Load-balancing
IPVS load-balancers work great, but typically they are deployed as one
or more usually two additional machines. For people wanting to deploy a 2
machine cluster and grow it, or even start with one machine but configure
it to grow, this additional set of machines is a large overhead.
A much less frequently used option, but one that has been around
forever, is the CLUSTERIP iptables module. This module works by allowing
multiple machines to cooperatively have the same IP address, but only one
will handle a specific connection or client machine.
Read on for more details about this little used, but very useful
clustering mechanism.
(read more | 0 Comments)
(read more | 0 Comments)
Sunday November 29, 2009 at 15:34
Subject: Note on new python-memcached module: Different hash algorithm.
Keywords:
Memcache, Python
I just wanted to note that in the 1.45 release of the python-memcache
module I have switched the hash algorithm to be compatible with the other
libraries, thanks to code by Andre Cru and Ludvig Ericson. To switch back
to the old-style hashing, call:
(read more | 0 Comments)
memcached.useOldServerHashFunction()Read on for more information about the release.
(read more | 0 Comments)
Sunday November 01, 2009 at 22:09
Subject: Setting up Pagination in Django
Keywords:
Django, Python, Recipe
I've been using Django for some personal projects recently, and mostly
I've been liking it just fine. However, I've had a bit of trouble with
figuring out how to do some of the things I want to do. The documentation
seems to lead to things like class documentation rather than examples of
use, and the class documentation is really only a part of the story.
For example, one of the first things I wanted to implement on my
photoblog was pagination. However, the documentation I could find was
of fairly limited use, without creating a bunch of supplemental code
myself. Which is what I did.
However, I then found a snippet on DjangoSnippets which lead me down
the right path for doing the pagination much easier.
I've written up what I've found as an article on setting
up pagination in Django.
(go to article | 0 Comments)
(go to article | 0 Comments)
Wednesday October 28, 2009 at 23:01
Subject: My Write-up for PyCon 2009 Networking (Finally)
Keywords:
Networking, PyCon, Python, WiFi
As part of getting ready for PyCon 2010, I have (finally, sorry :-)
written up my report on
the network at PyCon 2009 in Chicago. It includes the details of the
wireless network in Chicago, and my thoughts on why Netbooks had so many
problems.
(go to article | 1 Comment)
(go to article | 1 Comment)
Friday September 18, 2009 at 01:35
Subject: Removing U3 Partitions on USB Drives in Linux
Keywords:
Linux, USB
After digging around some and finding that my Sandisk Cruzer 32GB was
failing to work in my car stereo because it was showing up as a CD-ROM
drive because of "U3" crud (a Windows convenience), Jim DeWitt found a
Linux utility that I was able to use to get rid of that CD-ROM partition
without requiring me to find a Windows machine.
I wanted to make this post so that others in a similar situation could
find it, since I wasn't able to find anything by search for things like
"linux u3 uninstall".
There's a program called "u3-tool" at Sourceforge
(http://sourceforge.net/projects/u3-tool/). This tool built easily enough, but I ran into issues when trying to use it via libusb.
What I ended up doing was running "./src/u3-tool -p0 /dev/sdb". That
caused it to create a 0-length U3 partition. At that point, ejecting and
re-inserting the USB drive caused it to only show the USB storage device,
and not the CD-ROM device.
(go to article | 0 Comments)
(go to article | 0 Comments)
Saturday August 29, 2009 at 16:10
Subject: Auto-Connecting with Cricket Wireless A600 Modem
Keywords:
Networking, Technical
Evelyn just got signed up with Cricket, because at $40/month she
couldn't resist. Our Sprint WWAN cards are $60/month, and requires a 2
year commitment, which was over her threshold of pain. The Cricket plan is
pretty tempting, considering it still offers unlimited data, includes a
free modem, and apparently has no contract. It was a little tricky to get
working, but only a little. Read on for more information.
(read more | 2 Comments)
(read more | 2 Comments)
Saturday August 29, 2009 at 15:31
Subject: Automating NetworkManager WWAN Connections
Keywords:
Networking, Technical
Last night I couldn't sleep and so I finally attacked the problem of
getting it so that my Sierra Wireless USB 598 dongle will automatically
come up when it's connected. This includes poking at NetworkManager to
tell it to disable wireless, and make the connection via the "Auto Mobile
Broadband (CDMA) connection". Read on for more details of how I got this
working.
(read more | 1 Comment)
(read more | 1 Comment)
Tuesday August 25, 2009 at 14:23
Subject: Keyboard stops responding in KDE.
Keywords:
Bug, KDE
I've been battling a problem with KDE for something over a year now,
and Kevin figured it out for me. The problem is that about once a week my
keyboard would stop responding except when doing auto-repeat. So, if I
held it for around half a second it would send characters, but by that
point it was doing auto-repeat. So it was a real trick getting just one
character out of it. The mouse was fine, the keyboard on the console was
fine, and restarting X would solve it without a reboot.
Kevin found that there's a KDE thing called "slow keys" which is
turned on by holding the shift key for a while. Mine was set with a delay
of half a second, but in the System Settings -> Accessibility panel it
said it was disabled. If I enabled and then disabled it using that, the
keyboard would start responding as normal again.
I went in and set the delay down to the minimum, and I also disabled
"Use gestures for slow keys activation". So, hopefully it won't activate,
but if it does the delay is small enough that it's not going to be a
problem.
Thanks Kevin.
(go to article | 0 Comments)
(go to article | 0 Comments)