<?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>NiftyName</title>
	<atom:link href="http://www.niftyname.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.niftyname.org</link>
	<description>Open Source Hardware As A Service</description>
	<lastBuildDate>Tue, 10 Nov 2009 17:59:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>NiftyName in 01informatique</title>
		<link>http://www.niftyname.org/2009/06/niftyname-in-01informatique/</link>
		<comments>http://www.niftyname.org/2009/06/niftyname-in-01informatique/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 10:42:32 +0000</pubDate>
		<dc:creator>sebastien</dc:creator>
				<category><![CDATA[HaaS]]></category>
		<category><![CDATA[in the press]]></category>
		<category><![CDATA[01informatique]]></category>
		<category><![CDATA[cloud computing]]></category>

		<guid isPermaLink="false">http://www.niftyname.org/?p=486</guid>
		<description><![CDATA[For french readers, 01informatiques talks about NiftyName in a today post : http://www.01informatique.fr/applications-115/pgi-cloud-risque-enfermement-52989/ A little precision : redundancy is on its way, so the post is a little outdated]]></description>
			<content:encoded><![CDATA[<p>For french readers, 01informatiques talks about NiftyName in a today post :</p>
<p>
<a  href="http://www.01informatique.fr/applications-115/pgi-cloud-risque-enfermement-52989/" onclick="javascript:pageTracker._trackPageview('/external/www.01informatique.fr/applications-115/pgi-cloud-risque-enfermement-52989/');" >http://www.01informatique.fr/applications-115/pgi-cloud-risque-enfermement-52989/</a></p>
<p>A little precision : redundancy is on its way, so the post is a little outdated <img src='http://www.niftyname.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.niftyname.org/2009/06/niftyname-in-01informatique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create my web frontend infrastructure in few lines of code ?</title>
		<link>http://www.niftyname.org/2009/05/how-to-create-my-web-frontend-infrastructure-in-few-lines-of-code/</link>
		<comments>http://www.niftyname.org/2009/05/how-to-create-my-web-frontend-infrastructure-in-few-lines-of-code/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:31:33 +0000</pubDate>
		<dc:creator>sebastien</dc:creator>
				<category><![CDATA[call the expert]]></category>
		<category><![CDATA[infrastructure as a platform]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[xmlrpc]]></category>

		<guid isPermaLink="false">http://www.niftyname.org/?p=460</guid>
		<description><![CDATA[Today we&#8217;ll introduce the first article of &#8220;call the expert&#8221; category. This category&#8217;s goal is to explain by example how to use NiftyName capacities through its API. You can download attached files at the end of the article and test at home Today case study is &#8220;how can I quick create my 5 servers cluster [...]]]></description>
			<content:encoded><![CDATA[<p>Today we&#8217;ll introduce the first article of <strong>&#8220;call the expert&#8221;</strong> category.</p>
<p>This category&#8217;s goal is to explain by example how to use NiftyName capacities through its API.</p>
<p>You can download attached files at the end of the article and test at home <img src='http://www.niftyname.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Today case study is</p>
<p><strong>&#8220;how can I quick create my 5 servers cluster for my new website frontend ?&#8221;</strong></p>
<p>You have 
<a title="watch zish video tutorial"  href="http://www.niftyname.org/doc/zish-video-tutorial/">zish</a> and 
<a title="watch zigui video tutorial"  href="http://www.niftyname.org/doc/zigui-video-tutorial/">zigui</a> of course, but sometimes it&#8217;s not pretty for repetitive tasks. Well, we need to make our own script. This script is written in Python. You write yours in any language, in future posts we&#8217;ll try to make some examples in PhP, Ruby, etc&#8230;</p>
<p>And&#8230; voilà ! the main script code is inlined behind. In downloadable archive there is some extra code, mainly code already used for 
<a title="go to zinn developper's website"  href="http://src.ielo.net/projects/show/zinn" onclick="javascript:pageTracker._trackPageview('/external/src.ielo.net/projects/show/zinn');" >zinn</a> XMLRPC functionnal tests (if you&#8217;re curious, you 
<a title="zinn test section in git repository"  href="http://src.ielo.net/repositories/browse/zinn/test" onclick="javascript:pageTracker._trackPageview('/external/src.ielo.net/repositories/browse/zinn/test');" >can look at it</a>).</p>
<p>To make this code work for you, customize the MyXmlRPC class and that&#8217;s all.</p>
<pre class="brush: python; title: ;">
import os, sys, basexmlrpc

#Personnal XML-RPC class
class MyXmlRPC(basexmlrpc.BaseXmlRPC):
    def __init__(self):
        super(MyXmlRPC, self).__init__()
        self.confdir    = '%s/.zinn/users' % os.getenv('HOME')
        self.publicname = 'I am a nifty user'
        self.name       = 'niftyuser'
        self.passphrase = 'jablonski'
        self.sitegroup  = 'marseille'
        self.client = 'niftycli'
        self.vsite = 'web-frontend-vsite'
        #self.vsite = 'myniftyvsite'
        self.proxy = None

#Initialize connection
try:
    client = MyXmlRPC()
    client.proxy = client.get_authentified_proxy()
except Exception, e:
    print e
    sys.exit(0)

#Common attributes
how_many_frontends = 5
vsite_attributes = {'siteGroup': client.sitegroup, 'client': client.client}
machine_attributes = {
        'vcpu'  : 2,
        'cpu'   : 'x86-64bits',
        'memory': '2G',
        'vnc'   : {'keymap': 'en-us', 'password': 'Mys3scr3tp4sS'}
     }
storage_attributes = {'size': '3G'}
interface_attributes = {'model': 'virtio'}
attach_stor_attributes = {
            'bus'       : 'virtio',
            'media'     : 'disk',
            'readOnly'  : False,
            'bootOrder' : 1,
            'bootable'  : False
        }

#Bulk creation
client.proxy.vsite.create(client.vsite, vsite_attributes)

for i in range(how_many_frontends):
    client.proxy.machine.create(client.vsite, 'front%d' %i, machine_attributes)
    client.proxy.storage.create(client.vsite, 'stor%d' %i, storage_attributes)
    client.proxy.interface.create(client.vsite, 'iface%d' %i, interface_attributes)

    ipaddress_attributes = {'reverse': 'front%d.%s' %(i, client.vsite), 'family': 'ipv4'}
    client.proxy.ipaddress.create(client.vsite, 'ip%d' %i, ipaddress_attributes)

    client.proxy.interface.ipaddress.attach(client.vsite, 'iface%d' %i, 'ip%d' %i)
    client.proxy.machine.interface.attach(client.vsite, 'front%d' %i, 'iface%d' %i)

    status = 'notrunning'
    while status != 'running':
        r = client.proxy.storage.list(client.vsite, 'stor%d' %i)
        status = r[0]['status']['current']

    client.proxy.machine.storage.attach(client.vsite, 'front%d' %i, 'stor%d' %i, attach_stor_attributes)
</pre>
<p>This first sample lacks a lot of advanced functionnalities, like having all the cluster in a private network. OS installation is not covered too. Stay tuned, there&#8217;s more to come.</p>
<p>Download the archive 
<a title="download first lesson archive"  href="http://www.niftyname.org/call-the-expert/call-the-expert-lesson1.tgz">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.niftyname.org/2009/05/how-to-create-my-web-frontend-infrastructure-in-few-lines-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storage I/O benchmark</title>
		<link>http://www.niftyname.org/2009/05/storage-io-benchmark/</link>
		<comments>http://www.niftyname.org/2009/05/storage-io-benchmark/#comments</comments>
		<pubDate>Wed, 27 May 2009 15:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[compare to others and try]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[flexiscale]]></category>
		<category><![CDATA[gogrid]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[sysbench]]></category>

		<guid isPermaLink="false">http://www.niftyname.org/?p=344</guid>
		<description><![CDATA[4 cloud computing storage performance compared]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
jQuery(document).ready(function(){
jQuery(".vertgraph").each(
     function(i,elt) {
         maxref=478;
         max=0;
         val=jQuery(elt).children().children().contents();
         jQuery(val).each(
            function(i,v)
            {
                if(parseFloat(String(v.data))>max)
                    max=parseFloat(v.data);
            }
         );
         ratio = (maxref-100)/max;
         jQuery(elt).children().children().each(
                function(i, elt){
                    h = parseFloat(jQuery(elt).contents()[0].data);
                    jQuery(elt).height((12+(h*ratio))+"px");
                }
          );
     }
);
});
// --></script></p>
<h3>Introduction</h3>
<p>We performed all the tests with the multi-threaded benchmark tool sysbench (version 0.4.8).</p>
<p>
<a  href="http://sysbench.sourceforge.net/" onclick="javascript:pageTracker._trackPageview('/external/sysbench.sourceforge.net/');" >http://sysbench.sourceforge.net/</a></p>
<p>This tool was primarily written for MySQL benchs and is very I/O intensive. Nowadays it&#8217;s one of the most appreciated tool for general I/O benchs.</p>
<h4>Read bench commands</h4>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndrd cleanup</p>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndrd prepare</p>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndrd run</p>
<h4>Write bench commands</h4>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndwr cleanup</p>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndwr prepare</p>
<p>sysbench &#8211;test=fileio &#8211;max-time=60 &#8211;max-requests=100000000  &#8211;file-num=1 &#8211;file-extra-flags=direct &#8211;file-fsync-freq=0  &#8211;file-total-size=128M &#8211;file-test-mode=rndwr run</p>
<h3>Forces in presence</h3>
<p>The goal is to be the most objective as possible, so we choose the closest configuration on each instance provider.</p>
<h4>Flexiscale</h4>
<p>ubuntu amd64 8.04 LTS</p>
<ul>
<li>1 GiB RAM</li>
<li>20 GiB of storage</li>
</ul>
<h4>Gogrid</h4>
<p>Centos amd64 5.1</p>
<ul>
<li>1 GiB RAM</li>
<li>database-server instance</li>
</ul>
<h4>EC2</h4>
<p>ubuntu amd64 9.04</p>
<ul>
<li>small instance</li>
<li>1.7 GiB RAM</li>
</ul>
<h4>NiftyName</h4>
<p>ubuntu amd64 9.04</p>
<ul>
<li>1 GiB RAM</li>
<li>50 GiB of storage</li>
</ul>
<h3>Read</h3>
<h4>Transfer MB/sec : we are twice fast as the fastest competitor !</h4>
<div class="vertgraph">
<ul>
<li class="flexiscale">0.9</li>
<li class="gogrid">88.9</li>
<li class="ec2">2.5</li>
<li class="niftyname">178.3</li>
</ul>
</div>
<blockquote><p>EC2, which is the most popular offer, suffers of very poor read performances.</p></blockquote>
<h4>I/O requests per second : it matchs read transfer values</h4>
<div class="vertgraph">
<ul>
<li class="flexiscale">54.4</li>
<li class="gogrid">5693.2</li>
<li class="ec2">160.0</li>
<li class="niftyname">11414.4</li>
</ul>
</div>
<h3>Write</h3>
<h4>Transfer MB/sec : EC2 is a (slighty) more serious competitor</h4>
<div class="vertgraph">
<ul>
<li class="flexiscale">0.9</li>
<li class="gogrid">0.7</li>
<li class="ec2">3.7</li>
<li class="niftyname">24.1</li>
</ul>
</div>
<h4>I/O requests/sec</h4>
<div class="vertgraph">
<ul>
<li class="flexiscale">56.4</li>
<li class="gogrid">42.9</li>
<li class="ec2">239.3</li>
<li class="niftyname">1541.6</li>
</ul>
</div>
<h3>Conclusion</h3>
<p>NiftyName supremacy is undeniable. NiftyName does not forget performances against features. What is done is well done, we are trying to reach the highest quality level, it&#8217;s significant for a common production environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niftyname.org/2009/05/storage-io-benchmark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>{video} What is Cloud Computing ?</title>
		<link>http://www.niftyname.org/2009/05/video-what-is-cloud-computing/</link>
		<comments>http://www.niftyname.org/2009/05/video-what-is-cloud-computing/#comments</comments>
		<pubDate>Wed, 13 May 2009 21:05:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HaaS]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[explanations]]></category>

		<guid isPermaLink="false">http://www.niftyname.org/?p=179</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="630" height="444">
<param name="movie" value="http://www.youtube.com/v/XdBd14rjcs0&#038;hl=fr&#038;fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/XdBd14rjcs0&#038;hl=fr&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="630" height="444"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.niftyname.org/2009/05/video-what-is-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publication of the free HaaS platform</title>
		<link>http://www.niftyname.org/2009/03/publication-of-the-free-haas-platform/</link>
		<comments>http://www.niftyname.org/2009/03/publication-of-the-free-haas-platform/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 17:33:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[release]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[infrastructure as a platform]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://www.niftyname.org/?p=415</guid>
		<description><![CDATA[IELO/Lost-Oasis team is proud to announce the first release of its components aimed to virtualisation platforms management. Facing the emergence of non-free platforms like Amazon EC2, Microsoft Azure and others it was necessary to bring a free solution. It&#8217;s the first early preview of our NiftyName. At the moment you can create and manage virtual [...]]]></description>
			<content:encoded><![CDATA[<p>IELO/Lost-Oasis team is proud to announce the first release of its components aimed to virtualisation platforms management.</p>
<p>Facing the emergence of non-free platforms like Amazon EC2, Microsoft Azure and others it was necessary to bring a free solution. It&#8217;s the first early preview of our NiftyName. At the moment you can create and manage virtual machines pools and all related components (storage, private and public network, etc).</p>
<p>Multi-site active redundancy is not supported yet but all components have been designed for this.</p>
<p>The whole architecture is based on documented XMLRPC (SSL) webservices: you can make your own derivative tools on top.</p>
<p>Furthermore, two clients applications (console and GTK) on top of the API are already distributed.</p>
<p>This 1.0.0 verison supports the following functionnalities:</p>
<ul>
<li>Virtual machines (based on KVM, multi cpu, x86-64, VNC, etc)</li>
<li>Storage (private, public, clone, shared between instances)</li>
<li>Network (public addresses, IPv6 support, private Vlan, multiple interfaces)</li>
<li>Users/clients management, permissions, roles, etc</li>
</ul>
<p>A test platform is available, you can create test users and services today in real conditions.</p>
<p>We&#8217;re looking forward to read your remarks, propositions and contributions to make the project better and carry it to a higher level.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niftyname.org/2009/03/publication-of-the-free-haas-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

