Giter VIP home page Giter VIP logo

porcupine's Issues

Redeploy issue on glassfish

deploying a maven project to glassfish (payara 1.4.151) (from NetBeans) and doing a mvn clean afterwards resulting in the following message:
Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean (default-clean) on project api-server-web: Failed to clean project: Failed to delete ....\WEB-INF\lib\porcupine-0.0.4.jar

Custom Rejection Policy doesn't update statistics

I'm not sure if this is by design, but when I use a "custom" reject policy i.e. .discard or abort then the porpupine statistics module doesn't register the rejection.

This is obviously because the onRejectedExecution method is never called.

Can we have the cookie and eat it too? Provide different rejection handler and see it in the stats :)

Jakarta EE support

Adam,
Is there any interest in updating this to support Jakarta EE? I did a quick and dirty migration updating the imports and temporarily commenting out all the tests and it appears to run fine in Jakarta EE 10.

Security Context propgation into Runnables

I was using porcupine to create an ExecutorService in my project. When I would send in my first round of Runnables into the executor everything worked as expected. I then tried added another round of Runnables into the executor and was running into permissions issues. I checked the logs and the second round of runnables were running as the original user. I had to use a ManagedExecutorService instead to get the SessionContext to properly propagate into the Runnables. I wrote a stackoverflow question that provides a more clear example: http://stackoverflow.com/questions/40002010/how-to-avoid-executorservice-from-overridding-security-principal-of-a-runnable

Are the ExecutorService and the generated threads supposed to be container manager or is that an invalid assumption that I made?

cannot override porcupine thread factory by @Specializes

Hi Adam,

I am not able to override porcupine default configuration. I wrote this class:


import com.airhacks.porcupine.configuration.control.ExecutorConfigurator;
import com.airhacks.porcupine.execution.control.ExecutorConfiguration;

import javax.enterprise.inject.Specializes;

@Specializes
public class CustomExecutorConfigurator extends ExecutorConfigurator {

    @Override
    public ExecutorConfiguration defaultConfigurator() {
        return super.defaultConfigurator();
    }

    @Override
    public ExecutorConfiguration forPipeline(String name) {
        return new ExecutorConfiguration.Builder().
                corePoolSize(4).
                maxPoolSize(83).
                queueCapacity(16).
                keepAliveTime(1).
                callerRunsPolicy().
                build();
    }

}

but when I hit statistics endpoint a I see still default configuration.

 {
        "pipelineName": "archiveBrowsableDays-endpoint-executor",
        "remainingQueueCapacity": 100,
        "minQueueCapacity": 100,
        "completedTaskCount": 0,
        "activeThreadCount": 0,
        "largestThreadPoolSize": 0,
        "currentThreadPoolSize": 0,
        "totalNumberOfTasks": 0,
        "maximumPoolSize": 16,
        "rejectedExecutionHandlerName": "ExecutorServiceExposer$$Lambda$3957/1578815540",
        "rejectedTasks": 0,
        "corePoolSize": 8
    },
    {
        "pipelineName": "init-endpoint-executor",
        "remainingQueueCapacity": 100,
        "minQueueCapacity": 100,
        "completedTaskCount": 1,
        "activeThreadCount": 0,
        "largestThreadPoolSize": 1,
        "currentThreadPoolSize": 1,
        "totalNumberOfTasks": 1,
        "maximumPoolSize": 16,
        "rejectedExecutionHandlerName": "ExecutorServiceExposer$$Lambda$3957/1578815540",
        "rejectedTasks": 0,
        "corePoolSize": 8
    }

What I do wrong? Thanks.

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.