<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>thinking sysadmin &#187; aws</title>
	<atom:link href="http://andyleonard.com/tag/aws/feed/" rel="self" type="application/rss+xml" />
	<link>http://andyleonard.com</link>
	<description>qstat -u aleonard -s z</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:47:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Duplicity to Amazon S3 on FreeBSD: Building on the work of others</title>
		<link>http://andyleonard.com/2009/03/02/duplicity-to-amazon-s3-on-freebsd-building-on-the-work-of-others/</link>
		<comments>http://andyleonard.com/2009/03/02/duplicity-to-amazon-s3-on-freebsd-building-on-the-work-of-others/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 19:47:53 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[duplicity]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=226</guid>
		<description><![CDATA[(This post adds only a couple small details to work described at randys.org and cenolan.com &#8211; go there for background on this post and useful scripts for automated Duplicity backup to S3.)
First off, if you want to use Duplicity installed from FreeBSD Ports to backup to Amazon S3, be sure to also install the devel/py-boto [...]]]></description>
			<content:encoded><![CDATA[<p>(This post adds only a couple small details to work described at <a href="http://www.randys.org/2007/11/16/how-to-automated-backups-to-amazon-s-s3-with-duplicity/">randys.org</a> and <a href="http://www.cenolan.com/2008/12/how-to-incremental-daily-backups-amazon-s3-duplicity/">cenolan.com</a> &#8211; go there for background on this post and useful scripts for automated Duplicity backup to S3.)</p>
<p>First off, if you want to use Duplicity installed from FreeBSD Ports to backup to Amazon S3, be sure to also install the <code>devel/py-boto</code> and <code>security/pinentry-curses</code> ports.</p>
<p>If you attempt to run the backup script described at randys.org or cenolan.com from cron, you may run into an error similar to the following:<br />
<span id="more-226"></span></p>
<pre>2009-03-01_01:05:05: ... backing up filesystem
Cleanup of temporary directory /tmp/duplicity-gM4CN9-tempdir failed - this
is probably a bug.
Cleanup of temporary directory /tmp/duplicity-gM4CN9-tempdir failed - this
is probably a bug.
Traceback (most recent call last):
File "/usr/local/bin/duplicity", line 583, in &lt;module&gt;
with_tempdir(main)
File "/usr/local/bin/duplicity", line 577, in with_tempdir
fn()
File "/usr/local/bin/duplicity", line 558, in main
full_backup(col_stats)
File "/usr/local/bin/duplicity", line 234, in full_backup
bytes_written = write_multivol("full", tarblock_iter, globals.backend)
File "/usr/local/bin/duplicity", line 148, in write_multivol
globals.gpg_profile, globals.volsize)
File "/usr/local/lib/python2.5/site-packages/duplicity/gpg.py", line 240,
in GPGWriteFile
bytes_to_go = data_size - get_current_size()
File "/usr/local/lib/python2.5/site-packages/duplicity/gpg.py", line 232,
in get_current_size
return os.stat(filename).st_size
OSError: [Errno 2] No such file or directory:
'/tmp/duplicity-gM4CN9-tempdir/mktemp-iZknw0-2'

Traceback (most recent call last):
File "/usr/local/bin/duplicity", line 583, in &lt;module&gt;
with_tempdir(main)
File "/usr/local/bin/duplicity", line 577, in with_tempdir
fn()
File "/usr/local/bin/duplicity", line 558, in main
full_backup(col_stats)
File "/usr/local/bin/duplicity", line 232, in full_backup
sig_outfp = get_sig_fileobj("full-sig")
File "/usr/local/bin/duplicity", line 210, in get_sig_fileobj
fh = globals.backend.get_fileobj_write(sig_filename)
File "/usr/local/lib/python2.5/site-packages/duplicity/backend.py", line
354, in get_fileobj_write
fh = dup_temp.FileobjHooked(tdp.filtered_open("wb"))
File "/usr/local/lib/python2.5/site-packages/duplicity/path.py", line 716,
return gpg.GPGFile(1, self, gpg_profile)
File "/usr/local/lib/python2.5/site-packages/duplicity/gpg.py", line 112,
in __init__
'logger': self.logger_fp})
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 357,
in run
create_fhs, attach_fhs)
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 401,
in _attach_fork_exec
if process.pid == 0: self._as_child(process, gnupg_commands, args)
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 442,
in _as_child
os.execvp( command[0], command )
File "/usr/local/lib/python2.5/os.py", line 354, in execvp
_execvpe(file, args)
File "/usr/local/lib/python2.5/os.py", line 390, in _execvpe
func(fullname, *argrest)
OSError: [Errno 2] No such file or directory

Traceback (most recent call last):
File "/usr/local/bin/duplicity", line 583, in &lt;module&gt;
with_tempdir(main)
File "/usr/local/bin/duplicity", line 577, in with_tempdir
fn()
File "/usr/local/bin/duplicity", line 558, in main
full_backup(col_stats)
File "/usr/local/bin/duplicity", line 234, in full_backup
bytes_written = write_multivol("full", tarblock_iter, globals.backend)
File "/usr/local/bin/duplicity", line 148, in write_multivol
globals.gpg_profile, globals.volsize)
File "/usr/local/lib/python2.5/site-packages/duplicity/gpg.py", line 237,
in GPGWriteFile
file = GPGFile(True, path.Path(filename), profile)
File "/usr/local/lib/python2.5/site-packages/duplicity/gpg.py", line 112,
in __init__
'logger': self.logger_fp})
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 357,
in run
create_fhs, attach_fhs)
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 401,
in _attach_fork_exec
if process.pid == 0: self._as_child(process, gnupg_commands, args)
File "/usr/local/lib/python2.5/site-packages/GnuPGInterface.py", line 442,
in _as_child
os.execvp( command[0], command )
File "/usr/local/lib/python2.5/os.py", line 354, in execvp
_execvpe(file, args)
File "/usr/local/lib/python2.5/os.py", line 390, in _execvpe
func(fullname, *argrest)
OSError: [Errno 2] No such file or directory</pre>
<p>The solution to the above is simple &#8211; make sure the path includes <code>/usr/local/bin</code>, perhaps by including this at the start of the backup script:</p>
<pre>export PATH=${PATH}:/usr/local/bin</pre>
<p>Finally, when running an incremental backup, you may get this error:</p>
<pre>Fatal Error: Neither remote nor local manifest is readable.</pre>
<p>This can be solved by setting the <code>HOME</code> environment variable to <code>/root</code> assuming you&#8217;re running the backup as root (instead of the default <code>/var/log</code> for cron jobs):</p>
<pre>export HOME=/root</pre>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2009/03/02/duplicity-to-amazon-s3-on-freebsd-building-on-the-work-of-others/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ElasticFish?</title>
		<link>http://andyleonard.com/2008/11/12/elasticfish/</link>
		<comments>http://andyleonard.com/2008/11/12/elasticfish/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:21:49 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[storage]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[fishworks]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=161</guid>
		<description><![CDATA[(In the spirit of Joerg Moellenkamp&#8217;s thought experiments:)
That virtualized Fishworks appliance got me thinking: What if  you combined this with this?  Yeah, managing Elastic Block Store devices would require some changes, but, if you needed a NAS for your EC2 instances&#8230;
]]></description>
			<content:encoded><![CDATA[<p>(In the spirit of <a href="http://www.c0t0d0s0.eu/">Joerg Moellenkamp</a>&#8217;s thought experiments:)</p>
<p>That virtualized Fishworks appliance got me thinking: What if  you combined <a href="http://www.sun.com/storage/disk_systems/unified_storage/index.jsp">this</a> with <a href="http://www.sun.com/third-party/global/amazon/index.jsp">this</a>?  Yeah, managing Elastic Block Store devices would require some changes, but, if you needed a NAS for your EC2 instances&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/11/12/elasticfish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hotlinks, 7/1/2008</title>
		<link>http://andyleonard.com/2008/07/01/hotlinks-712008/</link>
		<comments>http://andyleonard.com/2008/07/01/hotlinks-712008/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 19:08:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[netapp]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[wafl]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=45</guid>
		<description><![CDATA[
The Hitz report &#8211; Robin Harris at StorageMojo on the Sun-NetApp lawsuit:
NetApp’s biggest misperception is that WAFL is somehow central to the success they are enjoying today. That was true about 10 years ago. Guys, your average F500 CIO today could care less about WAFL.
NetApp is growing because they offer a compelling value proposition of [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://storagemojo.com/2008/07/01/the-hitz-report/">The Hitz report</a> &#8211; Robin Harris at StorageMojo on the Sun-NetApp lawsuit:<br />
<blockquote><p>NetApp’s biggest misperception is that WAFL is somehow central to the success they are enjoying today. That was true about 10 years ago. Guys, your average F500 CIO today could care less about WAFL.</p>
<p>NetApp is growing because they offer a compelling value proposition of quality products, relevant services and worldwide support. WAFL certainly supports that, but as NetApp execs note much of their recent success is due to the integration software that NetApp now offers.</p>
<p>WAFL is a small piece of the picture. Sun could copy it line for line and still not have a quarter of what NetApp offers.</p>
<p>NetApp faces challenges. Storage commoditization threatens all vendors traditional 60% gross margins. The GX integration is problematic and the bottom line benefit uncertain. EMC’s move into cloud file services is a clever flanking strategy.</p></blockquote>
<p>An interesting opinion summed up nicely, I think.</li>
<li><a href="http://blogs.sun.com/ec2/entry/zfs_snapshots_to_and_from">Saving and Restoring ZFS Snapshots to and from Amazon S3</a> &#8211; A ZFS to S3 workaround for the lack of persistent storage on EC2.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/07/01/hotlinks-712008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>README, 6/25/2008</title>
		<link>http://andyleonard.com/2008/06/25/readme-6252008/</link>
		<comments>http://andyleonard.com/2008/06/25/readme-6252008/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 19:27:15 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[simpledb]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=41</guid>
		<description><![CDATA[
Daemonic Dispatches: Dissecting SimpleDB BoxUsage &#8211; Colin Percival takes a critical look at Amazon&#8217;s SimpleDB pricing scheme.

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.daemonology.net/blog/2008-06-25-dissecting-simpledb-boxusage.html">Daemonic Dispatches: Dissecting SimpleDB BoxUsage</a> &#8211; Colin Percival takes a critical look at Amazon&#8217;s SimpleDB pricing scheme.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/25/readme-6252008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Luck with a Quick-n-Dirty BFU of SXCE 79 on EC2</title>
		<link>http://andyleonard.com/2008/06/25/no-luck-with-a-quick-n-dirty-bfu-of-sxce-79-on-ec2/</link>
		<comments>http://andyleonard.com/2008/06/25/no-luck-with-a-quick-n-dirty-bfu-of-sxce-79-on-ec2/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 14:19:10 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[operating systems]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[bfu]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[panic]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[sxce]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=40</guid>
		<description><![CDATA[For grins, I tried a quick-and-dirty BFU of a SXCE 79 instance running on EC2 to the latest nightly build this morning.  I roughly followed Ben Rockwood&#8217;s BFU instructions and didn&#8217;t do anything to resolve conflicts beyond running acr.  On reboot, it looks like the system panicked &#8211; I presume the reason is [...]]]></description>
			<content:encoded><![CDATA[<p>For grins, I tried a quick-and-dirty <a href="http://www.opensolaris.org/os/community/on/devref_toc/devref_5/#5_3_using_bfu_to_install_on">BFU</a> of a <a href="http://www.opensolaris.org/os/downloads/on/">SXCE</a> 79 instance running on EC2 to the <a href="http://dlc.sun.com/osol/on/downloads/current/">latest nightly build</a> this morning.  I roughly followed <a href="http://www.cuddletech.com/blog/pivot/entry.php?id=802">Ben Rockwood&#8217;s BFU instructions</a> and didn&#8217;t do anything to resolve conflicts beyond running <code>acr</code>.  On reboot, it looks like the system panicked &#8211; I presume the reason is probably somewhere in <a href="http://opensolaris.org/os/community/on/flag-days/">here</a>.  Console dump after the jump for the curious.<br />
<span id="more-40"></span><br />
<code>v3.0.3-rc5-8.1.14.e chgset 'unavailable '<br />
WARNING: Found hypervisor version: v3.0.3-rc5-8.1.14.e but need at least version v3.0.4<br />
SunOS Release 5.11 Version snv_79 32-bit<br />
Copyright 1983-2007 Sun Microsystems, Inc.  All rights reserved.<br />
Use is subject to license terms.<br />
NOTICE: xdf@0: failed to read feature-barrier<br />
Hostname: ip-10-250-11-159<br />
Reading ZFS config: *done.<br />
ip-10-250-11-159 console login: syslogd: line 45: WARNING: loghost could not be resolved<br />
syncing file systems... done<br />
rebooting...<br />
v3.0.3-rc5-8.1.14.e chgset 'unavailable '<br />
WARNING: Found hypervisor version: v3.0.3-rc5-8.1.14.e but need at least version v3.0.4<br />
SunOS Release 5.11 Version snv_79 32-bit<br />
Copyright 1983-2007 Sun Microsystems, Inc.  All rights reserved.<br />
Use is subject to license terms.<br />
NOTICE: xdf@0: failed to read feature-barrier<br />
WARNING: file system 'ctfs' version mismatch<br />
WARNING: Cannot mount /system/contract<br />
/kernel/fs/procfs: undefined symbol 'schedctl_set_cidpri'<br />
WARNING: mod_load: cannot load module 'procfs'<br />
WARNING: Cannot mount /proc<br />
WARNING: file system 'mntfs' version mismatch<br />
WARNING: Cannot mount /etc/mnttab<br />
/kernel/fs/tmpfs: undefined symbol 'choose_addr'<br />
WARNING: mod_load: cannot load module 'tmpfs'<br />
WARNING: Cannot mount /etc/svc/volatile<br />
WARNING: file system 'objfs' version mismatch<br />
WARNING: Cannot mount /system/object<br />
WARNING: file system 'sharefs' version mismatch<br />
WARNING: Cannot mount /etc/dfs/sharetab<br />
/kernel/fs/procfs: undefined symbol 'schedctl_set_cidpri'<br />
WARNING: mod_load: cannot load module 'procfs'<br />
/kernel/drv/ip: undefined symbol 'uioamove'<br />
/kernel/drv/ip: undefined symbol 'dl_errstr'<br />
/kernel/drv/ip: undefined symbol 'dl_primstr'<br />
/kernel/drv/ip: undefined symbol 'dhcifname'<br />
WARNING: mod_load: cannot load module 'ip'<br />
/kernel/fs/sockfs: undefined symbol 'uioafini'<br />
/kernel/fs/sockfs: undefined symbol 'uioainit'<br />
/kernel/fs/sockfs: undefined symbol 'uioasync'<br />
/kernel/fs/sockfs: undefined symbol 'kssl_handle_mblk'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_disconnect'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_getsockname'<br />
/kernel/fs/sockfs: undefined symbol 'nd_free'<br />
/kernel/fs/sockfs: undefined symbol 'nd_load'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_create'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_close'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_listen'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_recvd'<br />
/kernel/fs/sockfs: undefined symbol 'mi_mpprintf'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_alloc_hdr'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_get_opt'<br />
/kernel/fs/sockfs: undefined symbol 'tcp_wput'<br />
/kernel/fs/sockfs: undefined symbol 'mi_sprintf'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_bind'<br />
/kernel/fs/sockfs: undefined symbol 'udp_wput'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_getpeername'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_sendmsg'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_set_opt'<br />
/kernel/fs/sockfs: undefined symbol 'sctp_connect'<br />
WARNING: mod_load: cannot load module 'sockfs'<br />
WARNING: sockfs: unable to resolve dependency, module 'drv/ip' not found<br />
/kernel/sys/c2audit: undefined symbol 'getsonode'<br />
WARNING: mod_load: cannot load module 'c2audit'<br />
WARNING: c2audit: unable to resolve dependency, module 'fs/sockfs' not found<br />
/kernel/misc/strplumb: undefined symbol 'dl_attach'<br />
/kernel/misc/strplumb: undefined symbol 'dl_phys_addr'<br />
/kernel/misc/strplumb: undefined symbol 'dhcacklen'<br />
/kernel/misc/strplumb: undefined symbol 'dhcifname'<br />
/kernel/misc/strplumb: undefined symbol 'dl_bind'<br />
WARNING: mod_load: cannot load module 'strplumb'<br />
panic[cpu0]/thread=f502c3a0: mod_hold_stub: Couldn't load stub module misc/strplumb<br />
f5056c84 genunix:mod_hold_stub+161 (f5006070, 1, f4d38f)<br />
f5056ca0 unix:stubs_common_code+9 ()<br />
syncing file systems... done<br />
skipping system dump - no dump device configured<br />
rebooting...</code></p>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/25/no-luck-with-a-quick-n-dirty-bfu-of-sxce-79-on-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linkage, 6/24/2008</title>
		<link>http://andyleonard.com/2008/06/24/linkage-6242008/</link>
		<comments>http://andyleonard.com/2008/06/24/linkage-6242008/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 23:19:37 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[corruption]]></category>
		<category><![CDATA[data integrity]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=39</guid>
		<description><![CDATA[
S3 data corruption: &#8220;We&#8217;ve isolated this issue to a single load balancer that was brought into service at 10:55pm PDT on Friday, 6/20.  It was taken out of service at 11am PDT Sunday, 6/22.  While it was in service it handled a small fraction of Amazon S3&#8217;s total requests in the US.  [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://developer.amazonwebservices.com/connect/message.jspa?messageID=93408#93408">S3 data corruption</a>: &#8220;We&#8217;ve isolated this issue to a single load balancer that was brought into service at 10:55pm PDT on Friday, 6/20.  It was taken out of service at 11am PDT Sunday, 6/22.  While it was in service it handled a small fraction of Amazon S3&#8217;s total requests in the US.  Intermittently, under load, it was corrupting single bytes in the byte stream.  When the requests reached Amazon S3, if the Content-MD5 header was specified, Amazon S3 returned an error indicating the object did not match the MD5 supplied.  When no MD5 is specified, we are unable to determine if transmission errors occurred, and Amazon S3 must assume that the object has been correctly transmitted.&#8221;  (Seen at <a href="http://www.daemonology.net/blog/2008-06-24-amazon-s3-data-corruption.html">Daemonic Dispatches</a>.)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/24/linkage-6242008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Afternoon Links, 6/23/2008</title>
		<link>http://andyleonard.com/2008/06/23/afternoon-links-6232008/</link>
		<comments>http://andyleonard.com/2008/06/23/afternoon-links-6232008/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 23:24:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[ultrasparc t1]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=38</guid>
		<description><![CDATA[
The Register: Sun&#8217;s Niagara 3 will have 16-cores and 16 threads per core &#8211; &#8220;Each socket is chewing through an insane 256 threads.&#8221;  I do love a good rumor.
CloudStatus &#8211; Just-launched website for monitoring each Amazon Web Services component in more detail than Amazon gives you.  Seen at O&#8217;Reilly Radar.

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.theregister.co.uk/2008/06/23/sun_niagara_k2/">The Register: Sun&#8217;s Niagara 3 will have 16-cores and 16 threads per core</a> &#8211; &#8220;Each socket is chewing through an insane 256 threads.&#8221;  I do love a good rumor.</li>
<li><a href="http://cloudstatus.com/">CloudStatus</a> &#8211; Just-launched website for monitoring each Amazon Web Services component in more detail than Amazon gives you.  Seen at <a href="http://radar.oreilly.com/archives/2008/06/hyperic-cloudstatus-velocity.html">O&#8217;Reilly Radar</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/23/afternoon-links-6232008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links, 6/18/2008</title>
		<link>http://andyleonard.com/2008/06/18/links-6182008/</link>
		<comments>http://andyleonard.com/2008/06/18/links-6182008/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 22:07:34 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[emc]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[hpc]]></category>
		<category><![CDATA[it]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=32</guid>
		<description><![CDATA[
Cloud Computing: Is the Cloud There Yet? &#8211; A Brief History: A mostly negative look at the prospects for cloud computing.  Although the arguments it makes are fairly reasonable, the article appears to presume that cloud computing is an all-or-nothing proposal, not a tool for only some tasks.  Also odd &#8211; &#8220;Many routine [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.keystonesandrivets.com/kar/2008/06/cloud-computing.html">Cloud Computing: Is the Cloud There Yet? &#8211; A Brief History</a>: A mostly negative look at the prospects for cloud computing.  Although the arguments it makes are fairly reasonable, the article appears to presume that cloud computing is an all-or-nothing proposal, not a tool for only some tasks.  Also odd &#8211; &#8220;Many routine tasks which are not processor intensive and time critical are the most likely candidates to be migrated to cloud computing&#8221; seems wrong (think Sun&#8217;s network.com, or how SmugMug uses EC2).  Further, the article seems to ignore that <a href="http://www.techcrunch.com/2008/04/21/who-are-the-biggest-users-of-amazon-web-services-its-not-startups/">big pharma and financial institutions are the largest users of AWS</a>.  Still, all in all, a perspective worth considering.  (Originally seen at <a href="http://insidehpc.com/2008/06/17/what-came-before-the-cloud-and-why-those-failures-matter-now/">InsideHPC.com</a>.)</li>
<li><a href="http://scalability.org/?p=628">What he said! &#8211; scalability.org</a>: Joe Landman on &#8220;IT clusters. They are not HPC clusters by any stretch of the imagination. They don’t really work well. Some things sorta-kinda work. Lots of things don’t or cannot. You have some interesting failure modes.&#8221;  I&#8217;ve seen exactly what he&#8217;s talking about from the biosciences arm of a large hardware/services company, where they sold something that was high margin, poorly configured, had a lousy interconnect, and, yes, was running RHEL.  The article&#8217;s use of &#8220;IT&#8221; as a disparaging term was also interesting.  (Also seen at <a href="http://insidehpc.com/2008/06/17/when-is-a-cluster-not-an-hpc-cluster/">InsideHPC</a>.)</li>
<li><a href="http://www.blocksandfiles.co.uk/article/5622">EMC flashing CLARiiON?</a> &#8211; Rumor that flash from EMC is slowly starting to march down-market.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/18/links-6182008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Capacity limit on OpenSolaris 2008.05 AMI</title>
		<link>http://andyleonard.com/2008/06/04/capacity-limit-on-opensolaris-200805-ami/</link>
		<comments>http://andyleonard.com/2008/06/04/capacity-limit-on-opensolaris-200805-ami/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 18:27:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[operating systems]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[sxce]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=23</guid>
		<description><![CDATA[I missed this: Apparently the OpenSolaris 2008.05 AMI on EC2 has reached a capacity limit.  So, while I got Sun&#8217;s approval this morning for their OpenSolaris/SXCE.79 on EC2 beta, I don&#8217;t get to use OpenSolaris until they add more capacity; SXCE.79 is a nice consolation prize, though.
]]></description>
			<content:encoded><![CDATA[<p>I missed this: Apparently the OpenSolaris 2008.05 AMI on EC2 has <a href="http://blogs.sun.com/ec2/entry/update_capacity_limit_on_opensolaris">reached a capacity limit</a>.  So, while I got Sun&#8217;s approval this morning for their OpenSolaris/SXCE.79 on EC2 beta, I don&#8217;t get to use OpenSolaris until they add more capacity; SXCE.79 is a nice consolation prize, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/04/capacity-limit-on-opensolaris-200805-ami/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suggested Reading, 6/3/2008, Evening Edition</title>
		<link>http://andyleonard.com/2008/06/03/suggested-reading-632008-evening-edition/</link>
		<comments>http://andyleonard.com/2008/06/03/suggested-reading-632008-evening-edition/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 04:52:36 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[link dump]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://andyleonard.com/?p=22</guid>
		<description><![CDATA[
SkyNet Lives! (aka EC2 @ SmugMug) &#8211; Blog post about how SmugMug uses (and doesn&#8217;t use) Amazon Web Services; I found the comment that EC2 Persistent Storage &#8220;isn’t performant enough&#8221; intriguing &#8211; I&#8217;ll be interested to see what its performance characteristics are once it&#8217;s available to the public.  Excerpt from the post: &#8220;Let me [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://blogs.smugmug.com/don/2008/06/03/skynet-lives-aka-ec2-smugmug/">SkyNet Lives! (aka EC2 @ SmugMug)</a> &#8211; Blog post about how SmugMug uses (and doesn&#8217;t use) Amazon Web Services; I found the comment that EC2 Persistent Storage &#8220;isn’t performant enough&#8221; intriguing &#8211; I&#8217;ll be interested to see what its performance characteristics are once it&#8217;s available to the public.  Excerpt from the post: &#8220;Let me be very clear here: I really don’t want to operate datacenters anymore despite the fact that we’re pretty good at it. It’s a necessary evil because we’re an Internet company, but our mission is to be the best photo sharing site. We’d rather spend our time giving our customers great service and writing great software rather than managing physical hardware. I’d rather have my awesome Ops team interacting with software remotely for 100% of their duties (and mostly just watching software like SkyNet do its thing). We’ll get there &#8211; I’m confident of that &#8211; we’re just not there yet.&#8221;  (Seen at the <a href="http://aws.typepad.com/aws/2008/06/the-forthcoming.html">Amazon Web Services Blog</a>.)</li>
<li><a href="http://www.roughtype.com/archives/2008/06/microsoft_to_pu.php">Rough Type: Microsoft to put &#8220;many millions&#8221; of servers in cloud</a><br />
 &#8211; Nicholas Carr reports on Microsoft&#8217;s cloud plans.  My thoughts: Does anyone see a latency problem with the following &#8211; think of the speed of light in glass, or the AWS Blog post mentioned above and its comments about locating services in the same cloud , or why SmugMug still runs some of its own servers: &#8220;We&#8217;re taking everything we do at the server level, and saying that we will have a service that mirrors that exactly. The simplest one of those is to say, okay, I can run Exchange on premise, or I can connect up to it as a service. But even at the BizTalk level, we&#8217;ll have BizTalk Services. For SQL, we&#8217;ll have SQL Server Data Services, and so you can connect up, build the database. It will be hosted in our cloud with the big, big data center, and geo-distributed automatically. This is kind of fascinating because it&#8217;s getting us to think about data centers at a scale that never existed before. Literally today we have, in our data center, many hundreds of thousands of servers, and in the future we&#8217;ll have many millions of those servers.&#8221;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andyleonard.com/2008/06/03/suggested-reading-632008-evening-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
