1
0
Fork 0
mirror of https://github.com/mfornos/awesome-microservices.git synced 2024-11-20 11:16:15 -05:00
microservices/README.md

158 lines
7.4 KiB
Markdown
Raw Normal View History

2015-05-03 10:00:18 -04:00
# Awesome Microservices
A curated list of Microservice Architecture related principles and technologies.
2015-05-03 09:57:03 -04:00
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
2015-05-03 11:27:04 -04:00
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
2015-05-03 09:57:03 -04:00
2015-05-03 10:00:18 -04:00
- [Toolkits](#toolkits)
- [JVM](#jvm)
- [Go](#go)
2015-05-03 11:26:53 -04:00
- [Platforms](#platforms)
- [Runtimes](#runtimes)
2015-05-03 10:00:18 -04:00
- [Infrastructure](#infrastructure)
- [API Gateway](#api-gateway)
- [Configuration & Discovery](#configuration-&-discovery)
2015-05-03 11:27:04 -04:00
- [Serialization](#serialization)
2015-05-03 10:00:18 -04:00
- [Monitoring](#monitoring)
- [Logging](#logging)
2015-05-03 11:26:53 -04:00
- [Horizontal Scalability](#horizontal-scalability)
- [Resiliency](#resiliency)
2015-05-03 11:07:51 -04:00
- [IT Automation / Provisioning](#it-automation--provisioning)
- [Continuous Integration & Deployment](#continuous-integration-&-deployment)
- [On-prem](#on-prem)
- [SaaS](#saas)
2015-05-03 11:12:00 -04:00
- [Lightweight Packaging](#lightweight-packaging)
2015-05-03 10:00:18 -04:00
- [Theory](#theory)
- [Articles](#articles)
- [Books](#books)
- [Sites](#sites)
- [License](#license)
2015-05-03 11:07:51 -04:00
- [Acknowledgments](#acknowledgments)
2015-05-03 09:57:03 -04:00
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
## Toolkits
### JVM
2015-05-03 10:12:01 -04:00
- [Vert.X](http://vertx.io/) is a tool-kit for building reactive applications on the JVM.
- [Finagle](http://twitter.github.io/finagle) is an extensible RPC system for the JVM, used to construct high-concurrency servers.
- [Spring Boot](http://projects.spring.io/spring-boot/) makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run".
- [Dropwizard](https://dropwizard.github.io/) is a Java framework for developing ops-friendly, high-performance, RESTful web services.
- [Spray](http://spray.io/) is an open-source toolkit for building REST/HTTP-based integration layers on top of Scala and Akka.
2015-05-03 09:57:03 -04:00
### Go
2015-05-03 10:12:01 -04:00
- [Kite](https://github.com/koding/kite) is a micro-service framework in Go.
- [Martini](http://martini.codegangsta.io/) classy web development in Go.
- [Negroni](https://github.com/codegangsta/negroni) idiomatic HTTP Middleware for Golang.
2015-05-03 09:57:03 -04:00
2015-05-03 11:13:58 -04:00
## Platforms
- [Docker](https://www.docker.com/) an open platform for distributed applications for developers and sysadmins.
- [Fabric8](http://fabric8.io/) is an open-source integration platform for deep management of Java Containers (JVMs).
## Runtimes
- [Karaf](http://karaf.apache.org/) is a small OSGi based runtime which provides a lightweight container.
- [Akka](http://akka.io/) is a toolkit and runtime for building highly concurrent, distributed, and resilient message-driven applications on the JVM.
2015-05-03 09:57:03 -04:00
## Infrastructure
### API Gateway
2015-05-03 10:12:01 -04:00
- [Kong](http://getkong.org/) is an open-source management layer for APIs.
- [Tyk](https://tyk.io/) is an open source, fast and scalable API gateway, portal and API management platform.
- [Camel](http://camel.apache.org/) empowers you to define routing and mediation rules in a variety of domain-specific languages, including a Java-based Fluent API, Spring or Blueprint XML Configuration files, and a Scala DSL.
2015-05-03 09:57:03 -04:00
### Configuration & Discovery
2015-05-03 10:29:19 -04:00
- [ZooKeeper](https://zookeeper.apache.org/) is an effort to develop and maintain an open-source server which enables highly reliable distributed coordination.
- [Etcd](https://github.com/coreos/etcd) a highly-available key-value store for shared configuration and service discovery.
- [Consul](https://consul.io/) Service discovery and configuration made easy. Distributed, highly available, and datacenter-aware.
- [Eureka](https://github.com/Netflix/eureka/wiki/Eureka-at-a-glance) is a REST based service that is primarily used in the AWS cloud for locating services for the purpose of load balancing and failover of middle-tier servers.
2015-05-03 09:57:03 -04:00
2015-05-03 11:26:53 -04:00
### Serialization
- [MessagePack](http://msgpack.org/) is an efficient binary serialization format.
- [Cereal](http://uscilab.github.io/cereal/) a C++11 library for serialization.
- [Kryo](https://github.com/EsotericSoftware/kryo) Java serialization and cloning: fast, efficient, automatic
2015-05-03 09:57:03 -04:00
### Monitoring
2015-05-03 10:29:19 -04:00
- [Graphite](http://graphite.wikidot.com/) scalable realtime graphing.
- [Riemann](http://riemann.io/) monitors distributed systems.
- [Suro](https://github.com/Netflix/suro/wiki) is a distributed data pipeline which enables services for moving, aggregating, routing, storing data.
2015-05-03 09:57:03 -04:00
### Logging
2015-05-03 10:29:19 -04:00
- [Fluentd](http://www.fluentd.org/) is an open source data collector for unified logging layer.
- [Logstash](http://logstash.net/) is a tool for managing events and logs.
- [Kibana](https://www.elastic.co/products/kibana) flexible analytics and visualization platform.
- [Graylog](https://www.graylog.org/) is a fully integrated open source log management platform.
2015-05-03 09:57:03 -04:00
2015-05-03 11:13:58 -04:00
### Horizontal Scalability
2015-05-03 09:57:03 -04:00
2015-05-03 10:29:19 -04:00
- [Hazelcast](http://hazelcast.org/) is an open source in-memory data grid.
- [Galaxy](http://www.paralleluniverse.co/galaxy/) is an open-source high-performance in-memory data-grid.
2015-05-03 09:57:03 -04:00
2015-05-03 11:13:58 -04:00
### Resiliency
2015-05-03 11:07:51 -04:00
- [Simian Army](https://github.com/Netflix/SimianArmy) is a suite of tools for keeping your cloud operating in top form. Chaos Monkey, the first member, is a resiliency tool that helps ensure that your applications can tolerate random instance failures.
- [Hystrix](https://github.com/Netflix/Hystrix) is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.
## IT Automation / Provisioning
- [Ansible](http://www.ansible.com/) is a radically simple IT automation platform that makes your applications and systems easier to deploy.
- [Puppet](https://puppetlabs.com/) from provisioning bare metal & launching containers to new ways to manage infrastructure as code.
- [Chef](https://www.chef.io/chef/) automate how you build, deploy, and manage your infrastructure.
## Continuous Integration & Deployment
### On-prem
- [Jenkins](http://jenkins-ci.org/) an extensible open source continuous integration server.
### SaaS
- [AWS OpsWorks](http://aws.amazon.com/opsworks/) provides a simple and flexible way to create and manage stacks and applications.
- [AWS ECS](http://aws.amazon.com/ecs/) easily run and manage Docker-enabled applications across a cluster of Amazon EC2 instances.
- [Travis](https://travis-ci.org/) continuous integration and deployment service.
- [Codeship](https://codeship.com/) is a hosted Continuous Delivery platform that takes care
of the testing and deployment process.
2015-05-03 11:12:00 -04:00
### Lightweight Packaging
- [Capsule](https://github.com/puniverse/capsule) is a packaging and deployment tool for JVM applications.
2015-05-03 09:57:03 -04:00
## Theory
### Articles
- [Hexagonal Architecture](http://alistair.cockburn.us/Hexagonal+architecture)
- [Microservice Architecture](http://martinfowler.com/articles/microservices.html)
- [AKF Scale Cube](http://akfpartners.com/techblog/2008/05/08/splitting-applications-or-services-for-scale/)
- [CQRS](http://martinfowler.com/bliki/CQRS.html)
- [Event Sourcing](http://martinfowler.com/eaaDev/EventSourcing.html)
### Books
- [Building Microservices](http://nginx.com/wp-content/uploads/2015/01/Building_Microservices_Nginx.pdf)
- [The Art of Scalability](http://theartofscalability.com/)
### Sites
- [Microservice Patterns](http://microservices.io/)
- [OSGi](http://www.osgi.org/)
## License
[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/)
2015-05-03 10:03:17 -04:00
## Acknowledgments
2015-05-03 11:07:51 -04:00
Table of contents generated with [DocToc](https://github.com/thlorenz/doctoc)
2015-05-03 10:03:17 -04:00