Cisco to open Internet of Things innovation centre in Australia

Cisco will open an Internet of Things innovation centre in Australia this year

Cisco will open an Internet of Things innovation centre in Australia this year

Networking giant Cisco plans to open an Internet of Everything Innovation Centre in Australia this year, which the company said will house experts in the Internet of Things and help catalyse IoT innovation in the region.

The $15m centre, one of eight planned globally (Rio de Janeiro, Toronto, Songdo, Berlin, Barcelona, Tokyo and London) will include locations in Sydney at Sirca and in Perth at Curtin University. Perth-based energy firm Woodside Energy will also contribute resources to the centre.

The centres include dedicated space to demonstrate Internet of Things platforms, and are being pitched as areas where customers, startups and researchers can come together to prototype and test out their ideas.

“Australia is a sophisticated market with a high level of innovation and an early adopter of new technology. Australia is already highly regarded globally for its resources and agriculture sectors and is well-placed to serve the rapidly growing Asian markets, and the Australian government has prioritised these sectors accordingly,” said Irving Tan, senior vice president Asia Pacific and Japan at Cisco.

“The aim now with Cisco IoE Innovation Centre, Australia and its ecosystem of partners is to accelerate innovation and the adoption of the IoE in Australia,” Tan said.

The announcement comes the same week Cisco published a report claiming UK Internet of Things startups could generate more than £100bn over the decade as their offerings catch on in industries like healthcare, retail, transport and energy.

The company also said large firms, SMEs, and government organisations in the UK need to cultivate more joint innovation partnerships if any industry stakeholders are to reap the financial benefits of such a proliferation in internet-connected devices.

Three steps to resilient AWS deployments

Picture credit: Flickr/NandorFejer

Hardware fails. Versions expire. Storms happen. An ideal infrastructure is fault-tolerant, so even the failure of an entire datacenter – or Availability Zone in AWS – does not affect the availability of the application.

In traditional IT environments, engineers might duplicate mission-critical tiers to achieve resiliency. This can cost thousands or hundreds of thousands of dollars to maintain and is not even the most effective way to achieve resiliency.On an IaaS platform like Amazon Web Services, it is possible to design fail-over systems with lower fixed costs and zero single points of failure with a custom mix of AWS and 3rd party tools.

Hundreds of small activities contribute to the overall resiliency of the system, but below are the most important foundational principles and strategies.

1. Create a loosely coupled, lean system

This basic system design principle bears repeating: decouple components such that each has little or no knowledge of other components. The more loosely coupled the system is, the better it will scale.

Loose coupling isolates the components of your system and eliminates internal dependencies so that the failure of a single component of your system is unknown by the other components. This creates a series of agnostic black boxes that do not care whether they serve data from EC2 instance A or B, thus creating a more resilient system in the case of the failure of A, B, or another related component.

Best practices:

– Deploy Vanilla Templates. At Logicworks, our standard practice for Managed AWS hosting is to use a “vanilla template” and configure at deployment time through Puppet and configuration management. This gives us fine-grain control over instances at the time of deployment so that if, for example, we need to deploy a security update to our instance configuration, we only touch the code once on the Puppet manifest, rather than having to manually patch every instance deployed with Golden Template. By eliminating your new instances’ dependency on your Golden Template, you reduce the failure risk of the system and allow the instance to be spun up more quickly.

– Simple Queuing Service or Simple Workflow Service. When you use a queue or buffer to relate components, the system can support spillover during load spikes by distributing requests to other components. Put SQS between layers so that the number of instances can scale on its own as needed based the length of the queue. If everything were to be lost, a new instance would pick up queued requests when your application recovers.

– Make your applications as stateless as possible. Application developers have long employed a variety of methods to store session data for users. This almost always makes the scalability of the application suffer, particularly if session state is stored in the database. If you must store state, saving it on the client reduces database load and eliminates server-side dependencies.

– Minimise interaction with the environment using CI tools, like Jenkins.

– Elastic Load Balancers. Distribute instances across multiple Availability Zones (AZs) in Auto Scaling groups. Elastic Load Balancers (ELBs) should distribute traffic among healthy instances based on frequent health checks, which you control the criteria for.

– Store static assets on S3. On the web serving front, best practice is storing static assets on S3 instead of going to the EC2 nodes themselves. Putting CloudFront in front of S3 will let you deploy static assets so you do not have the throughput of those assets going to your application. This not only decreases the likelihood that your EC2 nodes will fail, but also reduces cost by allowing you to run leaner EC2 instance types that do not have to handle content delivery load.

2. Automate your infrastructure

Human intervention is itself a single point of failure. To eliminate this, we create a self-healing, auto scaling infrastructure that dynamically creates and destroys instances and gives them the appropriate roles and resources with custom scripts. This often requires a significant upfront engineering investment.

However, automating your environment before build significantly cuts development and maintenance costs later. An environment that is fully optimised for automation can mean the difference between hours and weeks to deploy instances in new regions or create development environments.

Best practices:

– The infrastructure in action. In the case of the failure of any instance, it is removed from the Auto Scaling group and another instance is spun up to replace it.

  • CloudWatch triggers the new instance spun up from an AMI in S3, copied to a hard drive about to be brought up.
  • The CloudFormation template allows us to automatically set up a VPC, a NAT Gateway, basic security, and creates the tiers of the application and the relationship between them. The goal of the template is to minimally configure the tiers and then get connected to the Puppet master. This template can then be held in a repository, from where it can be checked out as needed, by version (or branch), making it reproducible and easily deployable as new instances when needed – i.e., when existing applications fail or when they experience degraded performance.
  • This minimal configuration lets the tiers be configured by Puppet, a fully expressive language that allows for close control of the machine. Configuring Puppet manifests and making sure the Puppet Master knows what each instance they are spinning up does is one of the more time-consuming and custom solutions a managed service provider can architect.

– Simple failover RDS. RDS offers a simple option for multiple availability-zone failover during disaster recovery. It also attaches the SQL Server instance to an Elastic Block Store with provisioned IOPS for higher performance.

3. Break and Destroy

If you know that things will fail, you can build mechanisms to ensure your system persists no matter what happens. In order to create a resilient application, cloud engineers must anticipate what could possibly develop a bug or be destroyed and eliminate those weaknesses.

This principle is so crucial to the creation of resilient deployments that Netflix – true innovators in resiliency testing – has created an entire squadron of Chaos Engineers “entirely focused on controlled failure injection.” Implementing best practices and then constantly monitoring and updating your system is only the first step to creating a fail-proof environment.

Best practices:

– Performance testing. In software engineering as in IaaS, performance testing is often the last and most-frequently ignored phase of testing. Subjecting your database or web tier to stress or performance tests from the very beginning of the design phase – and not just from a single location inside a firewall – will allow you to measure how your system will perform in the real world.

– Unleash the Simian Army. If you a survive Simian Army attack on your production environment with zero downtime or latency, it is proof that your system is truly resilient. Netflix’s open-source suite of chaotic destroyers is on GitHub. Induced failures prevent future failures.

Unfortunately, deploying resilient infrastructure is not just a set of to-dos. It requires a constant focus throughout AWS deployment on optimising for automatic fail-over precise configuration of various native and 3rd party tools.

The post 3 Steps to Resilient AWS Deployments appeared first on Cloud Computing News.

OpenPower members reveal open source cloud tech mashups

OpenPower members have been busy creating open source server specs based on the Power8 architecture

OpenPower members have been busy creating open source server specs based on the Power8 architecture

OpenPower Foundation members pulled the curtain back on a number of open source cloud datacentre technologies including the first commercially available OpenPower-based server, and the first open server spec that combines OpenStack, Open Compute and OpenPower architectures.

Members of the open source hardware community, which IBM – the community’s founding organisation – said now numbers over 110 organisations, revealed a number of joint hardware initiatives falling under the OpenPower umbrella.

The Foundation announced the first OpenPower-based servers, developed by Chinese ODM Tyan (TYAN TN71-BP012), a variant of those IBM recently said it would add to its SoftLayer datacentres. The servers will be commercially available in the second half of 2015.

IBM and Wistron also revealed an OpenPower-based server using GPU and networking technology from Nvidia and Mellanox, respectively, which is being aimed at high performance compute workloads.

The foundation also announced the first server spec and motherboard mock-up combining the design concepts of the Facebook-led open source hardware project, Open Compute, with OpenStack and OpenPower technologies, an initiative Rackspace – among other service providers with a vested interest all three open source projects – was keen to bring to fruition.

“Collaborating across our open development communities will accelerate and broaden the raw potential of a fully open datacentre. We have a running start together and look forward to technical collaboration and events to engage our broader community,” said Corey Bell, chief executive officer of the Open Compute Project.

In an interview with BCN earlier this month Brad McCredie, IBM fellow and vice president of IBM Power Systems Development and president of the OpenPower Foundation said there is a big opportunity for Power to succeed in the market, and that IBM hopes to claim up to 30 per cent of the scale-out market in a matter of years.

Ken King, general manager OpenPower Alliances at IBM said: “OpenPower started off as an idea that immediately resonated with our technology partners to strengthen their scale out implementations like analytics.  Now, OpenPower is fundamental to every conversation IBM is having with clients — from HPC to scale out computing to cloud service providers.  Choice, freedom and better performance are strategic imperatives guiding customers around the globe, and OpenPOWER is leading the way.

Survey Shows New Opportunities Due To Evolving Cloud Technology

The cloud computing market has greatly evolved in recent years, and many are viewing it as a mainstream and established way of handling part of doing business. A recent survey sponsored by Microsoft and conducted by 451 research found that 70 percent of the opportunity of the 1,700 cloud and hosting customers around the world focuses on application hosting, managed data services like backup and disaster recovery, and security. It also found that IT organizations want cloud solutions that go beyond their infrastructure needs.

 

451 research

 

The need for these types of services is particularly high when cloud providers can drive more business by delivering custom integrations, disaster recovery and service-level agreements that are personalized for the organizations needs.

 

Many businesses that utilize cloud services have a hybrid public-private system. This will give cloud service providers the opportunity to increase revenue by providing value-added services to the customer. Cloud service providers can also gain a reputation and become trusted cloud advisors.

 

With many businesses already using cloud services or evaluating a deployment plan, it isn’t enough for service providers to have many data centers available at a low price. Trust, uptime, security, performance and technical expertise are what separate competitors. Providers need to be able to align their own values with their customer’s values.

 

The survey also found that the decision making regarding cloud services is increasingly moving away from the IT manager and towards the higher level management. Chief Information Officers (CIO’s) and Chief Technology Offers (CTO’s) are the ones leading the transition to the cloud. Just over half of the survey participants claimed this to be true in their organization.

 

You can download the survey results on the Microsoft Website.

The post Survey Shows New Opportunities Due To Evolving Cloud Technology appeared first on Cloud News Daily.

DevOps Foundation “Certification Track” at @DevOpsSummit New York [#DevOps]

SYS-CON Events announced today the DevOps Foundation Certification Course, being held June ?, 2015, in conjunction with DevOps Summit and 16th Cloud Expo at the Javits Center in New York City, NY.
This sixteen (16) hour course provides an introduction to DevOps – the cultural and professional movement that stresses communication, collaboration, integration and automation in order to improve the flow of work between software developers and IT operations professionals. Improved workflows will result in an improved ability to design, develop, deploy and operate software and services faster.

read more

Screen Scraping Bots By @DISTIL | @CloudExpo [#Cloud]

Like DDoS attacks, aggressive screen scraping can create huge spikes in traffic, cause brownouts, and even take you down for extended periods of time. Web scraping doesn’t make the headlines and most people aren’t aware of the damage it can cause to your website’s success.
Thieves and unauthorized content aggregators use screen scraping bots and cheap labor to steal your content, repackage it for sale, or place it on unauthorized sites – all of which hurt your SEO, negatively impact your brand, and reduce your ability to monetize your intellectual property. Below I’ve outlined just a few of the many ways that screen scraping can impact a company and its website.

read more

Storms Brewing in the Cloud By @E_deSouza | @CloudExpo [#Cloud]

Recent events have taught us that everyone is vulnerable to data breaches. Now that the majority of businesses are running services in the cloud, whether sanctioned, rogue or Shadow IT, there is much work to be done in beefing up cloud security. And, with each major data breach that takes place in the cloud, trust in the cloud is further eroded.
Cloud Is an Attractive Target for Data Breaches
The increasing pervasiveness of the cloud makes it an attractive target for hackers and cybercriminals. Cloud is not only for business and leisure applications; it’s also the back end for electricity grids, water treatment plants, healthcare applications, smart cars, smart refrigerators and so much more. With each device or source that connects to the cloud it creates additional pathways or access points for unauthorized users to infiltrate. The increasing volume of data that is either stored or transacted in the cloud is a strong lure for hacktivists and cybercriminals.

read more

JFrog Adds Docker Support to Bintray | @JFrog @DevOpsSummit [#DevOps]

JFrog on Thursday announced that it has added Docker support to Bintray, its distribution-as-a-service (DaaS) platform. When combined with JFrog’s Artifactory binary repository management system, organizations can now manage Docker images with an end-to-end solution that supports all technologies.
The new version of Bintray allows organizations to create an unlimited number of private Docker repositories, and through the use of fast Akamai content delivery networks (CDNs), it decreases the download time of large Docker repositories, speeding DevOps work significantly. Bintray’s highly available service and download layer also helps Docker users eliminate service disruption and performance degradation issues.

read more

Win Server 2003 EOS Is Coming [New Survey] By @AppZero_Inc | @CloudExpo [#Cloud]

The clock is ticking: the End of Support for Windows Server 2003, #WS2003EOS, arrives this July, as in four months from now. This means there will be no more patches or security updates and your applications and business will be at risk. New threats won’t be addressed and WS2003 systems will be a security risk and compliance nightmare. Especially for those in heavily regulated industries — pharmaceuticals, banking/finance and insurance, as well as any company that processes credit card transactions — this will cause a heavy compliance burden and could put you at risk of accruing penalties and fines.

read more

OpenShift Commons Latest in Battle with Cloud Foundry By @IoT2040 | @DevOpsSummit [#DevOps]

Red Hat made the interesting times in which we live a little more interesting recently by announcing OpenShift Commons, “a place for companies using OpenShift to accelerate its success and adoption. To do this we’ll act as resources for each other, share best practices and provide a forum for peer-to-peer communication,” according to an official statement.

A total of 38 companies have committed to being part of the OpenShift Commons, including Cisco, Dell, and Docker. Others include Cloudera, Hortonworks, Iron.io, New Relic, and Zend.

The announcement is another move in the ongoing PaaS battle between OpenShift and Cloud Foundry, which got its Foundation last year.

A total of 38 companies have committed to being part of the OpenShift Commons, including Cisco, Dell, and Docker. Others include Cloudera, Hortonworks, Iron.io, New Relic, and Zend.

The announcement is another move in the ongoing PaaS battle between OpenShift and Cloud Foundry, which got its Foundation last year.

The two platforms are both OpenShift-friendly, and have an open-source nature that encourages community contributions and development.

The emerging, competing PaaS ecosystems seem to add strength to the intertwined notions of more aggressive cloud computing development in enterprises, the DevOps approach in leveraging the potential speed and flexibility of cloud, and keeping PaaS from being subsumed into major infrastructure (IaaS) providers such as Amazon and Salesforce.

Look for Jerome Pettazoni of Docker and Gordon Haff of Red Hat to cover much of the related ground in the world of PaaS at Cloud Expo & The DevOps Summit in New York June 9-11 at the Javits Center.

read more

The cloud news categorized.