This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Run the below Vagrant to bring up the necessary nifi, active mq, zookeper and kafka | |
- Create a dummy que name "test" in activemq | |
- Create a dummy topic "test" in kafka | |
- start nifi | |
- navigate to localhost:8080/nifi/ | |
- From Dashboard configure the source and sink processor defination | |
- https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#clustering | |
- http://ingest.tips/2014/12/22/getting-started-with-apache-nifi/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
config.vm.provision "shell", inline: "echo Hello" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerizing MongoDB: 3.1 Dockerfile for building MongoDB 3.1 images | |
# Based on centos:centos7, installs MongoDB | |
FROM centos:centos7 | |
MAINTAINER Jayaram Pradhan <[email protected]> | |
# Set up mongodb yum repo entry | |
# https://www.liquidweb.com/kb/how-to-install-mongodb-on-centos-6/ | |
RUN echo -e "\ |