All Projects → open-lambda → Open Lambda

open-lambda / Open Lambda

Licence: apache-2.0
An open source serverless computing platform

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Open Lambda

Serverless Microservices Reference Architecture
This reference architecture walks you through the decision-making process involved in designing, developing, and delivering a serverless application using a microservices architecture through hands-on instructions for configuring and deploying all of the architecture's components along the way. The goal is to provide practical hands-on experience in working with several Azure services and the technologies that effectively use them in a cohesive and unified way to build a serverless-based microservices architecture.
Stars: ✭ 270 (-62.4%)
Mutual labels:  microservices, serverless, serverless-architectures
Dasync
Every developer deserves the right of creating microservices without using any framework 🤍
Stars: ✭ 154 (-78.55%)
Mutual labels:  microservices, serverless, distributed-systems
Guide
Serverless Guide - An open-source definitive guide to serverless architectures.
Stars: ✭ 421 (-41.36%)
Mutual labels:  serverless, serverless-architectures
Moleculer
🚀 Progressive microservices framework for Node.js
Stars: ✭ 4,845 (+574.79%)
Mutual labels:  microservices, distributed-systems
Aws Serverless Ecommerce Platform
Serverless Ecommerce Platform is a sample implementation of a serverless backend for an e-commerce website. This sample is not meant to be used as an e-commerce platform as-is, but as an inspiration on how to build event-driven serverless microservices on AWS.
Stars: ✭ 469 (-34.68%)
Mutual labels:  microservices, serverless
Swim
Distributed software platform for building stateful, massively real-time streaming applications.
Stars: ✭ 368 (-48.75%)
Mutual labels:  serverless, distributed-systems
Aws Microservices Deploy Options
This repo contains a simple application that consists of three microservices. Each application is deployed using different Compute options on AWS.
Stars: ✭ 370 (-48.47%)
Mutual labels:  microservices, serverless
Microcule
SDK and CLI for spawning streaming stateless HTTP microservices in multiple programming languages
Stars: ✭ 454 (-36.77%)
Mutual labels:  microservices, serverless
Cqrs
A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.
Stars: ✭ 310 (-56.82%)
Mutual labels:  microservices, serverless
Apisix
The Cloud-Native API Gateway
Stars: ✭ 7,920 (+1003.06%)
Mutual labels:  microservices, serverless
Webiny Js
Enterprise open-source serverless CMS. Includes a headless CMS, page builder, form builder and file manager. Easy to customize and expand. Deploys to AWS.
Stars: ✭ 4,869 (+578.13%)
Mutual labels:  serverless, serverless-architectures
Spring Boot Microservices On Kubernetes
In this code we demonstrate how a simple Spring Boot application can be deployed on top of Kubernetes. This application, Office Space, mimicks the fictitious app idea from Michael Bolton in the movie "Office Space".
Stars: ✭ 504 (-29.81%)
Mutual labels:  microservices, serverless
Cloudi
A Cloud at the lowest level!
Stars: ✭ 352 (-50.97%)
Mutual labels:  microservices, distributed-systems
Rpc Websockets
JSON-RPC 2.0 implementation over WebSockets for Node.js and JavaScript/TypeScript
Stars: ✭ 344 (-52.09%)
Mutual labels:  serverless, distributed-systems
Awesome System Design
A curated list of awesome System Design (A.K.A. Distributed Systems) resources.
Stars: ✭ 4,999 (+596.24%)
Mutual labels:  microservices, distributed-systems
Gokit
Go Examples: From basics to distributed systems
Stars: ✭ 325 (-54.74%)
Mutual labels:  microservices, distributed-systems
Ergo
The management of multiple apps running over different ports made easy
Stars: ✭ 452 (-37.05%)
Mutual labels:  microservices, distributed-systems
Micronaut Core
Micronaut Application Framework
Stars: ✭ 5,131 (+614.62%)
Mutual labels:  microservices, serverless
Go Micro
A pluggable Go framework for distributed systems development
Stars: ✭ 17,350 (+2316.43%)
Mutual labels:  microservices, distributed-systems
Scalecube Services
ScaleCube Services is a high throughput, low latency reactive microservices library built to scale. it features: API-Gateways, service-discovery, service-load-balancing, the architecture supports plug-and-play service communication modules and features. built to provide performance and low-latency real-time stream-processing. its open and designed to accommodate changes. (no sidecar in a form of broker or any kind)
Stars: ✭ 482 (-32.87%)
Mutual labels:  microservices, distributed-systems

OpenLambda

OpenLambda is an Apache-licensed serverless computing project, written in Go and based on Linux containers. The primary goal of OpenLambda is to enable exploration of new approaches to serverless computing. Our research agenda is described in more detail in a HotCloud '16 paper.

Getting Started

OpenLambda relies heavily on operations that require root privilege. To simplify this, we suggest that you run all commands as the root user. OpenLambda is only actively tested on Ubuntu 16.04 LTS.

Build and Test

OL is changing rapidly. We recommend syncing to a commit that passed our nightly tests: https://s3.us-east-2.amazonaws.com/open-lambda-public/tests.html.

Our tests run on a VM built with this init script: https://github.com/open-lambda/testing/blob/master/dev-build/bootstrap2.sh. Thus, you can consider that file testable documentation of the dependencies.

You can build the ol and other resources with just make. Then make sure it works with some simple tests:

make test-all

Getting Started

You can create a new OL environment with the following comment:

./ol new

This creates a directory named default with various OL resources. You can create an OL environment at another location by passing a -path=DIRNAME to the new command.

Default config settings were saved to ./default/config.json. Modify them if you wish, then start an OL worker (if you used -path above, use it again with the worker command):

./ol worker

In another terminal, make sure the worker is running with ./ol status.

Now save the following to ./default/registry/echo.py:

def f(event):
    return event

Now invoke your lambda (the result should be the same as the POST body):

curl -X POST localhost:5000/run/echo -d '{"hello": "world"}'

When you're done, just kill the worker with ctrl-C. If you want to run the worker in detached mode (i.e., in the background), just start it again with the -d flag:

./ol worker -d

You can shutdown a detached worker like this:

./ol kill

License

This project is licensed under the Apache License - see the LICENSE.md file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].