fabric

package module
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 7, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

README ΒΆ

Microbus.io logo

Build, Test, Deploy & Operate Microservice Architectures Smarter at Scale

Microbus is a holistic open source framework for the development, testing, deployment and operation of microservices at scale. It combines best-in-class OSS, tooling and best practices into a dramatically-simplified engineering experience.

Build entire cloud-enabled, enterprise-class and web-scalable solutions comprising a multitude of microservices, all on your local development machine. Deploy to suit your needs, as a standalone executable or individual containers.

License Apache 2 Reference Test Reference

🍴 Table of Content

🚌 Introduction
βš™οΈ How It Works
🎯 Mission Statement
🚦 Get Started
πŸ“š Learn More
βœ‹ Get involved
☎️ Contact us
πŸ“ƒ Legal

🚌 Introduction

A microservice architecture is best suited for addressing the technical and organizational scalability challenges of a business as it scales. Without microservices, the complexity of a monolithic codebase often grows to a point where the engineering team can no longer innovate and collaborate efficiently. In most likelihood the entire solution will have to be rewritten at a critical point of the business - when it is growing rapidly - and at prohibitive cost. Investing in microservices from the get-go is a wise investment that mitigates this upside risk.

Building and operating microservices at scale, however, is quite difficult and beyond the skills of most engineering teams. It's easy to spin up one web server and call it a microservice but things get exponentially more complicated the more microservices are added to the mix. Many teams at some point either call it quits and stop adding microservices, or introduce complex tooling such as service meshes to help manage the complexity. Adding complexity to solve complexity is a self-defeating strategy: the chickens eventually come home to roost.

Microbus takes a novel approach to the development, testing, deployment and troubleshooting of microservices, and eliminates much of the complexity of the conventional practice. Microbus is a holistic open source framework that combines best-in-class OSS, tooling and best practices into a dramatically-simplified engineering experience that boosts productivity 4x.

Microbus is the culmination of a decade of research and has been successfully battle-tested in production settings running SaaS solutions comprising many dozens of microservices.

βš™οΈ How It Works

Build your microservices on top of a Connector construct and use its simple API to communicate with other microservices using familiar HTTP semantics. Under the hood, communication happens over a real-time messaging bus.

Microbus brings together the patterns and best practices that get it right from the get-go, all in a developer-friendly holistic framework that throws complexity under the bus:

Reliable Transport

Precision Observability

And more

🎯 Mission Statement

MicrobusΒ is a holisticΒ open source frameworkΒ for the development, testing, deployment and operation of microservices at scale.

Microbus combines best-in-class OSS, tooling and best practices into anΒ elevated engineering experience that eliminates much of the complexity of the conventional practice.

Microbus’s runtime substrate is highly performant, strongly reliable and horizontally scalable.

Microbus conforms to industry standards and interoperates smoothly with existing systems.

🚦 Get Started

πŸ‘‰ Follow the quick start guide to set up your system and run the example app

πŸ‘‰ Go through the various examples

πŸ‘‰ Follow the step-by-step guide and build your first microservice

πŸ‘‰ Discover the power of code generation. It's totally RAD, dude

πŸ‘‰ Learn how to write thorough integration tests and achieve high code coverage

πŸ‘‰ Venture out and explore more on your own

πŸ‘‰ Ready? Build your own solution from scratch

πŸ“š Learn More

Dig deeper into the technology of Microbus and its philosophy.

Architecture

Guides

Under the Hood

  • HTTP ingress proxy - The HTTP ingress proxy bridges the gap between HTTP and Microbus
  • Unicast messaging - Unicast enables bi-directional 1:1 request/response HTTP messaging between a client and a single server over the bus
  • Multicast messaging - Extending on the unicast pattern, multicast enables bi-directional 1:N publish/subscribe HTTP messaging between a client and a multitude of servers over the bus
  • Error capture - How and why errors are captured and propagated across microservices boundaries
  • Time budget - The right way to manage client-to-server request timeouts
  • Control subscriptions - Subscriptions that all microservices implement out of the box on port :888
  • Deployment environments - An application can run in one of 4 deployment environments: PROD, LAB, LOCAL and TESTING
  • Events - How event-driven architecture can be used to decouple microservices
  • Distributed tracing - Visualizing stack traces across microservices using OpenTelemetry and Jaeger
  • OpenAPI - OpenAPI document generation for microservices
  • Local development - Run an entire solution comprising a multitude of microservices in your local IDE
  • Structured logging - JSON logging to stderr
  • Ack or fail fast - Acks signal the sender if its request was received
  • Graceful shutdown - Graceful shutdown drains pending operations before termination
  • Tickers - Tickers are jobs that run on a schedule

Design Choices

Miscellaneous

  • Milestones - Each milestone of Microbus is maintained in a separate branch for archival purposes and to demonstrate the development process and evolution of the code.

βœ‹ Get Involved

We want your feedback. Clone the repo, try things out and let us know what worked for you, what didn't and what you'd like to see improved.

Help us spread the word. Let your peers and the Go community know about Microbus.

Give us a Github ⭐. And ask all your friends to give us one too!

Reach out if you'd like to contribute code.

Corporation? Contact us for sponsorship opportunities.

☎️ Contact Us

Find us at any of the following channels. We're looking forward to hearing from you so don't hesitate to drop us a line.

Find us at...
Website www.microbus.io
Email info@microbus.io
Github github.com/microbus-io
LinkedIn linkedin.com/company/microbus-io
Slack microbus-io.slack.com
Discord discord.gg/FAJHnGkNqJ
Reddit r/microbus
YouTube @microbus-io

The Microbus framework is the copyrighted work of various contributors. It is licensed by Microbus LLC - a Delaware limited liability company formed to hold the combined intellectual property of all contributors - under the Apache License 2.0.

Refer to the list of third-party open source software for licensing information of components used by the Microbus framework.

Documentation ΒΆ

The Go Gopher

There is no documentation for this package.

Directories ΒΆ

Path Synopsis
Application is a collection of microservices that run in a single process and share the same lifecycle
Application is a collection of microservices that run in a single process and share the same lifecycle
Package cfg is used for defining configuration properties.
Package cfg is used for defining configuration properties.
tester
Package tester implements the codegen.test microservice.
Package tester implements the codegen.test microservice.
tester/intermediate
Package intermediate serves as the foundation of the codegen.test microservice.
Package intermediate serves as the foundation of the codegen.test microservice.
tester/testerapi
Package testerapi implements the public API of the codegen.test microservice, including clients and data structures.
Package testerapi implements the public API of the codegen.test microservice, including clients and data structures.
Package connector implements the base class of all microservices.
Package connector implements the base class of all microservices.
coreservices
configurator
Package configurator implements the configurator.core microservice.
Package configurator implements the configurator.core microservice.
configurator/configuratorapi
Package configuratorapi implements the public API of the configurator.core microservice, including clients and data structures.
Package configuratorapi implements the public API of the configurator.core microservice, including clients and data structures.
configurator/intermediate
Package intermediate serves as the foundation of the configurator.core microservice.
Package intermediate serves as the foundation of the configurator.core microservice.
control
Package control implements the control.core microservice.
Package control implements the control.core microservice.
control/controlapi
Package controlapi implements the public API of the control.core microservice, including clients and data structures.
Package controlapi implements the public API of the control.core microservice, including clients and data structures.
control/intermediate
Package intermediate serves as the foundation of the control.core microservice.
Package intermediate serves as the foundation of the control.core microservice.
httpegress
Package httpegress implements the http.egress.core microservice.
Package httpegress implements the http.egress.core microservice.
httpegress/httpegressapi
Package httpegressapi implements the public API of the http.egress.core microservice, including clients and data structures.
Package httpegressapi implements the public API of the http.egress.core microservice, including clients and data structures.
httpegress/intermediate
Package intermediate serves as the foundation of the http.egress.core microservice.
Package intermediate serves as the foundation of the http.egress.core microservice.
httpingress
Package httpingress implements the http.ingress.core microservice.
Package httpingress implements the http.ingress.core microservice.
httpingress/httpingressapi
Package httpingressapi implements the public API of the http.ingress.core microservice, including clients and data structures.
Package httpingressapi implements the public API of the http.ingress.core microservice, including clients and data structures.
httpingress/intermediate
Package intermediate serves as the foundation of the http.ingress.core microservice.
Package intermediate serves as the foundation of the http.ingress.core microservice.
metrics
Package metrics implements the metrics.core microservice.
Package metrics implements the metrics.core microservice.
metrics/intermediate
Package intermediate serves as the foundation of the metrics.core microservice.
Package intermediate serves as the foundation of the metrics.core microservice.
metrics/metricsapi
Package metricsapi implements the public API of the metrics.core microservice, including clients and data structures.
Package metricsapi implements the public API of the metrics.core microservice, including clients and data structures.
openapiportal
Package openapiportal implements the openapiportal.core microservice.
Package openapiportal implements the openapiportal.core microservice.
openapiportal/intermediate
Package intermediate serves as the foundation of the openapiportal.core microservice.
Package intermediate serves as the foundation of the openapiportal.core microservice.
openapiportal/openapiportalapi
Package openapiportalapi implements the public API of the openapiportal.core microservice, including clients and data structures.
Package openapiportalapi implements the public API of the openapiportal.core microservice, including clients and data structures.
smtpingress
Package smtpingress implements the smtp.ingress.core microservice.
Package smtpingress implements the smtp.ingress.core microservice.
smtpingress/intermediate
Package intermediate serves as the foundation of the smtp.ingress.core microservice.
Package intermediate serves as the foundation of the smtp.ingress.core microservice.
smtpingress/smtpingressapi
Package smtpingressapi implements the public API of the smtp.ingress.core microservice, including clients and data structures.
Package smtpingressapi implements the public API of the smtp.ingress.core microservice, including clients and data structures.
Package dlru implements an LRU cache that is distributed among the peers of a microservice.
Package dlru implements an LRU cache that is distributed among the peers of a microservice.
Package env manages the loading of environment variables.
Package env manages the loading of environment variables.
Package errors replaces the standard Go package, adding the ability to attach a stack trace and annotations to an error
Package errors replaces the standard Go package, adding the ability to attach a stack trace and annotations to an error
examples
browser
Package browser implements the browser.example microservice.
Package browser implements the browser.example microservice.
browser/browserapi
Package browserapi implements the public API of the browser.example microservice, including clients and data structures.
Package browserapi implements the public API of the browser.example microservice, including clients and data structures.
browser/intermediate
Package intermediate serves as the foundation of the browser.example microservice.
Package intermediate serves as the foundation of the browser.example microservice.
calculator
Package calculator implements the calculator.example microservice.
Package calculator implements the calculator.example microservice.
calculator/calculatorapi
Package calculatorapi implements the public API of the calculator.example microservice, including clients and data structures.
Package calculatorapi implements the public API of the calculator.example microservice, including clients and data structures.
calculator/intermediate
Package intermediate serves as the foundation of the calculator.example microservice.
Package intermediate serves as the foundation of the calculator.example microservice.
directory
Package directory implements the directory.example microservice.
Package directory implements the directory.example microservice.
directory/directoryapi
Package directoryapi implements the public API of the directory.example microservice, including clients and data structures.
Package directoryapi implements the public API of the directory.example microservice, including clients and data structures.
directory/intermediate
Package intermediate serves as the foundation of the directory.example microservice.
Package intermediate serves as the foundation of the directory.example microservice.
eventsink
Package eventsink implements the eventsink.example microservice.
Package eventsink implements the eventsink.example microservice.
eventsink/eventsinkapi
Package eventsinkapi implements the public API of the eventsink.example microservice, including clients and data structures.
Package eventsinkapi implements the public API of the eventsink.example microservice, including clients and data structures.
eventsink/intermediate
Package intermediate serves as the foundation of the eventsink.example microservice.
Package intermediate serves as the foundation of the eventsink.example microservice.
eventsource
Package eventsource implements the eventsource.example microservice.
Package eventsource implements the eventsource.example microservice.
eventsource/eventsourceapi
Package eventsourceapi implements the public API of the eventsource.example microservice, including clients and data structures.
Package eventsourceapi implements the public API of the eventsource.example microservice, including clients and data structures.
eventsource/intermediate
Package intermediate serves as the foundation of the eventsource.example microservice.
Package intermediate serves as the foundation of the eventsource.example microservice.
hello
Package hello implements the hello.example microservice.
Package hello implements the hello.example microservice.
hello/helloapi
Package helloapi implements the public API of the hello.example microservice, including clients and data structures.
Package helloapi implements the public API of the hello.example microservice, including clients and data structures.
hello/intermediate
Package intermediate serves as the foundation of the hello.example microservice.
Package intermediate serves as the foundation of the hello.example microservice.
helloworld
Package helloworld implements the helloworld.example microservice.
Package helloworld implements the helloworld.example microservice.
helloworld/helloworldapi
Package helloworldapi implements the public API of the helloworld.example microservice, including clients and data structures.
Package helloworldapi implements the public API of the helloworld.example microservice, including clients and data structures.
helloworld/intermediate
Package intermediate serves as the foundation of the helloworld.example microservice.
Package intermediate serves as the foundation of the helloworld.example microservice.
messaging
Package messaging implements the messaging.example microservice.
Package messaging implements the messaging.example microservice.
messaging/intermediate
Package intermediate serves as the foundation of the messaging.example microservice.
Package intermediate serves as the foundation of the messaging.example microservice.
messaging/messagingapi
Package messagingapi implements the public API of the messaging.example microservice, including clients and data structures.
Package messagingapi implements the public API of the messaging.example microservice, including clients and data structures.
Package httpx includes various HTTP utilities.
Package httpx includes various HTTP utilities.
Package pub is used for the publishing of requests.
Package pub is used for the publishing of requests.
Package rand combines crypto.rand and math.rand for more secure random number generation with reduced performance impact.
Package rand combines crypto.rand and math.rand for more secure random number generation with reduced performance impact.
Package service defines the interfaces of a microservice, which the connector implements.
Package service defines the interfaces of a microservice, which the connector implements.
Package sub is used for subscribing to handle requests.
Package sub is used for subscribing to handle requests.
Package trc is used for working with tracing spans.
Package trc is used for working with tracing spans.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL