Code Monkey home page Code Monkey logo

Comments (18)

kosav7r avatar kosav7r commented on June 9, 2024

Kindly pinging :)

from photonlibos.

beef9999 avatar beef9999 commented on June 9, 2024

Yes, Photon coroutines can satisfy your requirements. Every resource is located in a single thread and shared among coroutines. You can read the documents for more details.

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

Linux thread is referred to as vCPU in Photon. Each of them has a dedicated scheduler for coroutines (Photon's threads), and a dedicated instance of event engine (e.g. epoll or io_uring). Their execution is basically independent of each other, unless you conduct inter-vCPU task coordination or migration.

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

You can realize interrupt affinity in the same way you do to other applications, e.g. pinning interrupt handler and corresponding photon vCPU (Linux thread) to the same physical CPU core.

from photonlibos.

kosav7r avatar kosav7r commented on June 9, 2024

What would you recommend to separate CPU and IO-bound jobs in the programming models? As far as I know, coroutines are for IO-bound jobs.

from photonlibos.

beef9999 avatar beef9999 commented on June 9, 2024

You can use the migrate API to move your CPU bound tasks to specific vCPU. It’s lightweight

from photonlibos.

kosav7r avatar kosav7r commented on June 9, 2024

What would you recommend for Interprocessor communication if shared memory is absolutely no?

from photonlibos.

beef9999 avatar beef9999 commented on June 9, 2024

Is it a Photon related issue?

from photonlibos.

kosav7r avatar kosav7r commented on June 9, 2024

Already appreciate your answers so I apologize if it sounds unrelated. I am evaluating and comparing Photon with Seastar. Trying to map approaches in Seastar to Photon.

For example, In Seastar, it is mostly done by passing a lambda to a neighbor VCPU. I was wondering what do you think is a best approach to take as communication between VCPUs.

from photonlibos.

beef9999 avatar beef9999 commented on June 9, 2024

A Photon thread (coroutine) is essentially a function. Lambda is also the same.

The underlay implementation of thread migrate is eventfd notification and task queue.

Besides Photon also has a MPMC queue to transmit functions, encapsulated as the so-called WorkPool

from photonlibos.

loongs-zhang avatar loongs-zhang commented on June 9, 2024

I've searched the code, how about use sched_setaffinity(linux)/thread_policy_set(macos) to bind vCPU to a single CPU core? @beef9999

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

@loongs-zhang Are you suggesting that we bind vCPU by default?

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

What would you recommend for Interprocessor communication if shared memory is absolutely no?

Multi-process without sharing memory? How about UNIX domain socket?

from photonlibos.

loongs-zhang avatar loongs-zhang commented on June 9, 2024

@loongs-zhang Are you suggesting that we bind vCPU by default?

yes

from photonlibos.

loongs-zhang avatar loongs-zhang commented on June 9, 2024

What would you recommend for Interprocessor communication if shared memory is absolutely no?
Multi-process without sharing memory? How about UNIX domain socket?

How about deep cloning and sharing?

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

@loongs-zhang Are you suggesting that we bind vCPU by default?

yes

As different apps require different binding configuration, it's difficult for us to do it by default.
For example, a typical scenario is file/storage server. We may need to consider IRQ handlers of the NICs and SSDs, and our service threads (vCPUs). The best binding configuration should minimize CPU switching along the execution.

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

How about deep cloning and sharing?

I not sure whether cloning is feasible, as it may imply sharing in the first place, and @kosav7r said it was "absolutely no".

from photonlibos.

lihuiba avatar lihuiba commented on June 9, 2024

What would you recommend to separate CPU and IO-bound jobs in the programming models? As far as I know, coroutines are for IO-bound jobs.

Photon has a built-in WorkPool to deal with various kinds of background jobs. For IO-bound ones, you can initialize the worker vCPUs to enable coroutines and event engines. For CPU-bound ones, you can simple use kernel threads without initializing photon.

BTW, the jobs are efficiently passed to workers with lock-free shared memory ring queue.

from photonlibos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.