lanycrost

lanycrost

Hi Everyone!

I’m thinking about implementing micro-service architecture in our application. I’ve studied a lot of resources.

At the beginning I thought I’d implement it on the basis of processes and nodes, it would be more accurate to write the code of each micro service in a separate file and implement all their communications through messaging. To tell the truth, I had problems and I came across Umbrella Project, but this way solves our problems, but not as I expected.

I think about git sub-modules, but yours suggestion’s is very important.

There is no source code independence, which I really don’t like.

What do you think about this. What resources can you suggest me, what architecture, if it’s not secret, let’s give an example of code, or architecture.

Thanks.

Regards, Khachatur.

Showing Posts 1 to 10

LostKobrakai

LostKobrakai

Umbrella projects are a folder structure to develop related otp applications in a single fashion, mostly to resolve the issues of independent projects like version mismatches. If you’re after source code independence why not simply have multiple mix projects?

lanycrost

lanycrost OP

For in-service communication I can use restful api’s like in other micro-service architecture app’s, but why not to use Elixir messaging if it’s possible?

LostKobrakai

LostKobrakai

Sure, but that should be rather a matter of creating the correct kind of communication interface and deploying stuff onto your infrastructure in a way to let them talk to each other. Umbrella on the other hand is just a fancy word for “one folder for multiple apps”. At runtime there’s no difference between apps created as umbrella and apps created independently.

Also keep in mind, that by default erlang nodes connect in clusters automatically, where each node is connected to each other node in the cluster. Depending on the number of physical nodes you expect to be running on this might not be the best architecture.

Eiji

Eiji

Because you are using them as a libraries - not as services. This means that you need to have them all on each node you deploy to.

I recommend to use WebSocket for fast communication between micro-services. You have one always active channel and two-way communication. In this case you could deploy each service to another node and/or mix part of them like:

first node: service A
second node: service B and C
third node: service D

So you are not limited - you can deploy each service to any node you want and you only need to simply configure each service, so it will know on which node it needs to call another service api.

lanycrost

lanycrost OP

But why no one not tell about Elixir built-in messaging future?. I think this way better then WebSocket’s or http.

Eiji

Eiji

@lanycrost: Don’t know if it allows you to deploy services only to specified nodes (instead of all). Another way is to connect your nodes and call block using rpc:

:rpc.block_call(node_name, module, function, args, timeout)

See erlang docs for more info.

keathley

keathley

This is definitely possible using only distributed erlang: Distributed Applications — Erlang System Documentation v29.0.2

lanycrost

lanycrost OP

Elixir also has this method :smiley:

axelson

axelson

Scenic Core Team

Why do you prefer source code independence? There’s many benefits of keeping the source code to multiple parts of the entire application/company in the same code-base. Such as the ability to make updates to multiple parts of the system “atomically” (i.e. in one git commit). IIRC Google and Facebook actually just use one huge repository that has the code for all of the projects in the entire company.

OvermindDL1

OvermindDL1

In git the ‘entire’ repo could be huge if done like that. Should be using submodules or so. You can update those atomically as well.

Easier when using SourceSafe or SVN where you can checkout only a part of the tree or individual files. With git it is all or nothing.

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews