<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: example blueprint for cloud break deploying on openstack using isilon in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124464#M43220</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/488/akanto.html" nodeid="488"&gt;@Attila Kanto&lt;/A&gt; This looks like the information I was looking for.  Can you post this as an answer and I will accept it?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Oct 2016 23:43:19 GMT</pubDate>
    <dc:creator>Carolyn</dc:creator>
    <dc:date>2016-10-20T23:43:19Z</dc:date>
    <item>
      <title>example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124460#M43216</link>
      <description>&lt;P&gt;Is it possible to use cloud break and ambari blueprints to deploy an EMC isilon cluster using openstack? &lt;/P&gt;&lt;P&gt;Can you post an example? For example, can you specify in an ambari blueprint the location of the name node and data node but have ambari skip the install?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 21:30:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124460#M43216</guid>
      <dc:creator>Carolyn</dc:creator>
      <dc:date>2016-10-11T21:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124461#M43217</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Cloudbreak uses Heat templates to set up networking, launch VMs and attach disks to them. The volume management is abstracted under Cinder on OpenStack, therefore it is not relevant for Cloudbreak that what storage backend is used under the hood. Although we have never tested EMC Isilon, but if it can be managed through Cinder then Cloudbreak can handle it. &lt;/P&gt;&lt;P&gt;For your reference I copy here the Heat template fragment used by Cloudbreak, that is responsible to create the necessary cinder volume resources:&lt;/P&gt;&lt;PRE&gt;type: OS::Cinder::Volume
properties:
  name: hdfs-volume
  size: ${volume.size}&lt;/PRE&gt;&lt;P&gt;The complete template is here:&lt;/P&gt;&lt;P&gt; &lt;A href="https://github.com/sequenceiq/cloudbreak/blob/master/cloud-openstack/src/main/resources/templates/openstack-heat.ftl" target="_blank"&gt;https://github.com/sequenceiq/cloudbreak/blob/master/cloud-openstack/src/main/resources/templates/openstack-heat.ftl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Attila&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 22:03:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124461#M43217</guid>
      <dc:creator>akanto</dc:creator>
      <dc:date>2016-10-12T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124462#M43218</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/488/akanto.html" nodeid="488"&gt;@Attila Kanto&lt;/A&gt;&lt;P&gt;For iSilon, we need to add a node to the cluster using Ambari manual registration after the cluster is provisioned.  So first we would need to create a blueprint with no data or name nodes, deploy it on open stack, and then after the cluster is created add the data and name node using manual registration. &lt;/P&gt;&lt;P&gt;It would probably be ok to have the manual registration as a manual step but would be even better if it could be automated.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2016 21:41:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124462#M43218</guid>
      <dc:creator>Carolyn</dc:creator>
      <dc:date>2016-10-18T21:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124463#M43219</link>
      <description>&lt;P&gt;What do you do during manual registration? Do you install additional packages or just configure the data and namenode differently? In the latter case you can put those properties into the blueprint and you can do the installation and configuration in one step. If you are doing e.g. package installation and configuring things outside Hadoop config files the I see two options:&lt;/P&gt;&lt;P&gt;Basic Option (with manual steps):&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;create a blueprint what is suitable for you needs just leave out the data a name node components. The blueprints are extremely flexible e.g for your reference I am attaching a very simple valid blueprint which contains only Zookeeper&lt;/LI&gt;&lt;LI&gt;install the cluster and after installation just add services manually and configure Isilon&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Advanced Option:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can write an Ambari Management Pack which contains the definition of EMC Isilon service:  &lt;A href="https://cwiki.apache.org/confluence/display/AMBARI/Management+Packs"&gt;https://cwiki.apache.org/confluence/display/AMBARI/Management+Packs&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Install it with recipes: &lt;A href="http://sequenceiq.com/cloudbreak-docs/latest/recipes/"&gt;http://sequenceiq.com/cloudbreak-docs/latest/recipes/&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;You can use that new service from blueprint&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Attila&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2016 14:08:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124463#M43219</guid>
      <dc:creator>akanto</dc:creator>
      <dc:date>2016-10-19T14:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124464#M43220</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/488/akanto.html" nodeid="488"&gt;@Attila Kanto&lt;/A&gt; This looks like the information I was looking for.  Can you post this as an answer and I will accept it?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2016 23:43:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124464#M43220</guid>
      <dc:creator>Carolyn</dc:creator>
      <dc:date>2016-10-20T23:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124465#M43221</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/12116/cduby.html" nodeid="12116"&gt;@cduby&lt;/A&gt;, &lt;/P&gt;&lt;P&gt;As requested:&lt;/P&gt;&lt;P&gt;What do you do during manual registration? Do you install additional packages or just configure the data and namenode differently? In the latter case you can put those properties into the blueprint and you can do the installation and configuration in one step. If you are doing e.g. package installation and configuring things outside Hadoop config files the I see two options:&lt;/P&gt;&lt;P&gt;Basic Option (with manual steps):&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;create a blueprint what is suitable for you needs just leave out the data a name node components. The blueprints are extremely flexible e.g for your reference I am attaching a very simple valid blueprint which contains only Zookeeper&lt;/LI&gt;&lt;LI&gt;install the cluster and after installation just add services manually and configure Isilon&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Advanced Option:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;You can write an Ambari Management Pack which contains the definition of EMC Isilon service:&lt;A href="https://cwiki.apache.org/confluence/display/AMBARI/Management+Packs"&gt;https://cwiki.apache.org/confluence/display/AMBARI/Management+Packs&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Install it with recipes: &lt;A href="http://sequenceiq.com/cloudbreak-docs/latest/recipes/"&gt;http://sequenceiq.com/cloudbreak-docs/latest/recipes/&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;You can use that new service from blueprint&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Attila&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2016 00:56:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124465#M43221</guid>
      <dc:creator>akanto</dc:creator>
      <dc:date>2016-10-21T00:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: example blueprint for cloud break deploying on openstack using isilon</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124466#M43222</link>
      <description>&lt;P&gt;@cduby Sorry for posting to this closed issue. I'm interested to know if you were truly able to deploy this way though.&lt;/P&gt;&lt;P&gt;I have never done a Cloudbreak installation to Openstack with Isilon, so I'd love to find out more about what you did.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:01:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/example-blueprint-for-cloud-break-deploying-on-openstack/m-p/124466#M43222</guid>
      <dc:creator>rob_ketcherside</dc:creator>
      <dc:date>2017-03-10T08:01:15Z</dc:date>
    </item>
  </channel>
</rss>

