meraj_enigma
Hey,
What’s a good resource to learn Microservices in Elixir/Phoenix? Is there any book/docs/Github repos that I can refer to?
Thanks,
-M
Trending in Chat/Questions
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
whatyouhide
I don’t know about Phoenix-specific resources. Is there anything in particular that you’re looking for on the Phoenix side? Otherwise, I’d probably look at two separate topics: building microservice systems as one, and maybe building APIs with Phoenix.
meraj_enigma
Hi @whatyouhide, thanks for reply. I am more looking for the first topic - building microservice systems with Elixir/Phoenix.
There are many resources in other programming languages. For example this book I read long ago - Microservices Patterns builds an entire working microservices example system with code examples in Java.
There are many microservices pattern here on this site - Microservice Architecture pattern
I have not found any book or series of articles (as one article won’t be enough to cover everything about microservices) focusing on microservices in Elixir/Phoenix.
Elixir has umbrella apps but it has its own limits . Having some good resources on full blown microservices in Elixir would be good.
Hope this clarifies what I am looking for.
Thanks,
-Meraj
kokolegorille
It is not an Elixir resource, but I did enjoy reading this book…
It’s node, but I could translate to Elixir most concepts. Here is an example of what I translated.
https://github.com/kokolegorille/microservices_umbrella
There is also commanded | Hex if You want to want to use CQRS/ES
by @slashdotdash
AstonJ
Also check out PragDave’s course:
I got half way through it then got side-tracked, need to finish it
kanishka
How many production Phoenix users have embraced microservices?
mpope
I’ve run Phoenix as it’s own service inside a polyglot microservice environment. In hindsight using Phoenix might have been a bit much to consume / produce JSON but it worked well.
Sebb
isn’t one of the great things of Elixr/OTP/BEAM that you do not need to use the microservices pattern?
meraj_enigma
May be but even official documentation talks about umbrella apps’ limitations - https://elixir-lang.org/getting-started/mix-otp/dependencies-and-umbrella-projects.html#dont-drink-the-kool-aid
Even if not suitable for all kinds of projects, I would think still there are projects that would grow to the point microservices may become a viable option.
Having good resources on this topic is good for learning purposes too (which is what my interest at this point is).
mpope
If your environment is pure BEAM, which is rare.