<?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>Web Services Archives - ICT News</title>
	<atom:link href="https://www.ict-news.org/tag/web-services/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ict-news.org</link>
	<description>Information &#38; Communication technology world news</description>
	<lastBuildDate>Fri, 14 Apr 2017 07:53:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.3</generator>

<image>
	<url>https://www.ict-news.org/wp-content/uploads/2018/03/ICT-icon-3.png</url>
	<title>Web Services Archives - ICT News</title>
	<link>https://www.ict-news.org</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>13 tips to foil cloud lock-in</title>
		<link>https://www.ict-news.org/13-tips-foil-cloud-lock/</link>
					<comments>https://www.ict-news.org/13-tips-foil-cloud-lock/#respond</comments>
		
		<dc:creator><![CDATA[lukasik]]></dc:creator>
		<pubDate>Fri, 14 Apr 2017 07:53:58 +0000</pubDate>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[IaaS]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[Web Services]]></category>
		<guid isPermaLink="false">https://www.ict-news.org/?p=7714</guid>

					<description><![CDATA[<p>13 tips to foil cloud lock-in Public cloud vendors want your workloads forever. Here&#8217;s how to create a viable exit strategy Last month I noted that the big AWS outage proved one cloud isn&#8217;t enough. This week, I&#8217;d like to go a bit further into the topic and talk about some of the things you can do concretely to embrace [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.ict-news.org/13-tips-foil-cloud-lock/">13 tips to foil cloud lock-in</a> appeared first on <a rel="nofollow" href="https://www.ict-news.org">ICT News</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>13 tips to foil cloud lock-in</h1>
<h2>Public cloud vendors want your workloads forever. Here&#8217;s how to create a viable exit strategy</h2>
<p>Last month I noted that the big <a href="http://www.infoworld.com/article/3176098/cloud-computing/aws-outage-proves-one-cloud-isnt-enough.html">AWS outage proved one cloud isn&#8217;t enough</a>. This week, I&#8217;d like to go a bit further into the topic and talk about some of the things you can do concretely to embrace the <span class="vm-hook-outer vm-hook-default"><span class="vm-hook">cloud</span></span> without betting the farm.</p>
<p>It&#8217;s not just about outages. Any vendor who has you by the data will eventually extract the maximum value from the relationship. Sometimes the most important question in a business relationship is: &#8220;What&#8217;s your exit strategy?&#8221; Here are my best answers, arranged by cloud type.</p>
<aside class="fakesidebar"><strong>[ <a href="http://www.infoworld.com/article/3146135/cloud-storage/the-cloud-storage-security-gap-and-how-to-close-it.html#tk.ifw-infsb">The cloud storage security gap — and how to close it</a>. | <a href="http://www.infoworld.com/article/3070753/security/5-ways-microsoft-has-improved-sharepoint-security.html#tk.ifw-infsb">5 ways Microsoft has improved SharePoint security</a>. ]</strong></aside>
<h3>For IaaS</h3>
<ol>
<li><strong>Use Docker or a similar solution.</strong> You should have relocatable containers that you can rebuild and deploy at a whim. This is a critical if you want to protect yourself against lock-in.</li>
<li><strong>Avoid direct database integration.</strong> OK, your app needs a store, but no two apps should talk to the same operational store. Those sorts of connections and protocols tend to build a house of cards. You can&#8217;t move anything until you move the database &#8212; but everything goes down once you do, or you end up with a <a href="https://en.wikipedia.org/wiki/Split-brain_(computing)" target="_blank">split brain</a> situation.</li>
</ol>
<h3>For IaaS/PaaS</h3>
<ol start="3">
<li><strong>Implement API/<a href="https://en.wikipedia.org/wiki/Representational_state_transfer" target="_blank">REST</a> integration.</strong> Rest easy that you are connecting over HTTPS and making standard, easily relocatable web calls.</li>
<li><strong>Externalize configuration.</strong> Don&#8217;t hard-code the scheme, server, or domain into your URLs. Anything else that&#8217;s environmental should be externalized.</li>
<li><strong>Use common APIs.</strong> If you&#8217;re using NodeJS and Express or other, similar, well-known APIs, then you&#8217;re pretty safe from vendor lock-in. If you start using platform-provided services, you&#8217;ve got a bigger problem.</li>
</ol>
<h3>For SaaS</h3>
<ol start="6">
<li><strong>Ensure there&#8217;s a standard method for <span class="vm-hook-outer vm-hook-default"><span class="vm-hook">data</span></span> export.</strong> By that I really mean a way that you could feasibly import your data into another system.</li>
<li><strong>Test the method of data export. </strong>That they theoretically let you grab a dump of data isn&#8217;t really that promising. I&#8217;ve seen vendors that offered it, but then the dump feature didn&#8217;t actually work on any kind of reasonable timeline and the data was trash by the time it did.</li>
<li><strong>Favor solutions with well-known, stable REST APIs.</strong> Realistically, you&#8217;re not likely to dump, import, and move all in one shot. You may need some custom <span class="vm-hook-outer vm-hook-default"><span class="vm-hook">glue</span></span> code where you grab and transport.</li>
</ol>
<h3>For everything cloud</h3>
<ol start="9">
<li><strong>Favor open source technologies.</strong> If the core technology, APIs, and functionality are provided by a healthy open source project, you have a lot better chance of leaving if you need to. This means architectural choices (for example, using <a href="https://kafka.apache.org/" target="_blank">Kafka</a> instead of <a href="https://aws.amazon.com/kinesis/" target="_blank">Kinesis</a>).</li>
<li><strong>Avoid dependence on unique cloud vendor technology.</strong> Sometimes your architectural ties are more process than code. These tend to leak into API calls or other operational management procedures. For instance, maybe you don&#8217;t use AWS&#8217; Elastic Map Reduce, because it&#8217;s frankly not the greatest financial deal and it&#8217;s somewhat flakey. Maybe you just shouldn&#8217;t use it because it&#8217;s different from what you&#8217;d use on any other cloud platform.</li>
<li><strong>Use fixed IPs and DNS names tied to your company, not the provider.</strong>Using an IP and a DNS name is sort of internet 101. Having virtual instances that go down and come up with a new IP isn&#8217;t very resilient not to mention relocatable.</li>
<li><strong>Use messaging where possible.</strong> If you can do something on more of a message basis, where a service that&#8217;s down can be tolerated, do that. It means while you are moving you can forward things somewhere else.</li>
<li><strong>Two clouds.</strong> As <a href="http://www.infoworld.com/article/3176098/cloud-computing/aws-outage-proves-one-cloud-isnt-enough.html">I said before</a>, it is easier to move if you start with at least two different vendors. That&#8217;s harder to do with SaaS, but pretty operable with IaaS/PaaS.</li>
</ol>
<p>The bottom line is that you should favor open source, open standards, and open APIs over vendor-specific solutions. Use <a href="http://www.infoworld.com/resources/105693/application-development/the-essential-guide-to-microservices">microservices architecture</a> or at least the principles thereof. Always maintain your cloud provider exit strategy, and you&#8217;ll have a very advantageous relationship with your cloud provider. Always assume your cloud vendor follows the <a href="https://projectsanctuary.com/the_complete_ferengi_rules_of_acquisition.htm" target="_blank">Ferengi Rules of Acquisition</a>.</p>
<p>&nbsp;</p>
<p>By  <span class="fn"><a href="http://www.infoworld.com/author/Andrew-C.-Oliver/" rel="author">Andrew C. Oliver</a>, source by InfoWorld</span></p>
<p>Visit <a href="https://www.ict-hardware.com/">ICT Hardware</a> website to get more information</p>
<p>The post <a rel="nofollow" href="https://www.ict-news.org/13-tips-foil-cloud-lock/">13 tips to foil cloud lock-in</a> appeared first on <a rel="nofollow" href="https://www.ict-news.org">ICT News</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.ict-news.org/13-tips-foil-cloud-lock/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
