--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/5a05e457-4d9d-45b2-9822-d1accb48d7af%40googlegroups.com.
in Amoeba a thread can be suspended, thereafter be sent to some other machine where it is resumed.
in Amoeba a thread can be suspended, thereafter be sent to some other machine where it is resumed.
On Monday, 6 January 2020 08:36:56 UTC, ffm...@web.de wrote:in Amoeba a thread can be suspended, thereafter be sent to some other machine where it is resumed.Thread migration doesn't solve the OP's issue, because threads share memory with other threads: passing a copy of something is not the same as passing a pointer to something, unless you have a way for writes through a pointer to act on the original memory.
However, if you want to apply supervision for distributed Go channels you have to change from channels to actors - at least behind the scenes of the distributed channels. AFAIK, no one has done something like that for anything writen in Go. Nats is very reliable, but does not provide guaranteed "all or nothing" delivery.
On Jan 6, 2020, at 4:56 AM, ffm...@web.de wrote:
However, if you want to apply supervision for distributed Go channels you have to change from channels to actors - at least behind the scenes of the distributed channels. AFAIK, no one has done something like that for anything writen in Go. Nats is very reliable, but does not provide guaranteed "all or nothing" delivery.Coming to think of it you could make use of Rabbitmq as the distributed channel provider. It is written in Erlang and fulfills this "all or nothing" requirement. Bindings for Go already exist: https://godoc.org/github.com/streadway/amqp
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/52a565de-6c95-4a28-b8fd-1fc5bb6b1fb6%40googlegroups.com.
I’m pretty sure Nats.io has all of the same delivery guarantees as rabbitmq. What design is not accommodated by mats?
On Jan 6, 2020, at 7:35 AM, Jason E. Aten <j.e....@gmail.com> wrote: