this post was submitted on 17 Sep 2023
44 points (95.8% liked)

Programming

16971 readers
159 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 9 points 1 year ago* (last edited 1 year ago) (1 children)

Is it just me or is this a nightmare implementation in terms of software maintenance and operations? Each state transition requires a database trip, state machine transitions are determined at runtime and there's no simple way to reproduce them locally, and in the case of the state machine database going down the system simply cannot work.

What exactly is the selling point of this approach?

[–] [email protected] 1 points 11 months ago (1 children)

It's long running, so you want a database so you can store your state. If you're storing state, locking it into a state machine makes sense.

I do agree with some of the commenters that making it closer to an event source design would make more sense still.

[–] [email protected] 1 points 11 months ago

It’s long running, so you want a database so you can store your state. If you’re storing state, locking it into a state machine makes sense.

That's besides the point. Of course that the most fitting way to represent a state machine is with a state machine. The point is that implementing the transition table in a database table creates many problems while apparently solving none.

[–] [email protected] 3 points 1 year ago

Neat! Thanks for sharing

[–] Jaysue 2 points 1 year ago

Thank you for sharing.