Skip to content

machinery jobs with interrupt & check progress

Notifications You must be signed in to change notification settings

jackielii/process

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

process

import "github.com/jackielii/process/v5"

Build Status

process adds interruptable & setting-progress capability to machinery lib.

Until this PR is merged, we have to use my fork PR merged

Example usage: see api_test.go

redisDSN := "redis://localhost:6379"

task := func(ctx context.Context, msg string) (string, error) {
	sig := tasks.SignatureFromContext(ctx)
	if sig == nil {
		return "", errors.New("unable to retrieve task signature")
	}
	jobID := sig.UUID
	j, err := NewJobQuery(redisDSN)
	if err != nil {
		return "", err
	}
	defer j.Close()

	interruptedChan := j.InterruptedChan(jobID)
	processChan := j.ProgressChan(jobID)

	// emulate a long running task
	for i := 0; i < 100; i++ {
		select {
		case <-interruptedChan:
			return "interrupted", nil
		case processChan <- strconv.Itoa(i):
			time.Sleep(10 * time.Millisecond)
		}
	}
	return "received " + msg, nil
}

p, err := New(redisDSN)
require.NoError(t, err)
err = p.Register("call", task)
require.NoError(t, err)
jobID, err := p.Call("call", []tasks.Arg{
	{
		Type:  "string",
		Value: "sending arg1",
	},
})
require.NoError(t, err)

r := p.GetResult(jobID)
j := p.GetJobQuery()
i := 0
prevProgress := ""
for {
	rs, err := r.Touch()
	require.NoError(t, err)
	if rs != nil {
		break
	}
	progress, err := j.GetProgress(jobID)
	require.NoError(t, err)
	if progress != prevProgress {
		prevProgress = progress
		pi, _ := strconv.Atoi(progress)
		// because the actual progress will run faster than the checking
		// if synchronized behaviour is expected, check the above example
		assert.True(t, i < pi, "progress")
		i++
	}
	if i >= 10 {
		err = j.Interrupt(jobID)
		require.NoError(t, err)
	}
}

v, err := r.Get(10 * time.Millisecond)
require.NoError(t, err)
assert.Equal(t, "interrupted", v[0].String(), "message from task function")

About

machinery jobs with interrupt & check progress

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages