Skip to content

abecciu/beehive

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beehive

What is Beehive?

  • Distributed router
  • Application deployment tool
  • Written in erlang, c and ruby
  • Scalable
  • Application load-balancer
  • Template-able
  • Configurable
  • And much more

Quickstart

make
./start_dev.sh

This will start beehive on your local machine with the root /var/lib/beehive. If you want to use a different directory, (such as /tmp/beehive) run:

export BEEHIVE_HOME=/tmp/beehive

How it works

The incredibly basic architecture diagram of beehive looks like:

Distributed Routing layer
----------------------------
  |         |         |    
Backend   Backend   Backend
  |         |         |    
Storage   Storage   Storage
----------------------------

The distributed routing layer, written in erlang uses Mnesia, the distributed database management system intelligently routes requests across the bees. The router currently can handle http requests. Because Beehive was written with the intention of being extensible it can be extensible to other protocols.

It handles pending connections seamlessly and allows for streaming connections. It also keeps track of statistical data available through a web interface. The router itself has a RESTful interface for adding bees, which don't even need to sit inside the Beehive network. This can be useful for putting the router in front of a personal cluster (such as Eucalyptus) and expanding to the cloud environment (such as EC2) without having to change a line of code.

Beehive keeps track of the available bees for the known applications.

Beehive has an event system that allows for notifications along the system in a nonblocking manner. This way system events, statistic gathering log events can all be handled without affecting the performance of the router, which is tuned for speed.


For more information about each particular part of the project, there are READMEs in each of the appropriate directories.


Thanks

  • Mad props for the super smart folks at Heroku for their sweet architecture ideas and for providing such a rad interface and an unmatched user experience.
  • AT&T R&D for their support of the project

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Copyright

Copyright (c) 2010 Ari Lerner. See LICENSE for details.

About

Honeycombs of applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Erlang 60.0%
  • JavaScript 29.7%
  • Ruby 6.1%
  • Shell 4.2%