Questions tagged [jesque]

Jesque is an implementation of Resque in Java . It is fully-interoperable with the Ruby and Node.js (Coffee-Resque) implementations.

7 questions
2
votes
1 answer

Running async jobs in dropwizard, and polling their status

In dropwizard, I need to implement asynchronous jobs and poll their status. I have 2 endpoints for this in resource: @Path("/jobs") @Component public class MyController { @POST @Produces(MediaType.APPLICATION_JSON) public String…
me1111
  • 1,127
  • 3
  • 26
  • 38
1
vote
0 answers

Running jesque workers as a process

I have an spring application which is serving APIs. Now want to develop a background job using the same spring context and I was planning to use jesque for that. I followed the jesque documentation for initializing the workers and enqueuing the jobs…
yesuagg
  • 153
  • 1
  • 2
  • 9
1
vote
2 answers

Transactional background jobs with grails

Is it possible to enforce transactionality in a background job from jesque from grails? I'm using jesque-grails plugin where I can inject other services including GORM ... may I mark the job as @Transaction and expect the payload to be executed in a…
Rafael
  • 2,521
  • 2
  • 33
  • 59
1
vote
1 answer

How to enqueue a job in sidekiq with Java or Scala

I have a sidekiq installation in ruby running, and I would like to enqueue jobs from a Scala / Java system. How can I do this? Here is my worker: class MyWorker include Sidekiq::Worker def perform(param) puts "processing #{param}" …
Daniel Cukier
  • 11,502
  • 15
  • 68
  • 123
0
votes
1 answer

Multiple queues vs multiple jobs in resque

I am using resque to background process two types of jobs: (1) 3rd-party API requests (2) DB query and insert While the two jobs can be processed parallely, each job type in itself can only be processed in serial order. For example, DB operations…
Ninja
  • 5,082
  • 6
  • 37
  • 59
0
votes
1 answer

Installing and trying jesque-web

I am running redis on my laptop for trying out and learning with default config file located at /etc/redis/6379.conf. you can see at http://paste.ubuntu.com/10678722/ I want to try jesque-web on my laptop so to install and trying I followed steps…
Alok
  • 7,734
  • 8
  • 55
  • 100
0
votes
1 answer

Jesque(Resque): Get all open delayed jobs in redis db

Jesque is a good tool I want to use. Jesque is an implementation of Resque in Java. It is fully-interoperable with the Ruby and Node.js (Coffee-Resque) implementations. Jesque is a Maven project and depends on Jedis to connect to Redis, Jackson…
heaphach
  • 1,492
  • 1
  • 20
  • 44