Coder Social home page Coder Social logo

How to integrate with Akka? about blockhound HOT 6 CLOSED

reactor avatar reactor commented on May 23, 2024
How to integrate with Akka?

from blockhound.

Comments (6)

simonbasle avatar simonbasle commented on May 23, 2024 1

closing inactive question

from blockhound.

bsideup avatar bsideup commented on May 23, 2024

Is there any way to bypass akka internal blocking calls and only focus on my actor code?

Yes, you can whitelist them, see:
https://github.com/reactor/BlockHound/blob/1.0.2.RELEASE/docs/customization.md#dis-allowing-blocking-calls-inside-methods

What does this snippet is for builder.disallowBlockingCallsInside( "akka.dispatch.MonitorableThreadFactory.AkkaForkJoinWorkerThread", "execute" );

This code says "report blocking calls that were executed from AkkaForkJoinWorkerThread#execute or down the stack (unless marked with allowBlockingCallsInside).

When the article was written, it was mandatory to mark some entry point, otherwise nothing would be reported. Starting with BlockHound's release version, there is no need to do so (I guess I need to update the article).

It is still useful to disallow certain methods, you will find some info about it in the tips:
https://github.com/reactor/BlockHound/blob/1.0.2.RELEASE/docs/tips.md#how-to-select-what-to-whitelist

from blockhound.

Poorva17 avatar Poorva17 commented on May 23, 2024

I have whitelisted in above code snippet.

builder.allowBlockingCallsInside("jdk.internal.misc.Unsafe", "park");

Which did not solve my problem

May be I have chosen wrong method to whitelist. I would like to understand that from stack trace of blocking call which method I should whitelist

from blockhound.

bsideup avatar bsideup commented on May 23, 2024

Whitelisting Unsafe#park is not a good idea, since it is a blocking call that should be reported.
See the linked tips for recommendations on how to whitelist things.

from blockhound.

bsideup avatar bsideup commented on May 23, 2024

Also, in your case, it is FileInputStream#readBytes triggered from StaticLoggerBinder#<clinit>. It is a good idea to whitelist StaticLoggerBinder#<clinit>.

from blockhound.

gontard avatar gontard commented on May 23, 2024

Whitelisting Unsafe#park is not a good idea, since it is a blocking call that should be reported.
See the linked tips for recommendations on how to whitelist things.

@bsideup i am also working on an Akka integration and the hard part is integrating the akka dispatcher which is a ForkJoinPool.
In some circumstances, it invokes:

As you said, i wouldn't like to whiltelist Unsafe#park but how?
Do you think i should whitelist the methods ForkJoinPool#runWorker and ForkJoinPool#poll? If yes, the risk would be to white list other execution branches.

from blockhound.

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.