Category Archives: containers

OpenStack Liberty release features enhancements for SDN and containers

OpenStack SummitThe twelfth release of OpenStack will tackle the cloud software toolset’s size limitations and will offer new options for software defined networking, says the Openstack Foundation.

The new version, Liberty, will help cloud software builders to create more manageable and scalable enterprise services with ‘the broadest support for popular data centre technologies’ the foundation says.

The OpenStack Foundation says Liberty was designed in response to user requests for more detailed management controls. OpenStack has also been criticised for its inability to step up to large scale installations. As a result, its operating core has been strengthened and its production environment will include more powerful tools for managing new technologies, such as containers.

Improvements include a new common library adoption, better configuration management and a new role-based access control (RBAC) for the Heat orchestration and Neutron networking projects. These control improvements, which were specifically requested by cloud operators, will allow them to fine tune security settings at all levels of network and orchestration functions and APIs.

OpenStack’s scalability challenges are to be tackled with an updated model to support very large and multi-location systems. The foundation also promised that Liberty users will see better scaling and performance in the Horizon dashboard, Neutron networking Cinder block storage services and during upgrades to Nova’s computing services.

Liberty also marks the first full OpenStack use of the Magnum containers management project. Magnum will support popular container cluster management tools Kubernetes, Mesos and Docker Swarm. Magnum aims to simplify the adoption of container technology by tying into existing OpenStack services such as Nova, Ironic and Neutron. Further improvements are planned with new project, Kuryr, which integrates directly with native container networking components such as libnetwork.

The Heat orchestration project promises ‘dozens’ of new resources for management, automation and orchestration of the expanded capacity of Liberty.

1,933 individuals across more than 164 organizations contributed to OpenStack Liberty through upstream code, reviews, documentation and internationalization efforts. The top code committers to the Liberty release were HP, Red Hat, Mirantis, IBM, Rackspace, Huawei, Intel, Cisco, VMware, and NEC.

Tech News Recap for the Week of 9/14/2015

Were you busy last week? Here’s a quick tech news recap of articles you may have missed from the week of 9/14/2015.

Tech News RecapAT&T says malware secretly unlocked hundreds of thousands of phones. A survey indicates that companies will be moving to containers next year. MI5 chief says encryption is putting terrorists beyond the reach of the law. Big data projects have been increasing, but is it because of CIOs?

Tech News Recap

  • Survey Says That Companies Are Set To Move Big Into Containers Next Year
  • AT&T says malware secretly unlocked hundreds of thousands of phones
  • VMware NSX roadmap puts focus on SDDC and cloud security
  • Encryption puts terrorists beyond the reach of the law, says MI5 chief
  • DoD CIO plans to let contractors use commercial cloud services on DoD property
  • The Storage (R)Evolution or The Storage Superstorm?
  • Why (and how) VMware created a new type of virtualization just for containers
  • Big data projects gaining steam, but not due to the CIO
  • Is the Cloud Right for You?
  • How Sunny Delight juices up sales with cloud-based analytics
  • 10 ways automation may open up new IT job opportunities
  • Why IT Buyers Choose Hyperconverged Infrastructure
  • Dreamforce: Uber CEO Tells How the Cloud Made Ride-Sharing Possible
  • Should You Trust Your CEO With Cloud Computing Decisions?
  • Why the future of sports is in the cloud

There’s been a lot of articles around containers and container management tools. If you would like to learn more, download our whitepaper, “10 Things to Know About Docker

 

By Ben Stephenson, Emerging Media Specialist

Tech News Recap for the Week of 9/14/2015

Were you busy last week? Here’s a quick tech news recap of articles you may have missed from the week of 9/14/2015.

Tech News RecapAT&T says malware secretly unlocked hundreds of thousands of phones. A survey indicates that companies will be moving to containers next year. MI5 chief says encryption is putting terrorists beyond the reach of the law. Big data projects have been increasing, but is it because of CIOs?

Tech News Recap

  • Survey Says That Companies Are Set To Move Big Into Containers Next Year
  • AT&T says malware secretly unlocked hundreds of thousands of phones
  • VMware NSX roadmap puts focus on SDDC and cloud security
  • Encryption puts terrorists beyond the reach of the law, says MI5 chief
  • DoD CIO plans to let contractors use commercial cloud services on DoD property
  • The Storage (R)Evolution or The Storage Superstorm?
  • Why (and how) VMware created a new type of virtualization just for containers
  • Big data projects gaining steam, but not due to the CIO
  • Is the Cloud Right for You?
  • How Sunny Delight juices up sales with cloud-based analytics
  • 10 ways automation may open up new IT job opportunities
  • Why IT Buyers Choose Hyperconverged Infrastructure
  • Dreamforce: Uber CEO Tells How the Cloud Made Ride-Sharing Possible
  • Should You Trust Your CEO With Cloud Computing Decisions?
  • Why the future of sports is in the cloud

There’s been a lot of articles around containers and container management tools. If you would like to learn more, download our whitepaper, “10 Things to Know About Docker

 

By Ben Stephenson, Emerging Media Specialist

10 Things to Know About Docker

DockerIt’s possible that containers and container management tools like Docker will be the single most important thing to happen to the data center since the mainstream adoption of hardware virtualization in the 90s. In the past 12 months, the technology has matured beyond powering large-scale startups like Twitter and Yelp and found its way into the data centers of major banks, retailers and even NASA. When I first heard about Docker a couple years ago, I started off as a skeptic. I blew it off as skillful marketing hype around an old concept of Linux containers. But after incorporating it successfully into several projects at Spantree I am now a convert. It’s saved my team an enormous amount of time, money and headaches and has become the underpinning of our technical stack.

If you’re anything like me, you’re often time crunched and may not have a chance to check out every shiny new toy that blows up on Github overnight. So this article is an attempt to quickly impart 10 nuggets of wisdom that will help you understand what Docker is and why it’s useful.

Docker is a container management tool.

Docker is an engine designed to help you build, ship and execute applications stacks and services as lightweight, portable and isolated containers. The Docker engine sits directly on top of the host operating system. Its containers share the kernel and hardware of the host machine with roughly the same overhead as processes launched directly on the host machine.

But Docker itself isn’t a container system, it merely piggybacks off the existing container facilities baked into the OS, such as LXC on Linux. These container facilities have been baked into operating systems for many years, but Docker provides a much friendlier image management and deployment system for working with these features.

 

Docker is not a hardware virtualization engine.

When Docker was first released, many people compared it to virtual machine hypervisors like VMWare, KVM and Virtualbox. While Docker solves a lot of the same problems and shares many of the same advantages as hypervisors, Docker takes a very different approach. Virtual machines emulate hardware. In other words, when you launch a VM and run a program that hits disk, its generally talking to a “virtual” disk. When you run a CPU-intensive task, those CPU commands need to be translated to something the host CPU understands. All these abstractions come at a cost: two disk layers, two network layers, two processor schedulers, even two whole operating systems that need to be loaded into memory. These limitations typically mean you can only run a few virtual machines on a given piece of hardware before you start to see an unpleasant amount of overhead and churn. On the other hand, you can theoretically run hundreds of Docker containers on the same host machine without issue.

All that being said, containers aren’t a wholesale replacement for virtual machines. Virtual machines provide a tremendous amount of flexibility in areas where containers generally can’t. For example, if you want to run a Linux guest operating system on top of a Windows host, that’s where virtual machines shine.

 

Download the whitepaper to read the rest of the list of 10 Things You Need to Know About Docker

 

 

 

 

Whitepaper by Cedric Hurst, Principal at Spantree

YouTube brings Vitess MySQL scaling magic to Kubernetes

YouTube is working to integrate a beefed up version of MySQL with Kubernetes

YouTube is working to integrate a beefed up version of MySQL with Kubernetes

YouTube is working to integrate Vitess, which improves the ability of MySQL databases to scale in containerised environments, with Kubernetes, an open source container deployment and management tool.

Vitess, which is available as an open source project and pitched as a high-concurrency alternative to NoSQL and vanilla MySQL databases, uses a BSON-based protocol which creates very lightweight connections (around 32KB), and its pooling feature uses Go’s concurrency support to map these lightweight connections to a small pool of MySQL connections; Vitess can handle thousands of connections.

It also handles horizontal and vertical sharding, and can dynamically re-write queries that could impede the database performance.

Anthony Yeh, a software engineer at YouTube said the company is currently using the service to handle metadata for the company’s video service, which handles billions of daily video views and 300 hours of new video uploads per minute.

“Your new website is growing exponentially. After a few rounds of high fives, you start scaling to meet this unexpected demand. While you can always add more front-end servers, eventually your database becomes a bottleneck.”

“Vitess is available as an open source project and runs best in a containerized environment. With Kubernetes and Google Container Engine as your container cluster manager, it’s now a lot easier to get started. We’ve created a single deployment configuration for Vitess that works on any platform that Kubernetes supports,” he explained in a blog post on the Google Cloud Platform website. “In this environment, Vitess provides a MySQL storage layer with improved durability, scalability, and manageability.”

Yeh said the company is just getting started with the Kubernetes integration, but once users will be able to deploy Vitess in containers with Kubernetes on any cloud platform supported by it.