<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://blog.endemics.info/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>On IT Operations and Infrastructures</title>
  <link>http://blog.endemics.info/</link>
  <atom:link href="http://blog.endemics.info/feed/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>en</language>
  <pubDate>Mon, 01 Mar 2010 09:41:45 +0100</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>self documented agile infrastructure</title>
    <link>http://blog.endemics.info/post/2009/03/02/self-documented-agile-infrastructure</link>
    <guid isPermaLink="false">urn:md5:ff0aa745be481feb0b9af97284b59c43</guid>
    <pubDate>Mon, 02 Mar 2009 14:13:00 +0100</pubDate>
    <dc:creator>Gildas LE NADAN</dc:creator>
            
    <description>    &lt;p&gt;In my latest position, as an IT Operations Manager I was confronted to the
classic problems of a non-mature Operations: We were understaffed, in a
fire-fighting mode, there was poor documentation (either missing or not
up-to-date, often misleading), almost no backup, and the team members had
almost no overlap in their skillsets and were demotivated.&lt;/p&gt;
&lt;p&gt;I couldn't afford to lose a single person of my team as the knowledge lost
would be dire for the company, and to make things even more complicated, our
CEO wanted us to be able to deploy our home made software to remote client
sites.&lt;/p&gt;
&lt;p&gt;On the good side, one of my team member had an excellent knowledge of the
home made software, another was a good perl developer, there was a good
knowledge of Suse, rpm packaging and they already had a set up a subversion
repository and a basic puppet setup.&lt;/p&gt;
&lt;p&gt;To consolidate the knowledge and move away from manual operations, it was
decided to use svn, puppet, Suse and pxe to build a self-documented agile
infrastructure where anyone would be able to deploy new services.&lt;/p&gt;
&lt;h2&gt;The basic blocks&lt;/h2&gt;
&lt;p&gt;The applications was packaged using rpm and the latest valid version stored
on a file server, but all the configuration files (including those needed to
build the packages) were stored in subversion.&lt;/p&gt;
&lt;p&gt;This way, it was possible to keep track of the changes (who, why) while at
the same time having a way to retrieve the latest valid version using a simple
'svn co'. The svn commits were sent to all team members, so it kept everyone
informed of what was going on.&lt;/p&gt;
&lt;h2&gt;The recipes&lt;/h2&gt;
&lt;p&gt;The services and server setup were described in puppet and stored in
subversion. The services were described in a generic manner using templates as
configuration files so you could instantiate a new service by deploying the
needed rpms and creating &amp;quot;on the fly&amp;quot; the configuration files adapted to that
specific instance. The important idea was that no manual operation was needed
to deploy a new service thus allowing it to be perfectly reproductible.&lt;/p&gt;
&lt;p&gt;Thanks to this solution, one could easily deploy a new instance of a service
on either a physical or virtual machine. As we were in a j2ee world with a
multi-tiered application, you could either stack several services on a machine
(for development or testing for instance) or one service per machine, depending
on your needs.&lt;/p&gt;
&lt;p&gt;The nice side effect is that puppet is the live documentation of your
systems as it defines and enforces the active configurations! Since the puppet
files are also stored in svn, it is possible to see all the changes for a file
through time with the associated comments.&lt;/p&gt;
&lt;p&gt;The drawback of the system is that extreme care must be taken not to
manually tamper with the configuration of the servers: everything MUST go
through puppet, and the comments must be kept relevant.&lt;/p&gt;
&lt;h2&gt;The deployment system&lt;/h2&gt;
&lt;p&gt;The machines could be either physical or virtual machines, and pxe combined
with kickstart is used to deploy a basic setup consisting of a basic Suse +
puppet. Of course the kickstart files are stored in svn. Once the server is
deployed, puppet can then populate the server with a set of
services/configuration.&lt;/p&gt;
&lt;h2&gt;The backup server&lt;/h2&gt;
&lt;p&gt;Since a service/server could be easily reinstalled using this solution,
there was no need to backup them which is a big time and tape saver.&lt;/p&gt;
&lt;p&gt;This way you can concentrate on saving your application data, that is your
production dataset as well as the files on the file server and the subversion
repository.&lt;/p&gt;
&lt;p&gt;In our setup, it was decided to sync the subversion repository and the files
stored on the fileserver between 2 sites. Also, thanks to the use of
subversion, everyone in the team had the files on their own machine.&lt;/p&gt;
&lt;h2&gt;Disaster recovery&lt;/h2&gt;
&lt;p&gt;During the implementation, cross-dependencies between the subversion,
installation, puppet, file and backup servers were considered in order to allow
a complete restoration of the infrastructure, provided that we had access to
the backup tapes and could reinstall the backup server manually using a Suse
install media.&lt;/p&gt;
&lt;p&gt;It was decided that the subversion, file, build and installation services
would be installed on a single machine. From there, you could reinstall the
puppet server via a very limited set of operations that were documented with
care (basically, installing the packages and checking out the svn
repository).&lt;/p&gt;
&lt;p&gt;Once this is done, and provided &lt;em&gt;all&lt;/em&gt; your infrastructure is
described using puppet recipes, you can easily repopulate your servers in a
case of disaster recovery, but it could also be used to install everything on a
remote site, provided you have a machine were you can bootstrap your
infrastructure.&lt;/p&gt;</description>
    
    
    
          <comments>http://blog.endemics.info/post/2009/03/02/self-documented-agile-infrastructure#comment-form</comments>
      <wfw:comment>http://blog.endemics.info/post/2009/03/02/self-documented-agile-infrastructure#comment-form</wfw:comment>
      <wfw:commentRss>http://blog.endemics.info/feed/atom/comments/317622</wfw:commentRss>
      </item>
    
  <item>
    <title>On the Shortcomings Of Systems and Networks Engineers Training</title>
    <link>http://blog.endemics.info/post/2009/01/16/On-the-Shortcomings-Of-Systems-and-Networks-Engineers-Training</link>
    <guid isPermaLink="false">urn:md5:731fd1888f9f7aff3c8da62c03ceec8c</guid>
    <pubDate>Fri, 16 Jan 2009 20:29:00 +0100</pubDate>
    <dc:creator>Gildas LE NADAN</dc:creator>
            
    <description>    &lt;p&gt;As far I know, there is no course to become a Systems and Networks Engineer,
aside from courses to learn (and gain certification in) a given vendor's
product. In fact, back in my university years, I remember that my teachers
seemed to assume that there was no interest in this kind of thing as learning
the options and caveats of a particular product was all you needed. In their
eyes, algorithmic and development approaches (RAD and OO at the time) were
where the real focus lay.&lt;/p&gt;
&lt;p&gt;In my case, the situation might have been worsened by the traditional
friction in France between university (were the &amp;quot;real, pure, academic&amp;quot; research
is done) and the Ecoles d'Ingénieur (where you learn about engineering and
sometimes conduct &amp;quot;applied research&amp;quot;), but I'm not so sure the situation would
have been so different in an engineering school or another country (I'll be
interested in your feedback there to prove me wrong!).&lt;/p&gt;
&lt;p&gt;So, how does one becomes a Systems and Networks Engineer? Well, it's easy,
you learn by yourself, usually starting with a small set of machines and mainly
by a trial-and-error approach. If you're lucky enough, you might benefit from
someone else's experience and coaching. But still, it remains mostly an ad-hoc
approach.&lt;/p&gt;
&lt;p&gt;Of course, you quickly learn to avoid tinkering with the production platform
on a Friday evening, and given enough experience you can even begin to
&amp;quot;guesstimate&amp;quot; - to a greater or lesser degree of accuracy - the impact of
such-and-such a modification, then hopefully the number of systems you manage
will increase until eventually you find out the hard way that complexity
doesn't grow linearly with the number of systems.&lt;/p&gt;
&lt;p&gt;I would even claim that given the chance to work with different environments
and large scale platforms (highly available, highly loaded web platforms; HPC
clusters; heterogeneous banking environments), one might infer common rules of
thumb and even have the hubris to try to find a meaning in the chaos.&lt;/p&gt;
&lt;p&gt;The fact, however, is that I believe this ad-hoc approach to learning the
job and the lack of (field proven) best-practice references to be The Source Of
All Evil.&lt;/p&gt;
&lt;p&gt;First of all, from this learning process comes an approach comprising
unproven beliefs, mythology or carved-in-stone rules (&amp;quot;one needs twice the
amount of ram as swap space&amp;quot;). It also makes it difficult to assess someone's
ability as a Systems and Networks Engineer if not by considering her technical
knowledge/certifications or previous experience in a similar position.&lt;/p&gt;
&lt;p&gt;Secondly, the good practice of &amp;quot;not changing what works&amp;quot; forged by the
trial-and-error approach, tends to encourage cruft accumulation and creates a
certain reluctance to change anything at all. As a result risk-mitigation
approaches such as continuous integration and minor steps are replaced by
&amp;quot;big-bang&amp;quot; style changes with increased risks of failures.&lt;/p&gt;
&lt;p&gt;All in all, I believe that it has created a situation whereby IT Operations
is working against the (in my eyes desirable) goal of becoming agile and
business-oriented - a true competition differentiator and not just a &amp;quot;cost
center&amp;quot; working in firefighting mode.&lt;/p&gt;
&lt;p&gt;The &amp;quot;cost center&amp;quot; aspect has motivated the few approaches trying to address
the lack of maturity in IT Operations: ITIL, Cobit and so on. To the best of my
knowledge, they are all process-oriented and mostly address the problem from a
financial perspective (ROI, risk management).&lt;/p&gt;
&lt;p&gt;While I believe there are interesting ideas in all of them, and that cost is
an important factor in the need - solution equation, I am not too convinced by
the &amp;quot;process&amp;quot; approach which limits risk but adds weight and inertia to the
organisation and kills pleasure and innovation. I confess I might be too
influenced by the ideas of the &lt;a href=&quot;http://agilemanifesto.org/&quot; hreflang=&quot;en&quot;&gt;Agile Manifesto&lt;/a&gt; here, but I can't stop myself thinking that neither
Google nor Facebook used ITIL to get where they are.&lt;/p&gt;
&lt;p&gt;I also find them too complicated to be real enablers and believe that even
though they warn against it, they incite dogmatism where pragmatism should
rule. Because of this, I think they fight against the exact goals they are
trying to achieve.&lt;/p&gt;
&lt;p&gt;So how can we get out of this mess?&lt;/p&gt;
&lt;p&gt;We would definitely benefit from an increase in interest from the academic
world towards IT Operations and Infrastructure realities. Consider Google's
study on &lt;a href=&quot;http://research.google.com/archive/disk_failures.pdf&quot; hreflang=&quot;en&quot;&gt;Hard Drives failures&lt;/a&gt;. Before its publication different people
had wildly differing beliefs about disk failures based on factors such as:
their own experience with a statistically-insignificant sample size of drives;
manufacturer advertising (propaganda); luck. With a large scale, scientific
study to turn to, people gained a much better understanding of the subject
matter.&lt;/p&gt;
&lt;p&gt;Naturally, courses about availability, scalability, large scale systems and
networks design and management would be welcome in Universities.&lt;/p&gt;
&lt;p&gt;But successful companies such as Google or Amazon couldn't have emerged
without good IT engineering practices and a sound infrastructure (after all
Amazon even sells its services now via EC2 and S3!), so, it is certainly
possible &lt;strong&gt;today&lt;/strong&gt; to build an IT infrastructure that makes a
difference.&lt;/p&gt;
&lt;p&gt;Then we definitely have the responsibility to learn from those leaders and
spread that information around if we want IT Operations and Infrastructures to
mature and serve the business and our own users (kudos here to websites such as
&lt;a href=&quot;http://highscalability.com/&quot; hreflang=&quot;en&quot;&gt;High Scalability&lt;/a&gt; or
&lt;a href=&quot;http://www.storagemojo.com/&quot; hreflang=&quot;en&quot;&gt;Storage Mojo&lt;/a&gt; for their
excellent work).&lt;/p&gt;
&lt;p&gt;Undoubtedly most of the technologies those companies use to manage their
infrastructures are purpose-built in-house developments that won't be
published, so we as a community need to build the tools we need in the same way
developers have started open-source re-implementations of well known building
blocks such as MapReduce for instance &lt;a href=&quot;http://hadoop.apache.org/core/&quot; hreflang=&quot;en&quot;&gt;hadoop&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Tools such as &lt;a href=&quot;http://madstop.com/&quot; hreflang=&quot;en&quot;&gt;Luke Kanies'
Puppet configuration management&lt;/a&gt;, rapid deployments tools such as &lt;a href=&quot;http://www.openqrm.org/&quot; hreflang=&quot;en&quot;&gt;openqrm&lt;/a&gt; or easily adaptable and
scalable monitoring systems such as &lt;a href=&quot;http://hobbitmon.sourceforge.net/&quot; hreflang=&quot;en&quot;&gt;hobbit (now renamed Xymon)&lt;/a&gt; should be &lt;strong&gt;endemic&lt;/strong&gt;
to our infrastructures, yet they are sadly too often an exception.&lt;/p&gt;</description>
    
    
    
          <comments>http://blog.endemics.info/post/2009/01/16/On-the-Shortcomings-Of-Systems-and-Networks-Engineers-Training#comment-form</comments>
      <wfw:comment>http://blog.endemics.info/post/2009/01/16/On-the-Shortcomings-Of-Systems-and-Networks-Engineers-Training#comment-form</wfw:comment>
      <wfw:commentRss>http://blog.endemics.info/feed/atom/comments/317616</wfw:commentRss>
      </item>
    
  <item>
    <title>Yet Another Blog?</title>
    <link>http://blog.endemics.info/post/2009/01/13/Yet-Another-Blog</link>
    <guid isPermaLink="false">urn:md5:a75737ed6c91c3dc66ee452cdffce420</guid>
    <pubDate>Tue, 13 Jan 2009 14:53:00 +0100</pubDate>
    <dc:creator>Gildas LE NADAN</dc:creator>
            
    <description>    &lt;p&gt;Hello there!&lt;/p&gt;
&lt;p&gt;In this introduction post I will try to explain why on earth I've started
Yet Another Blog.&lt;/p&gt;
&lt;p&gt;For years now I've exchanged ideas about IT Infrastructure and Operations
with my colleagues and friends, be they IT Ops guys or dev dudes (or even from
a completely different background). I've learned a lot from those discussions
and I believe my work has matured as a result.&lt;/p&gt;
&lt;p&gt;Lately though, this flow of communication has dried up for several reasons
and I've grown frustrated about it, hence the idea of this blog. Hopefully it
will allow for fruitful interaction with people I know and indeed others that I
don't know. People with whom I am impatient to share ideas and experience!&lt;/p&gt;
&lt;p&gt;So, welcome aboard!&lt;/p&gt;
&lt;p&gt;Gildas&lt;/p&gt;</description>
    
    
    
          <comments>http://blog.endemics.info/post/2009/01/13/Yet-Another-Blog#comment-form</comments>
      <wfw:comment>http://blog.endemics.info/post/2009/01/13/Yet-Another-Blog#comment-form</wfw:comment>
      <wfw:commentRss>http://blog.endemics.info/feed/atom/comments/317306</wfw:commentRss>
      </item>
    
</channel>
</rss>