Wieger Opmeer
(opmeer@strato.de) TPC Glasgow 2018
Ordering a Wordpress Package on Shared Webhosting
(and mostly still is)
A running job has:
All job state is persistent.
Per task state sequence:
a custom workflow modelling language:
jcc
compilerworkflow calltest:in: input numberout: output numberwfomap: output = v.thingdo: call add: counter = a.input step = 3 into: thing = o.counter
workflow whiletest:in: input numberout: output numberdo: while !v.thing or v.thing < 10: call add: counter = v.thing // a.input into: thing = o.counterwfomap: output = v.thing
Like all job state the while loop state is persistent.
workflow casetest:in: input stringout: counter number thing stringwfomap: counter = v.counter thing = v.thingdo: case a.input: when "foo": call add: counter = 10 into: counter = o.counter thing = 'got foo' when bar, baz: eval: counter = -1 thing = 'got bar or baz' else: eval: counter = -1 thing = 'dunno what i got: ' . a.input
# select * from create_job('calltest','{"input":123}'::jsonb); o_job_id | o_listenstring----------+---------------- 9 | job:9:finished
Query done by the client.
create_job
:
calltest
notify "jobtaskdone", '(5,3,9)'
to the Maestro# select * from do_jobtaskdone('(5,3,9)'); error | jobtask -------+--------- false | (5,2,9)
Query done by the Maestro on receipt of the notification.
do_jobtaskdone
:
Ignore the error = false for now
# select * from do_jobtask('(5,2,9)'); error | jobtask -------+--------- false | null
Query done by the Maestro.
do_jobtask
:
notify "action:1:ready", '{"job_id": 9}'
has been sent# select * from get_task('thisworker','add',9); o_job_id | o_job_cookie | o_in_args | o_env ----------+--------------+-----------------+------- 9 | da3c5c5d | {"counter":123} | null
Query done by the worker on receipt of the notification.
get_task
:
# select task_done('da3c5c5d...', '{"counter":126}');void
Query done by the worker when it has done it's work.
task_done
:
NOTIFY "jobtaskdone", '(5,2,9)'
# select * from do_jobtaskdone('(5,2,9)'); error | jobtask -------+--------- false | (5,4,9)
Query done by the Maestro on receipt of the notification.
do_jobtaskdone
:
# select * from do_jobtask('(5,4,9)'); error | jobtask -------+--------- false | null
Query done by the Maestro.
Task_id 4 happens to be the "end task" for workflow_id 5:
notify "job:9:finished", ''
is sent.# select get_job_status(9); get_job_status ----------------- {"output": 126}
Called by the client on receipt of the notifcation
get_job_status
:
workflow calltest:in: input numberout: output numberwfomap: output = v.thingdo: call add: counter = a.input step = 3 into: thing = o.counter
workflow calltest:in: input numberout: output numberwfomap: [[ $o{output} = $v{thing}; ]]do: call add: [[ $i{counter} = $a{input}; $i{step} = 3; ]] into: [[ $v{thing} = $o{counter}; ]]
CREATE OR REPLACE FUNCTION jobcenter.do_imap(code text, args jsonb, env jsonb, vars jsonb) RETURNS jsonb LANGUAGE plperlAS $function$use strict;use warnings;use JSON::MaybeXS qw(from_json to_json JSON);use JobCenter::Safe;my $safe = new JobCenter::Safe;my ($code, $jargs, $jenv, $jvars) = @_;our %a = %{from_json($jargs // '{}')};our %e = %{from_json($jenv // '{}')};our %v = %{from_json($jvars // '{}')};our %i = ();our $TRUE = JSON->true;our $FALSE = JSON->false;our $JSON = JSON::MaybeXS->new(utf8 => 0);$safe->share(qw(%a %e %v %i $TRUE $FALSE $JSON));$safe->reval($code, 1);die "$@" if $@;return to_json(\%i);$function$
use JobCenter::Client::Mojo;use Mojo::IOLoop;$client = JobCenter::Client::Mojo->new( who => 'theEmployee', token => 'doesThings',);$client->announce( actionname => 'add', cd => \&do_add, mode => 'async',)$client->work();sub do_add { my ($job_id, $vars, $cb) = @_; Mojo::IOLoop->timer(.5 => sub { $cb->({ counter => $vars->{counter} + $vars->{step} }); });}
my $client = JobCenter::Client::Mojo->new( who => 'theCustomer', token => 'wantsThings', json => 1, );my ($job_id, $outargs) = $client->call( wfname => 'calltest', inargs => '{"input":456}');print "$job_id: $outargs\n" if $job_id;
2824: {"output":459}
workflow "prov.vhost_event":in: zone string zoneid integer vhost stringout: result boolean log string optionalrole: jobs_spoolerwfomap: <result> log = ifdef(v.log)locks: zoneid _ manual workflowlock 'prov.vhost_event'do: lock zoneid a.zoneid # lock zoneid call provdb_get_rid_by_vhost: zoneid = a.zoneid vhost = a.vhost into: <rid> <orderno> <clientid>
call dwh_vhost_event: <rid> <orderno> <clientid> zone = a.zone zoneid = a.zoneid vhost = a.vhost into: <result> v.postconfigure = ifdef(o.postconfigure) v.log = ifdef(o.comment) if [[ $v{postconfigure} and $v{postconfigure} eq 'set_default_ip' ]]: call provdb_update_zone_template: zoneid = a.zoneid template = 'strato-dwh-std' into: <result> call 'prov.get_ip_list': <rid> usage = 'DEFAULT_IP' into: v.ips = o.array
if [[ @{v{ips}} ]]: call provdb_set_initial_ip: zoneid = a.zoneid <ips> into: <result> v.log .= ifdef(o.log) # unlock unlock zoneid a.zoneid # done
Find it at:
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |