+ All Categories
Home > Software > Upping your NiFi Game with Docker

Upping your NiFi Game with Docker

Date post: 13-Apr-2017
Category:
Upload: aldrin-piri
View: 411 times
Download: 3 times
Share this document with a friend
19
+ UPPING YOUR NIFI GAME WITH DOCKER 29 OCTOBER 2015 Aldrin Piri @aldrinpiri
Transcript
Page 1: Upping your NiFi Game with Docker

🐳+💧UPPING YOUR NIFI GAME WITH DOCKER29 OCTOBER 2015

Aldrin Piri@aldrinpiri

Page 2: Upping your NiFi Game with Docker

WHAT IS DOCKER?A line of khakis, pants and casual clothing

It’s an obscure open source project

Page 3: Upping your NiFi Game with Docker

WHAT IS DOCKER?“Docker is an open platform for building, shipping and running distributed applications. It gives programmers, development teams and operations engineers the common toolbox they need to take advantage of the distributed and networked nature of modern applications.”

Page 4: Upping your NiFi Game with Docker

DOCKER IS AN ECOSYSTEM

Docker Hub https://hub.docker.com/• A registry of available images

Tooling• Linux provides a native experience• Windows & OS X make use of a VM and

associated tools

People and Organizations

Page 5: Upping your NiFi Game with Docker

GLOSSARY FOR THE TALKImage

• Binary representation of a filesystemContainer

• Instance of an imageCopy on Write

• Images are untouched until changes are needed, at which point a new copy is created

Volumes• Bridge the external host world into the container

Page 6: Upping your NiFi Game with Docker

ENVIRONMENTOS X 10.10Docker Toolbox

• https://www.docker.com/docker-toolbox

Docker, Docker Machine, & Docker Compose

Page 7: Upping your NiFi Game with Docker

DOCKER-MACHINEProvisions Docker environments

• Locally: Native Docker daemon, VirtualBox

• Cloud: Amazon EC2, Azure, DigitalOcean…

Establishes command line for communicating with instances

Page 8: Upping your NiFi Game with Docker

DOCKER• Run images to create containers

• The lifespan of a container is tied to the process that originates it• Defaults specified via ENTRYPOINT or CMD

• Specify arguments on run inclusive of providing• Volumes• Links to other running containers (unidirectional network mappings via

an alias)• Environment variables• Exposed Ports• Alternate ENTRYPOINT/CMD

• If an image is present, it will attempt to be pulled from the Docker Hub and locally cached

Page 10: Upping your NiFi Game with Docker

WHERE DOES IT ALL COME FROM?Dockerfile is our source code

Page 11: Upping your NiFi Game with Docker

WHERE DOES IT ALL COME FROM?An image is our compiled binary

Page 12: Upping your NiFi Game with Docker

DOCKER FOR DEVELOPINGVolumes allow mapping libraries directly into the environment

Links allow interacting with services at defined aliases

Page 13: Upping your NiFi Game with Docker

CLUSTERING

Page 14: Upping your NiFi Game with Docker

DOCKER NETWORKDocker’s libnetwork makes great strides in increasing the networking model

• Service Discovery• Pluggable drivers

Unfortunately, it has not been released• Coming soon: ~1.9.0

There are a few ways to handle this with the current release inclusive of running a DNS server/service discovery, but we are going a simple route for ease.

Page 15: Upping your NiFi Game with Docker

ENTER AMBASSADORSProvides service/container portability as links are hardcoded

Manager Node

ManagerAmbassador

NodeAmbassador

Page 16: Upping your NiFi Game with Docker

INTRODUCING DOCKER COMPOSE

• Originally a project called fig

• Provides the definition and running of multi-container applications

• YAML descriptor files

• docker-compose drives controlling the application

Page 17: Upping your NiFi Game with Docker

DOCKER-COMPOSE.YML

Page 18: Upping your NiFi Game with Docker

RESOURCESDocker

• https://www.docker.com/

Visualizing Docker Containers and Images• http://merrigrove.blogspot.com/2015/10/visualizing-docker-containers-and-

images.html

Jess Frazelle - Dockerize everything• Container Hacks and Fun Images Presentation

• https://www.youtube.com/watch?v=1qlLUf7KtAw• https://github.com/jfrazelle

Source Code and “Script”• https://github.com/apiri/docker-with-nifi

Page 19: Upping your NiFi Game with Docker

THANKS!


Recommended