Skip to content

nkhuyu/NeverwinterDP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NeverwinterDP - NDP

NeverwinterDP (NDP) the Big Data Pipeline for Hadoop and Data Systems, designed to reliably scale to billions of events.

Community

[Join us] (https://github.com/DemandCube/NeverwinterDP/blob/master/README.md#join-us-if) if you have [Grit] (http://www.ted.com/talks/angela_lee_duckworth_the_key_to_success_grit)

WHAT IS NEVERWINTER DP?

NeverwinterDP is a distributed, reliable, and available service for efficiently collecting, aggregating, and moving large amounts of log/event data.

Neverwinter is an open source distributed data ingestion system/framework for capturing large amounts of data (ranging from gigabytes to petabytes) to be (processed or saved in real-time) to one or more down databases / repositories (i.e. Hadoop, HDFS, S3, Mysql, Hbase, Storm).

Neverwinter was designed and written from the ground up for reliability, scalability, and operational maintainability to support the growing needs of event and message data collection at scale to support startups and enterprise organizations.

Neverwinter - The real-time log/data pipeline. Sparkngin(Nginx) Kafka, Scribengin, leveraging processing in Hadoop and Storm the Data pipeline integrates with Logstash, Ganglia and Nagios Integration. It's a replacement for flume but also can be integrated with it.

It Supports:

  1. Batch Analytics
  2. Realtime Analytics (Storm and Spark-Streaming)

Neverwinter is the combination of three major open source project that leverage the best in open source.

  1. Sparkngin (powered by Nginx)
  2. Kafka
  3. Scribengin

Now that we have used enough buzz words. Neverwinter reliably captures lots of data and saves it to hadoop and other systems.

WHAT CAN NEVERWINTER DO?

Neverwinter allows data ingestion from any system that can emit http/rest (or zeromq) calls and then publish this data to a down stream database, including Hive, HBase, relational databases or even proprietary data stores. A single Neverwinter pipeline can combine data from multiple sources and deliver them to multiple sources, allowing for data to be delivered to multiple team or an entire organization.

Neverwinter is targeted at data and analytics engineering teams who expect response times ranging from sub-second to minutes. Neverwinter breaks the false choice between having a batch or real-time system. Also the false choice between having a fast or maintainable system.

Goals

  • Provide Automatic Failover
  • Reliable data delivery under single node failures in any tier
  • Horizontal Scalability
  • Ability to reliably work in a environment running [Chaos Monkey] (https://github.com/Netflix/SimianArmy/wiki/Chaos-Monkey) and the [Simian Army] (https://github.com/Netflix/SimianArmy/wiki)
  • Easy operational maintainability
  • High performance and low cost pipeline
  • Data flow connectors to multiple destination systems (HDFS, HBase, Oracle, Teradata, Netteza)
  • Symantics that support back pressure on extreme load

Use-Cases / Examples

Components

  1. Http/Rest/ZeroMQ Log Collection Endpoint - Sparkngin
  1. Data Bus
  1. Data Pump/Transport

Related Projects

  1. vagrant-flow Vagrant Plugin allows for a better ansible flow also generates ansible inventory files, and runs playbooks
  2. ansible-flow Ansible modules to make working with ansible easier
  3. DeveloperPlayBooks Ansible Playbooks to quickly setup and install DemandCube projects
  4. DemandSpike Load Testing Framework for Distributed Applications
  5. KafkaSphere Web console for Kafka that has a Web tier that talks to a REST Api tier

Copy all Repositories

curl -s https://api.github.com/orgs/DemandCube/repos | ruby -rubygems -e "require 'json'; JSON.load(STDIN.read).each {|repo| %x[git clone #{repo['ssh_url']} ]}"

Architecture

  1. High Level
    +-----------+    +-------------+    +---------------+    +------------+    +------------+
    |Source     |    |Rest         |    |Persistent     |    |Data        |    |Data        |
    | Client    |+-->| Endpoint    |+-->| Queue/Buffer  |+-->| Distributor|+-->| Sink       |
    |           |    |(Sparkngin)  |    |(Kafka/Kinesis)|    |(Scribengin)|    |(Hive/Hbase)|
    +-----------+    +-------------+    +---------------+    +------------+    +------------+
  1. Mid Level
  2. Source Client
  3. Collector Endpoint
  4. Collector Producer
  5. Persistent Queue/Buffer
  6. Data Distributor / Stream Processor (CEP - Complex Event Processing)
  7. Data Sink

Transport Protocol Levels

  1. Binary
  2. Framework
  3. Schema
  4. Encryption
Binary
This level transports any arbitrary data
Framework
This level transports any data wrapped in fields of data needed by the framework for monitorying
Schema
This level adds schemas to the data being transported in the framework layer
Encryption
This level adds encrytion around the data in schemas or the framework transport

NeverwinterDP Architecture NeverwinterDP Architecture with Use-cases NeverwinterDP Architecture with concrete integrations

Yarn

Join us if

Then make friends with us on the mailing list and start by making a contribution and solving a [Issue] ()

How to Contribute

There are many ways you can contribute towards the project. A few of these are:

Jump in on discussions: It is possible that someone initiates a thread on the Mailing List describing a problem that you have dealt with in the past. You can help the project by chiming in on that thread and guiding that user to overcome or workaround that problem or limitation.

File Bugs: If you notice a problem and are sure it is a bug, then go ahead and file a GitHub Issue. If however, you are not very sure that it is a bug, you should first confirm it by discussing it on the Mailing List.

Review Code: If you see that a GitHub Issue has a "patch available" status, go ahead and review it. The other way is to review code submited with a pull request, it is the prefered way. It cannot be stressed enough that you must be kind in your review and explain the rationale for your feedback and suggestions. Also note that not all review feedback is accepted - often times it is a compromise between the contributor and reviewer. If you are happy with the change and do not spot any major issues, then +1 it.

Provide Patches: We encourage you to assign the relevant GitHub Issue to yourself and supply a patch or pull request for it. The patch you provide can be code, documentation, tests, configs, build changes, or any combination of these.

Workflow

  1. Create issue on NeverwinterDP for the work (linking only be convention)
  2. Announce issue on mailinglist and discuss design on the mailinglist
  3. Sign CLA if you haven't yet - request from neema ( at ) demandcube.com
  4. Do development according Git Workflow Summary
  5. Request Code Review on NeverwinterDP mailinglist e.g. "[Code] Review Request Issue #111: Title" Followed by link to pull request.
  • Additionally include a short summary of what feature/bug/enhancement this pull request addresses.
  • put a link to the pull request in the issue
  • label the issue with "* needs a code review *"
  1. A Commiter reviews the issue, and changes in the pull request (Accepting or requesting changes first)

(Remember to update Kanban during this process)

Git Workflow Summary

  1. Fork the Repository or Update Fork
  2. **Create a branch for your feature development - off of master or appropriate branch **
  3. Do your Development
  4. Stay in your feature branch
  5. Squash commit on your feature branch (Optional)
  6. Update local master from upstream repository
  7. Merge from feature branch onto your local master branch
  8. Issue pull request on github
  9. Stop making changes on the master branch till merged

If you have a issue that needs a code review:

  1. Announce it on the mailing list according to
  2. label the issue with "* needs a code review *"
  3. put a link to the pull request in the issue

If you did a code review, your requested changes from the submitter have been fixed then:

  1. remove the label "* needs a code review *"
  2. label the issue with "* ready to merge *"
  3. comment on the ticket "ready-to-merge:@yourgithubusername"
  4. If your a commiter then merge in the changes

Git Workflow to Develop a new Feature

  • Step 1(New Fork):

    • Hit the "Fork" Icon in Github.com web site when on the Repository Page e.g. "DemandCube/NeverwinterDP"

  • Step 1(Existing Fork e.g. "YourUserName/NeverwinterDP"):

    • pull in changes from the master upstream/parent repo

    • No ff is the way you should since it won't automatically commit and you can comment the merge commit

    • git pull --no-ff https://github.com/DemandCube/NeverwinterDP.git master
    • Now fix any merge conflicts if they exist

  • Step 2:

    • Create a branch todo your development "feature/featurename"

    • git checkout -b feature/featurename master
  • Step 3:

    • Do any development that you need todo

  • Step 4 (Optional - but recommended):

    • make sure your still in the feature branch

    • git checkout feature/featurename
    • squash commits in the feature/featurename when your done and ready to commit

    • This is in Repo => "YourUserName/NeverwinterDP" on branch "feature/featurename"

    • Assumes your branch is made from "master"

    • git rebase -i master
  • Step 5:

    • Now merge updates into the master

    • git checkout master
    • git pull --no-ff https://github.com/DemandCube/NeverwinterDP.git master
    • resolve any dependency conflicts

  • Step 6:

    • Now merge your feature into your local master

    • git checkout master
    • git merge feature/featurename
    • Push to github

    • git push origin master
  • Step 7:

    • Issue pull request on Github

      • Request Code Review on NeverwinterDP mailinglist e.g. "Review Request Issue #111: Title" Followed by link to pull request.
      • include a short summary of what feature/bug/enhancement this pull request addresses.
      • put a link to the pull request in the issue
      • label the issue with "* needs a code review *"

Keep your fork updated

Github Fork a Repo Help

  • Add the remote, call it "upstream":
git remote add upstream git@github.com:DemandCube/NeverwinterDP.git
  • Fetch all the branches of that remote into remote-tracking branches,
  • such as upstream/master:
git fetch upstream
  • Make sure that you're on your master branch:
git checkout master
  • Merge upstream changes to your master branch
git merge upstream/master

How to Submit - Patches/Code

  1. Create a patch
  • Make sure it applies cleanly against trunk
  1. Test
  • If code supply tests and unit test
  1. Propose New Features or API
  • Document the new Feature or API in the Wiki, the get consensus by discussing on the mailing list
  1. Open a GitHub Ticket
  • Create the patch or pull request, attach your patch or pull request to the Issue.
    • Your changes should be well-formated, readable and lots of comments
    • Add tests
    • Add to documentation, especially if it changes configs
    • Add documentation so developers, can understand the feature or API to continue to contribute
  • Document information about the issue and approach you took to fix it and put it in the issue.
  • Send a message on the mailing list requesting a commiter review it.
  • Nag the list if we (commiters) don't review it and followup with us.
  1. How to create a patch file:
  • The preferred naming convention for Sparkngin patches is SPARKNGIN-12345-0.patch where 12345 is the Issue number and 0 is the version of the patch.
  • Patch Command:
    • $ git diff > /path/to/SPARKNGIN-1234-0.patch
  1. How to apply someone else's patch file:
$ cd ~/src/Sparkngin # or wherever you keep the root of your Sparkngin source tree 
$ patch -p1 < SPARKNGIN-1234-0.patch # Default when using git diff
$ patch -p0 < SPARKNGIN-1234-0.patch # When using git diff --no-prefix
  1. Reviewing Patches
  1. Pull Request

Github Help

Kanban Board

If you can't actually move issues around let me (Steve) know.

  • "Accepted" - are tickets you plan to start working on this week.
  • "Working on" - are tickets your actively working on
  • "In code review" - are tickets that need a code review ( You should have put a code review request on the mailinglist ) (If no one responded it's up to you to followup)
  • "Working on documentation and automated tests" - are tickets your finishing the documentation and creating, unit, integration, configuration management/deployment (Ansible) installation tests.
  • "In documentation and automated test review" - review specifically of the documentation and test. Follows the same process as code reviews. A review should be requested on the mailinglist.
  • "Done" - The task should pass the automated integration test review from Jenkins

Tools-Core:

  • ansible
  • gradle

Team Tools:

  • Github
  • Huboard
  • github-flow
  • ansible
  • vagrant

Supported Servers:

  • RHEL/CentOS
  • Ubuntu

Main Programming Languages:

  • Java
  • Python
  • Javascript
  • C

Other Languages:

  • Ruby

Other

HA Testing

Providing

  • Data Steaming/Collection Framework
  • High Availability and Scalable Data Collection
  • Data Monitoring
  • Autoconfiguration - with ZeroConf - Stored in Zookeeper
  • Data Partition Notification

Additional Features: High Availability and Performant Log Collection

  • Log Distribution - Multi-data center
  • Log Replay
  • Log Monitoring
  • Log Search
  • Log Operational Watchdog
  • Log Reporting
  • Log Alerting

Logs are fed into

  • HDFS
  • Elastic Search
  • Hive
  • Mysql
  • HBase
  • Vertica

TODO

  • Put in contributor information and update projects to reference (Kafka and Flume)
  • Log Stash to Neverwinter Plugin
  • Log Collection Standard
  • Neverwinter Nginx Plugin to Kafka
  • Neverwinter Kafka Queue Monitor in Kibana
  • Develop NW Distributed Data Pump -> HCatalog - Think can be distributed framework for managing a cluster of writers to Flume or Logstash
  • Add other main github projects

Areas to flush out

Prototype framework with zmq in python

Topics

  • Registry

  • Heartbeat

  • Stats

  • LogTopics

  • Develop - Protocol

Main development

  • Sparkngin
  • Connector Component

Monitoring Outof the box

Out of the box super easy plugin to

  • Nagios
  • Ganglia

NWD-HighLevel

[Nginx] -> Openresty, libkafka with spillover buffer, spillagent, window registration and monitoring

  • Nginx -> Kafka -> Flume -> Hcatalog -> Hive

[Log]

  • Epoch timestamp, ip, process and optional type and version

[Monitoring] Log normal, error, watchdog, normal spill, error spill, watchdog spill

  • Type, Lines, Size per minute per process per server

[Concept/Abstraction] _ Emmiter Client

  • Zero Conf - module to -> zookeeper
  • async
  • persistence
  • send
  • spillover
  • spillover recovery agent
  • LogEmitter
  • LogFormat
  • LogVersion
  • LogType
  • WatchDogEmitter
  • WatchDog Register
  • WatchDog Monitor and Alerts

[Reporting]

  • Summary Report
  • LogType Report
  • Key Coverage Report
  • Value Coverage Report

[Support]

  • Data Processing Assesment
  • Process management
  • Annual Data Assessment

[Dependencies]

[ To investigate ]

  • Nginx -> Kafka
  • Nginx -> Logrotate
  • Nginx -> module timestamp
  • Nginx -> logrotation module
  • Logrotate frequency mod
  • Logtail - find reference to old project that I looked at
  • Filehandle monitor
  • fuser
  • inotify-tools

Capabilities

  • file handle monitor
  • file process monitor
  • file tail
  • Kafka efficient socket to file transfer
  +------------+    +-----------+    +------------+    +----------------+
  |NW          |    |NW         |    |NW          |    |                |
  |            |    |           |    |            |    |                |
  |  Front End |    |  Data Bus |    |  Data Pump |    | End Point      |
  |   Emitter  |+-->|           |+-->|            |+-->|- HDFS          |
  |  - Http Get|    |           |    |            |    |- Elastic Search|
  |  - Json    |    |           |    |            |    |                |
  |  - Avro    |    |           |    |            |    |                |
  +------------+    +-----------+    +------------+    +----------------+



  +-----------+     +---------+     +-----+    +--------+
  | Log Stash |     |Sparkngin|     |Kafka|    |Hadoop  |
  |-----------|     |---------|     |-----|    |--------|
  |           |+--->|         |+--->|     |+-->|HCatalog|
  |           |     |         |     |     |    |HBase   |
  +-----------+     +---------+     +-----+    +--------+
                                       +
                                       |        +--------+
                                       +------->|Storm   |
                                                |--------|
                                                |        |
                                                |        |
                                                +--------+
  
  http://www.asciiflow.com/#Draw

QUESTIONS

Should a distributed fault tolerant data transport layer from Kafka to hadoop be build on

    1. Storm
    1. Yarn

[ Front End Emmiter ]

  • The concept is to have a nginx front end that will ship logs to

[ log collection (logstash] -> [rest end point (nginx) ] -> [ data bus (kafka) ] -> [ data pump/transport (storm or yarn) ] -> [ rdbms (hive - data registration live) | file system (hdfs) | key store (hbase) ]

Look at developing the protocol prototype with a Avro Producer using zmq and a Avro Consumer communicating through kafka. -Version/Lineage,Heartbeat,Source,Header/Footer. Take design aspects from Camus , must provide built monitoring. There needs to be a messaging (source timestamp, system timestamp) and a way to inspect where hour boundries exist on the queue. Additionally need a way to register servers and when they come on and offline for log registration.

Should there be the ability for schema registration, so that schema's can be pushed to downstream?

Should there be a mapping and general payload support. Json support

Should Avro / Thrift / Protobuff / HBase / Hive / Storm - Type Mappings be maintained?

Kafka Resources

Four Level Protocol Stack

  • Level 0 Raw
  • Level 1 Envelop Framework (Leverage Avro/Protocol Buffers/Thrift)
  • Level 2 Event Payload
  • Level 3 Encrypted Payload
  • Events configured to flow by topic and get partitioned by either server timestamp or application supplied
  • Sparknginx in-memory encryption layer.

Preferred Development Tools

About

NeverwinterDP - The Data Pipeline for Hadoop and Data Systems

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published