Extent-Local memory sharing?

Gavin Ray ray.gavin97 at gmail.com
Fri Sep 23 20:26:14 UTC 2022


Maurizio,

Going through my inbox after sending the last message, somehow I missed
this email.

Thanks a ton for such a comprehensive answer
(I ought to start collecting these in a scrapbook for good measure!)


>
>
>
> *Finally, it is possible that we will introduce a new kind of
> memorysession that is confined not to a single thread, but to an
> _extent_instead. This means that all threads created in a single extent
> will beable to access a given memory segment, but threads outside that
> extentwill not be able to do so.*


This sounds like it would be fantastic, especially if you can piggyback off
of
work & guarantees already provided by the Loom scheduler/executors.

It feels like there are a _lot_ of usecases where such "extent-local"
memory sharing would be beneficial,
maybe it even unlocks some uses that the JVM wasn't viable for before --
who knows?

This would be an integration with the compiler, and not just a Java
library-side feature if I understand it correctly?

On Mon, Sep 12, 2022 at 8:57 AM Maurizio Cimadamore <
maurizio.cimadamore at oracle.com> wrote:

> Hi Gavin,
> whether you can access a memory segment from multiple threads or not
> generally depends on the memory session attached to the segment. If you
> create a segment with a "shared" memory session, then the resulting
> segment will be accessible in a "racy" way from multiple threads. If the
> session associated with the segment is confined, only one thread can
> access. When accessing memory in a segment that is shared, some
> synchronization has to occur between the accessing threads to make sure
> they don't step on each other toes. With Panama, if you have VarHandle
> for memory access, you have a big set of memory access operations at
> your disposal, dependning on the level of synchronization required (e.g.
> plain access, acquire/relese access, volatile access, atomic access).
>
> Then there's Loom. From Panama perspective, a virtual thread is just a
> thread, so if you want to grant a memory segment access from multiple
> virtual threads you need a shared session.
>
> Then there's List itself. Reading and writing on that list concurrently
> from multiple thread can itself lead to issues (e.g. missing updates).
> So, in general, when accessing data structures from multiple threads,
> you either need a data structure that is concurrent by design (e.g.
> concurrent hash map, or blocking queue, etc.). Or you need to roll in
> your synchronization code. What the right answer is often depends on the
> nature of your application.
>
> Finally, it is possible that we will introduce a new kind of memory
> session that is confined not to a single thread, but to an _extent_
> instead. This means that all threads created in a single extent will be
> able to access a given memory segment, but threads outside that extent
> will not be able to do so. This would be a good addition when working
> with virtual threads, because in the case of virtual threads some
> additional bookkeeping is set up by the JDK runtime so that, e.g. when
> using a StructuredTaskScope, it is not possible to close the task scope
> before all the threads forked by that scope have completed. This gives
> the memory session API a very nice semantics for its close() operation,
> that we'd like to take advantage of at some point.
>
> Thanks
> Maurizio
>
> On 10/09/2022 16:11, Gavin Ray wrote:
> > Reading through the docs for the Extent-Local preview, I was trying to
> > understand whether
> > this would be usable for sharing a buffer/memory pool across virtual
> > threads?
> >
> > Suppose you have some class:
> >
> > class BufferPool {
> >   private List<MemorySegment> buffers;
> > }
> >
> > The document says that the data must be immutable
> > But there is "interior" immutability, and "surface" immutability
> >
> > If multiple virtual threads shared the memory and some potentially
> > perform write operations on the MemorySegment's inside of the list
> > would that be valid behavior?
> >
> > Or does this even make sense to do?
> > (Concurrency/parallelism are probably the things I know the least
> > about in software)
> >
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/panama-dev/attachments/20220923/3709283c/attachment-0001.htm>


More information about the panama-dev mailing list