<?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>The New Storage Expert</title>
	<atom:link href="http://storagexpert.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://storagexpert.com/blog</link>
	<description>Welcome to the new Storage Expert Blog</description>
	<lastBuildDate>Wed, 02 Jan 2013 21:49:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>An Intro to OpenStack</title>
		<link>http://storagexpert.com/blog/2013/01/02/an-into-to-openstack/</link>
		<comments>http://storagexpert.com/blog/2013/01/02/an-into-to-openstack/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 18:03:47 +0000</pubDate>
		<dc:creator>storagexpert</dc:creator>
				<category><![CDATA[Storage in the Cloud.]]></category>

		<guid isPermaLink="false">http://storagexpert.com/blog/?p=22</guid>
		<description><![CDATA[How many of you have heard of OpenStack? I was first introduced to OpenStack a few years ago while working as a storage architect at Rackspace. At first I was hesitant to adopt this new frame work of technology as I was not sure at the time of how this initiative would affect my group. [...]]]></description>
			<content:encoded><![CDATA[<p>How many of you have heard of OpenStack? I was first introduced to OpenStack a few years ago while working as a storage architect at Rackspace. At first I was hesitant to adopt this new frame work of technology as I was not sure at the time of how this initiative would affect my group. After careful review of what was being developed I decided to dig into it more to better understand how I could use this framework and methodology.</p>
<p>What is OpenStack? As defined by OpenStack the mission is to provide scalable, elastic cloud computing for both public and private clouds, large and small. At the heart of our mission is a pair of basic requirements: clouds must be simple to implement and massively scalable.</p>
<p>I have a love for learning new technologies and a better understanding of how to make these technologies work together to achieve a goal. This could be more company focused goals like how to reduce the cost and footprint of my existing IT infrastructure while increasing performance, reliability, and security to simply how do I use three virtual PCs to do some mathematical computation that would otherwise take years without. As I have learned many times and have resisted at the same time these new methods, technologies, and architectures that bring new paths to our ever growing world of information technology. The point here is, adoption of new technology is not always easy but is demanded as change in ways like described above can only help and with this let’s open the discussion to OpenStack.</p>
<p>First let me start by giving you where I started with my knowledge gathering. I started by researching online… You know startpage, google, yahoo, and places like this to see where I should start and what I should start with. Aside from the fact I was at Rackspace at the time of the OpenStack development I needed to understand more than what I was told and what I saw. This led me to a few places:</p>
<ul>
<li>Books either paper or digital
<ul>
<li>O’Reilly’ Books
<ul>
<li>Deploying OpenStack</li>
</ul>
</li>
</ul>
</li>
<li>Docs.openstack.ork
<ul>
<li>OpenStack Compute Administration Manual</li>
<li>Web content
<ul>
<li>Luunchpad.net
<ul>
<li>Posts and information</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Wiki.openstack.org</li>
</ul>
<p>Starting here will give you as much information as you will need to get off and running as well as provide for other places to pull information from.</p>
<p>There are currently seven primary components of OpenStack: Compute, Object Storage, Identity, Dashboard, Network, Block Storage, and Image Service. Below is a brief description of each component and its codename.</p>
<ul>
<li>Object Store (codenamed &#8220;Swift&#8221;) provides object storage. It allows you to store or retrieve files (but not mount directories like a fileserver). Several companies provide commercial storage services based on Swift. These include KT, Rackspace (from which Swift originated) and Internap. Swift is also used internally at many large companies to store their data.</li>
<li>Image (codenamed &#8220;Glance&#8221;) provides a catalog and repository for virtual disk images. These disk images are mostly commonly used in OpenStack Compute. While this service is technically optional, any cloud of size will require it.</li>
<li>Compute (codenamed &#8220;Nova&#8221;) provides virtual servers upon demand. Rackspace and HP provide commercial compute services built on Nova and it is used internally at companies like Mercado Libre and NASA (where it originated).</li>
<li>Dashboard (codenamed &#8220;Horizon&#8221;) provides a modular web-based user interface for all the OpenStack services. With this web GUI, you can perform most operations on your cloud like launching an instance, assigning IP addresses and setting access controls.</li>
<li>Identity (codenamed &#8220;Keystone&#8221;) provides authentication and authorization for all the OpenStack services. It also provides a service catalog of services within a particular OpenStack cloud.</li>
<li>Network (codenamed &#8220;Quantum&#8221;) provides &#8220;network connectivity as a service&#8221; between interface devices managed by other OpenStack services (most likely Nova). The service works by allowing users to create their own networks and then attach interfaces to them. Quantum has a pluggable architecture to support many popular networking vendors and technologies.</li>
<li>Block Storage (codenamed &#8220;Cinder&#8221;) provides persistent block storage to guest VMs. This project was born from code originally in Nova (the nova-volume service described below). In the Folsom release, both the nova-volume service and the separate volume service are available.</li>
</ul>
<p>OpenStack can be as simple or as complex as you need it to be with end users who can interact through a common web interface or directly to each service through their API while all services are authenticated via a common source. Other individual services interact with each other through their public APIs.</p>
<p>OpenStack is a framework that in and of itself does not provide for the primary compute functions of a hypervisor. Currently most development is done on KVM and Xen based hypervisors. To see more on this go to <a href="http://wiki.openstack.org/HypervisorSupportMatrix">http://wiki.openstack.org/HypervisorSupportMatrix</a>. I have been using Xen server with some work done on ESXi.</p>
<p>Open Stack compute consists of several primary components as listed below:</p>
<ul>
<li>API Server
<ul>
<li>Works as the web service front end for the cloud controller</li>
</ul>
</li>
<li>Compute controller
<ul>
<li>Provides compute server resource and usually contains the compute service</li>
</ul>
</li>
<li>Object Store
<ul>
<li>Optionally provides storage service</li>
</ul>
</li>
<li>Authentication Manager
<ul>
<li>Used for authentication and authorization services when used for Compute systems</li>
</ul>
</li>
<li>Identity Service (keystone)
<ul>
<li>Can also work like the auth manager to provide a separate authentication service</li>
</ul>
</li>
<li>Volume controller
<ul>
<li>Allows for fast permanent block-level storage for the compute servers</li>
</ul>
</li>
<li>Network Controller
<ul>
<li>Allows for virtual networks to enable compute servers to interact with each other and with a public network</li>
</ul>
</li>
<li>Scheduler
<ul>
<li>Selects the suitable compute controller to host an instance</li>
</ul>
</li>
</ul>
<p>The next topic will be the discussion of Shared storage or Cloud storage and How OpenStack helps and augments the deployment of these technologies.</p>
]]></content:encoded>
			<wfw:commentRss>http://storagexpert.com/blog/2013/01/02/an-into-to-openstack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back at it again</title>
		<link>http://storagexpert.com/blog/2012/09/28/back-at-it-again/</link>
		<comments>http://storagexpert.com/blog/2012/09/28/back-at-it-again/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 19:14:07 +0000</pubDate>
		<dc:creator>storagexpert</dc:creator>
				<category><![CDATA[Intro]]></category>

		<guid isPermaLink="false">http://storagexpert.com/blog/?p=5</guid>
		<description><![CDATA[With many ideas scrolling through my head and new things to share this will be a fun more interesting blog for everyone to use and enjoy. I will start coming up with topics and will from time to time post questions and start a track where I will find the answers and also allow others [...]]]></description>
			<content:encoded><![CDATA[<p>With many ideas scrolling through my head and new things to share this will be a fun more interesting blog for everyone to use and enjoy. I will start coming up with topics and will from time to time post questions and start a track where I will find the answers and also allow others to chime in. In the past I have been lazy in keeping up to date with my old blog and just not contributing due to just not having enough time. Well I am going to make the time. Nights, weekends, early mornings, etc&#8230;</p>
<p>With the past behind me it&#8217;s time to start contributing to new ideas and reporting on cool new technology in the storage world. It is always good to see outside contributions either to posts or coming up with your own topics. Everyone gets author status so you can start posting as soon as you sign up but be warned I will remove your author status if I see abuse or topics that are not relevant to the Storagexpert.com site. Let&#8217;s keep it storage, keep it clean, and keep it interesting. I am thinking of a few topics now like active active datacenters and DR protection for these new solutions. Also what&#8217;s new in storage today is a track that I will build on weekly basis.</p>
<p>I hope everyone enjoys the new information that I will be posting and happy reading!</p>
<p>Thank you and as always keep the response times low!<br />
Storagexpert</p>
]]></content:encoded>
			<wfw:commentRss>http://storagexpert.com/blog/2012/09/28/back-at-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.698 seconds -->
<!-- Cached page served by WP-Cache -->
