- Can't run benchmarks with Scala 3
GenWaitList
doesn't handle lost wakeups- this affects basically all data structures in
choam-async
- if a suspended operation (e.g., a stack
pop
) is cancelled, this can cause lost items - it's unclear if we can fix this with the current CE API
- and even if we would know that the wakeup is lost, it's already too late: the
Rxn
have been already committed
- this affects basically all data structures in
- Testing:
- JCStress:
Exchanger
- replacing descriptors (weakref?)
- Other things (Promise?)
- Test with other IO impls (when they support ce3)
- JCStress:
- Optimization ideas:
- Exchanger: there is a lot of
Array[Byte]
copying - Reducing allocations (we're allocating a lot)
- EMCAS (maybe reusing descriptors?)
- Rxn
- lots of
Rxn
instances ObjStack.Lst
- lots of
- Review writes/reads in EMCAS, check if we can relax them
- Ref padding:
- allocating a padded Ref is much slower than an unpadded
- however, false sharing could be a problem
- Ref initialization:
- currently: volatile write
- a release write would be faster
- it would also mean that there is no perf. difference bw.
empty[A]
andapply(nullOf[A])
- it would also mean that there is no perf. difference bw.
- but: doing only a release write might not be safe
- if another thread gets the
Ref
through an acquire read, it should be OK - otherwise, it might not see the contents
- e.g., when calling
Ref.unsafe
, and storing it in a plainvar
- could it happen without using unsafe? (or
unsafeRun*
on the IO)
- e.g., when calling
- but: it probably might already not see the contents with the volatile write (that only works for
final
s)
- if another thread gets the
- Exchanger: there is a lot of
- Cleanup:
- Review benchmarks, remove useless ones
- Async:
- integration with FS2 (
choam-stream
):- Channel?
- Optimize SignallingRef
- integration with FS2 (
- API cleanup:
- MCAS API review
- is it usable outside of
choam
? - if not, it doesn't really make sense to have it in a separate module(?)
- being in the same module would simplify using
ThreadContext
forRxn
-things
- being in the same module would simplify using
- is it usable outside of
Rxn.delay
use cases:- allocating:
Ref
(most others are built on this)Ref.array
Exchanger
- calling async callbacks:
- only
Promise
really needs it [Gen]WaitList
(as an optimization, to avoidPromise
)
- only
- other special cases:
UUIDGen
Unique
(this is a special case of "allocating")Clock
cats.effect.std.Random
Ttrie
(to avoidRxn
-level contention)
- allocating:
- Handling errors?
- Generally, we shouldn't raise errors in a reaction
- If something can fail, return
Option
orEither
- If something can fail, return
- Transient errors can sometimes be handled with
+
(Choice
)- but sometimes this can cause infinite retry
- Generally, we shouldn't raise errors in a reaction
- MCAS API review
- Composition of maybe-infinitely-retrying reactions:
stack.pop
, if empty, retries forever (unsafe, because non-lock-free)exchanger.exchange
, if no partner found, retries forever (also unsafe)- each can be made safe by
.?
(will only try once) - however, composing the two is also an option (elimination stack)
- Can we have an API for composing unsafe parts into something which is safe?
- e.g.,
PartialRxn[A, B]
.?
would make a (safe)Rxn
from it.+(<something safe here>)
would also make it safe
- e.g.,
- Think about global / thread-local state:
- cleanup of unused exchanger stats
- Try building a native image with Graal, to see if it works
- Other data structures:
- concurrent bag (e.g., https://dl.acm.org/doi/10.1145/1989493.1989550)
- dual data structures:
- e.g., stack
- push: like normal stack
- pop: if empty, spin wait for a small time, then return an async
F[A]
- what API could represent this?
- maybe
pop: Axn[Either[A, F[A]]]
? - or maybe simply
pop: F[A]
, which is synchronous in the first case? - (i.e., this could be an impl. detail of
AsyncStack
) - or maybe:
- new
AsyncRxn[A, B]
type, which could be async pop: AsyncRxn[Any, A]
def unsafeRun(ar: AsyncRxn[A, B], a: A): Either[F[A], A]
def unsafeToF(ar: AsyncRxn[A, B], a: A): F[A] = unsafeRun(...).fold(x => x, F.pure)
- new
- maybe
LongRef
,IntRef
, etc.- won't work, because we can't store a descriptor in them
Ref
which is backed by mmapped memory / JS shared array- won't work, because we can't store a descriptor in them