gearman-java
gearman-java copied to clipboard
Java Gearman client and Netty-based server with multi-backend support (currently memory, Redis and PostgreSQL). More features coming including clustering support
Bumps [jetty-server](https://github.com/eclipse/jetty.project) from 9.4.41.v20210516 to 9.4.51.v20230217. Release notes Sourced from jetty-server's releases. 9.4.51.v20230217 Sponsored Release This is a release of the End of Community Support Jetty 9.x series that was...
Bumps logback-core from 1.2.0 to 1.2.9. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 1.26 to 1.31. Commits a3e641b Remove unused code for comments d2ed568 Remove unused code ab76f86 Add @Deprecated annotation to constructs marked with @deprecated javadoc. bc7869b Make billionLaughsAttackTest.billionLaughsAttackExpanded()...
Bumps [hazelcast](https://github.com/hazelcast/hazelcast) from 3.1.2 to 3.11. Release notes Sourced from hazelcast's releases. 3.11 Release Notes v3.11-BETA-1 3.11-BETA-1 release 3.10.7 This document includes the new features, enhancements and fixed issues for...
I was using a simple socket to communicate with other implementations of Gearman Server but this system does not respond (but does receive) text based commands
According to the protocol documentation and your code: https://github.com/gearman/gearmand/blob/master/PROTOCOL#L76 https://github.com/johnewart/gearman-java/blob/12aacea06020e058b9ab071ab90c3c6f9cabd83b/gearman-common/src/main/java/net/johnewart/gearman/constants/PacketType.java#L24 WorkComplete for Worker should be Request not Response. This pull request is resolving problem with using PHP or Python clients...
I have added command line parsing support to the gearman server. Check it out, and if you find modifications useful - accept the pull request.
This PR adds possibility to send metrics directly to graphite without polling them from ``/metrics/`` uri. Would you like that in your code?
I'm using the default config.yml with gearman-server-0.8.9-20141210.162656-1.jar `port: 4730 httpPort: 8080 enableSSL: false debugging: true hostName: localhost persistenceEngine: engine: memory exceptionStore: engine: memory` but it doesn't load it and give...
When create CantDo class instance with string parameter, PacketType is setted to CAN_DO not CANT_DO. https://github.com/johnewart/gearman-java/blob/master/gearman-common/src/main/java/net/johnewart/gearman/common/packets/request/CantDo.java public CantDo(String function) { this.type = PacketType.CAN_DO; this.functionName = new AtomicReference(function); }