Erlangリリースの作成
rebar3やrelxなどのツールを使い、Erlangアプリケーション、その依存関係、Erlangランタイムを自己完結型のリリースにまとめます。
「Erlangリリースの作成」はCoddyKit上の無料Erlang OTP: Distributed & Fault-Tolerant Systems Programmingレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはErlang OTP: Distributed & Fault-Tolerant Systems Programming学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Erlang OTP: Distributed & Fault-Tolerant Systems Programmingコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
What are Erlang Releases?
When you develop an Erlang application, it's a collection of modules and configuration files. To deploy it, you need to package it all up.
An Erlang Release is a self-contained, deployable package of your application, its dependencies, and optionally, a specific version of the Erlang Runtime System (ERTS).
- It's like a standalone executable for your Erlang system.
- It simplifies deployment by bundling everything needed to run.
Benefits of a Release
Why go through the effort of creating a release? Releases offer significant advantages for production systems:
- Self-contained: Includes all necessary Erlang libraries and even the Erlang VM itself.
- Simplified Deployment: Just copy the release folder to a server and start it.
- Version Management: Each release has a clear version number, making upgrades and rollbacks easier.
- Foundation for Live Upgrades: Releases are essential for Erlang's famous 'hot code loading' feature (covered in a later lesson!).
Meet rebar3
Building Erlang applications and releases manually can be complex. Fortunately, we have rebar3!
rebar3 is the standard build tool for Erlang. It handles:
- Project creation and management
- Dependency resolution
- Compilation
- Testing
- And, crucially for this lesson, creating releases.
It streamlines the entire development and deployment workflow.
Your Erlang Application Code
Let's start with a very simple Erlang module. In a real application, this would be part of your overall system logic.
For demonstration, we'll create a module with a main/0 function, which can be run directly. This module will be included in our release.
-module(my_release_app).
-export([main/0]).
main() ->
io:format("Hello from my Erlang release application!~n").The Application Resource File
Every Erlang application has an application resource file (.app or .app.src). This file defines metadata about your application, such as its version, description, and which modules it depends on.
rebar3 uses the .app.src file to generate the final .app file during the build process.
{application, my_release_app,
[{description, "My simple release app"},
{vsn, "0.1.0"},
{registered, []},
{applications, [
kernel,
stdlib
]},
{mod, {my_release_app, []}},
{env, []}
]}.Configuring the Release
To tell rebar3 how to build your release, you add a relx section to your rebar.config file. This configuration specifies:
- The name and version of your release.
- Which applications to include.
- If the Erlang Runtime System (ERTS) should be bundled.
For development, we often don't include ERTS to save space.
{apps, [my_release_app]}.
{relx, [{release, {my_release_app, "0.1.0"}, [my_release_app]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]}.Building Your Release Bundle
With your application code, .app.src, and rebar.config in place, building the release is straightforward. rebar3 will compile your code, fetch dependencies, and package everything into a single directory.
This command does all the heavy lifting:
rebar3 releaseInside the Release Package
After running rebar3 release, you'll find your release in _build/default/rel/my_release_app/. The structure typically includes:
- bin/: Contains the start script for your application.
- lib/: All your application's compiled code and dependencies.
- releases/: Release definitions and version information.
- erts/: (Optional) The Erlang Runtime System if
include_ertswas true.
This organized structure makes deployment predictable and reliable.
Running Your Packaged App
Once built, you can start your Erlang application by executing the generated start script. This script handles starting the Erlang VM and loading your application.
Navigate to the release directory and use the bin/<release_name> script.
For our example, you would run (in a shell, not runnable in this environment):
_build/default/rel/my_release_app/bin/my_release_app startRelease Benefits Check
Creating an Erlang release is a crucial step for deployment. Which of the following are primary benefits of packaging an Erlang application as a release?
Recap: Erlang Releases
You've taken a big step towards deploying Erlang applications!
- Erlang Releases package your app, its dependencies, and optionally ERTS.
- rebar3 is the essential tool for building and managing releases.
- The
.app.srcandrebar.configfiles define your application and release. - Releases simplify deployment, versioning, and enable powerful features like live upgrades.
Next, we'll dive into the fascinating world of hot code loading and how to perform live upgrades on running systems!
よくある質問
「Erlangリリースの作成」レッスンは無料ですか?
はい。「Erlangリリースの作成」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Erlang OTP: Distributed & Fault-Tolerant Systems Programmingコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Erlang OTP: Distributed & Fault-Tolerant Systems Programmingコースには全4レッスンが含まれています。
「Erlangリリースの作成」で何を学びますか?
rebar3やrelxなどのツールを使い、Erlangアプリケーション、その依存関係、Erlangランタイムを自己完結型のリリースにまとめます。 ブラウザで直接実行するハンズオンコードでErlang OTP: Distributed & Fault-Tolerant Systems Programmingを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Erlang OTP: Distributed & Fault-Tolerant Systems Programmingを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのErlang OTP: Distributed & Fault-Tolerant Systems Programmingは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。
「Erlangリリースの作成」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このErlang OTP: Distributed & Fault-Tolerant Systems Programmingレッスンでコードを書いて実行できますか?
はい。すべてのErlang OTP: Distributed & Fault-Tolerant Systems Programmingレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- Erlangリリースの作成
- ホットコードローディングとアップグレード
- リリースのバージョン管理とデプロイ
- リリース設定とブートスクリプト