All new development of Lambdex will continue in https://github.com/fiqus/lambdex.
Lambdex is a code execution service, allowing one to run code without building the surrounding infrastructure. Just upload the code and trigger its execution, kind of like a DIY AWS Lambda.
It includes a web UI through which users can create lambdas by uploading code as anonymous functions, which will be compiled by the server. Once the lamdba is created its execution can be triggered by POSTing to an endpoint, or manually by the user, and then its execution metrics and statistics viewed.
To build and run Lambdex you must have Elixir 1.6 or higher, a running instance of PostgreSQL, and NodeJS:
You can set up your own Postgres installation or run one using the provided docker-compose.yml
with docker-compose up
.
If you use your own Postgres installation you must edit the apps/lambdex_server/config/dev.exs
file so that the section including
# Configure your database
config :lambdex_server, LambdexServer.Repo,
username: "postgres",
password: "postgres",
database: "lambdex",
hostname: "localhost",
pool_size: 10
contains the proper values.
Since Lambdex is built using Phoenix, you can use the standard steps:
- Install dependencies with
mix deps.get
- Create and migrate your database with
mix ecto.setup
- Install Node.js dependencies with
cd apps/lambdex_server/assets && npm install
- Start Phoenix endpoint with
mix phx.server
- Open a browser and point it to
localhost:4000
The database seed includes a created user 'test@lambdex.com' with password 'password' which you can use to log in and start using the system.
On login the user is presented with a list of runnable lambdas and their details.
To create a new lambda, click on the green button labeled Create
.
A screen with a few input fields and a text area will be presented
The field labelled Name
is a human-readable string to identify the lambda.
Path
is the url path parameter which will identify this lambda. For example, if we create a lambda with path test
, it will trigger on a POST to http://localhost:4000/lambdas/test/
.
ENV Params
is a json object which will be passed to the lambda on each execution. The environment parameters will not vary from execution to execution.
Code
is the text area in which the lambda code goes.
The lambda function must have arity two, e.g.
fn (environment_params, execution_params) ->
... your code here ...
end
As mentioned the environment params are set on lambda creation, while the execution params are provided on each execution trigger.
The Enabled
checkbox must be set to enable the lambda to run.
Note that since lambdas are just anonymous functions which will run in the context of the Lambdex server, the only dependencies you can use are those provided by the server. For that purpose the Lambdex server includes a series of popular dependencies which can be used from the user provided lambdas:
- base64url
- bbmustache
- bcrypt_elixir
- calendar
- comeonin
- csv
- decimal
- earmark
- ex_aws
- exjsx
- floki
- gpb
- hackney
- httpoison
- httpotion
- inflex
- jason
- neotoma
- poison
- redix
- sweet_xml
- uuid
- yamerl
Once a lambda has been created it will be listed in the main screen.
Each entry has four buttons: Info
, Edit
, Run
, Delete
.
Clicking on the Info
button will show the details for that lambda.
Clicking on the Run
button will run the lambda manually.
- Improve lambda debuggability.
- Make the LambdexCore API support asyncronous running of lambdas.
- Limit lambda execution time to a configured value.
- Validate the uploaded code to better ensure it runnability and prevent use of problematic features such as spawn, ETS tables, etc.
- Provide more features for the executing lambdas, such as
- access to datastores and key-value stores
- sending emails
- Monitoring features such as CPU and memory usage.
- Provide a scheduler (allowing to periodically trigger lambda execution).
- Allow full modules to be uploaded in addition to simple anonymous functions.
- Capture logs and output.
- Allow execution of lambdas on other nodes to allow horizontal scaling.
- Accept functions written in Erlang.
- Allow for more complicated and usefull execution triggering logic, e.g. read from AWS SQS or RabbitMQ queues, receive Google alerts, IFTTT-style trigger rules, automatic 3rd party HTTP API polling.
- Soft real-time update of UI via channels to reflect a lamnbda's execution statistics.
Lambda! Lambda! Lambda! Lambda! Lambda! Lambda! Lambdaaaa!