forked from cloudfoundry-community/redis-boshrelease
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.log.txt
2590 lines (2565 loc) · 551 KB
/
.log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Director task 615
I, [2016-01-19T11:32:28.125706 #1020] [0x2b1aa4ffd338] INFO -- TaskHelper: Director Version: 1.3160.0
I, [2016-01-19T11:32:28.125751 #1020] [0x2b1aa4ffd338] INFO -- TaskHelper: Enqueuing task: 615
I, [2016-01-19 11:32:29 #7229] [] INFO -- DirectorJobRunner: Looking for task with task id 615
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: (0.000264s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
I, [2016-01-19 11:32:29 #7229] [] INFO -- DirectorJobRunner: Found task #<Bosh::Director::Models::Task @values={:id=>615, :state=>"queued", :timestamp=>2016-01-19 11:32:28 +0000, :description=>"create deployment", :result=>nil, :output=>"/var/vcap/store/director/tasks/615", :checkpoint_time=>2016-01-19 11:32:28 +0000, :type=>"update_deployment", :username=>"admin"}>
I, [2016-01-19 11:32:29 #7229] [] INFO -- DirectorJobRunner: Starting task: 615
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Creating job
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000099s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000204s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000088s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000255s) SELECT * FROM "tasks" WHERE "id" = 615
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Performing task: #<Bosh::Director::Models::Task @values={:id=>615, :state=>"queued", :timestamp=>2016-01-19 11:32:28 +0000, :description=>"create deployment", :result=>nil, :output=>"/var/vcap/store/director/tasks/615", :checkpoint_time=>2016-01-19 11:32:28 +0000, :type=>"update_deployment", :username=>"admin"}>
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000097s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000076s) BEGIN
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000250s) UPDATE "tasks" SET "state" = 'processing', "timestamp" = '2016-01-19 11:32:29.351018+0000', "description" = 'create deployment', "result" = NULL, "output" = '/var/vcap/store/director/tasks/615', "checkpoint_time" = '2016-01-19 11:32:29.351092+0000', "type" = 'update_deployment', "username" = 'admin' WHERE ("id" = 615)
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.001595s) COMMIT
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Reading deployment manifest
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Manifest:
---
compilation:
cloud_properties:
instance_type: c3.large
network: redis1
reuse_compilation_vms: true
workers: 6
director_uuid: b0f799d8-f00b-460d-bb44-733a7b269253
jobs:
- instances: 1
name: redis_leader_z1
networks:
- name: redis1
static_ips:
persistent_disk: 4096
properties:
network: redis1
redis:
password: red!s
resource_pool: small_z1
templates:
- name: redis
release: redis
- instances: 2
name: redis_z1
networks:
- name: redis1
static_ips:
persistent_disk: 4096
properties:
network: redis1
redis:
master: 0.redis-leader-z1.redis1.redis-aws-ec2.microbosh
password: red!s
resource_pool: small_z1
templates:
- name: redis
release: redis
update:
canaries: 10
- instances: 0
name: redis_test_slave_z1
networks:
- name: redis1
static_ips:
persistent_disk: 4096
properties:
network: redis1
redis:
master: 0.redis-leader-z1.redis1.redis-aws-ec2.microbosh
password: red!s
resource_pool: small_z1
templates:
- name: redis
release: redis
- instances: 1
lifecycle: errand
name: acceptance-tests
networks:
- name: redis1
static_ips:
properties:
redis:
master: 0.redis-leader-z1.redis1.redis-aws-ec2.microbosh
password: red!s
slave: 0.redis-test-slave-z1.redis1.redis-aws-ec2.microbosh
resource_pool: small_z1
templates:
- name: acceptance-tests
release: redis
meta:
environment: redis-aws-ec2
stemcell:
name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent
version: latest
name: redis-aws-ec2
networks:
- cloud_properties: {}
name: floating
type: vip
- cloud_properties:
security_groups:
- default
name: redis1
type: dynamic
properties:
redis: {}
releases:
- name: redis
version: '9.1'
resource_pools:
- cloud_properties:
instance_type: t2.small
name: small_z1
network: redis1
size: 4
stemcell:
name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent
version: 3177
update:
canaries: 1
canary_watch_time: 1000-100000
max_in_flight: 50
update_watch_time: 1000-100000
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Acquiring deployment lock on redis-aws-ec2
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Acquiring lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Acquired lock: lock:deployment:redis-aws-ec2
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: sending update deployment start event
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: SENT: hm.director.alert {"id":"27319d02-5499-4304-8265-f25bc35a9bac","severity":4,"source":"director","title":"director - begin update deployment","summary":"Begin update deployment for 'redis-aws-ec2' against Director 'b0f799d8-f00b-460d-bb44-733a7b269253'","created_at":1453203149}
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding deployment
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000211s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000089s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "deployments" WHERE ("name" = 'redis-aws-ec2') LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Creating deployment plan
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Deployment plan options: {"recreate"=>false, "skip_drain"=>nil, "job_states"=>{}, "job_rename"=>{}}
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Created deployment plan
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Preparing deployment
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding releases
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Acquiring release lock: redis
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Acquiring lock: lock:release:redis
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Acquired lock: lock:release:redis
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000094s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000084s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000159s) SELECT * FROM "releases" WHERE ("name" = 'redis') LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000086s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000099s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000189s) SELECT * FROM "release_versions" WHERE (("release_versions"."release_id" = 13) AND ("version" = '9.1')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Found release `redis/9.1'
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:release:redis
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000558s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000273s) SELECT "release_versions".* FROM "release_versions" INNER JOIN "deployments_release_versions" ON (("deployments_release_versions"."release_version_id" = "release_versions"."id") AND ("deployments_release_versions"."deployment_id" = 61))
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: Lock renewal thread exiting
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Deleting lock: lock:release:redis
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Deleted lock: lock:release:redis
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding existing deployment
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000098s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000165s) SELECT * FROM "vms" WHERE ("vms"."deployment_id" = 61)
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Waiting for tasks to complete
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Shutting down pool
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding resource pools
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding idle VM (index=0)
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding idle VM (index=1)
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding idle VM (index=2)
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding idle VM (index=3)
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding stemcells
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000093s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000107s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000085s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "stemcells" WHERE (("name" = 'bosh-aws-xen-hvm-ubuntu-trusty-go_agent') AND ("version" = '3177')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000089s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000454s) SELECT "deployments".* FROM "deployments" INNER JOIN "deployments_stemcells" ON (("deployments_stemcells"."deployment_id" = "deployments"."id") AND ("deployments_stemcells"."stemcell_id" = 3))
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding templates
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Binding template `redis'
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000098s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000302s) SELECT "templates".* FROM "templates" INNER JOIN "release_versions_templates" ON (("release_versions_templates"."template_id" = "templates"."id") AND ("release_versions_templates"."release_version_id" = 23))
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000102s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000354s) SELECT "packages".* FROM "packages" INNER JOIN "packages_release_versions" ON (("packages_release_versions"."package_id" = "packages"."id") AND ("packages_release_versions"."release_version_id" = 23))
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Bound template `redis'
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Binding template `acceptance-tests'
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Bound template `acceptance-tests'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding properties
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding unallocated VMs
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000091s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000087s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000175s) SELECT * FROM "instances" WHERE (("deployment_id" = 61) AND ("job" = 'redis_leader_z1') AND ("index" = 0)) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding allocated VM (index=0)
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000091s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000083s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000160s) SELECT * FROM "instances" WHERE (("deployment_id" = 61) AND ("job" = 'redis_z1') AND ("index" = 0)) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding allocated VM (index=1)
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000085s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000088s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000167s) SELECT * FROM "instances" WHERE (("deployment_id" = 61) AND ("job" = 'redis_z1') AND ("index" = 1)) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: ResourcePool `small_z1' - Adding allocated VM (index=2)
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Binding instance networks
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000087s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000081s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000148s) SELECT * FROM "releases" WHERE ("name" = 'redis') LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000085s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000081s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000170s) SELECT * FROM "release_versions" WHERE (("release_versions"."release_id" = 13) AND ("version" = '9.1')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000089s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000169s) SELECT * FROM "releases" WHERE ("releases"."id" = 13) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000084s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000092s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000140s) SELECT * FROM "releases" WHERE ("name" = 'redis') LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000080s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000095s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000165s) SELECT * FROM "release_versions" WHERE (("release_versions"."release_id" = 13) AND ("version" = '9.1')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000086s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000137s) SELECT * FROM "releases" WHERE ("releases"."id" = 13) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000101s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000082s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000140s) SELECT * FROM "releases" WHERE ("name" = 'redis') LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000084s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000086s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000153s) SELECT * FROM "release_versions" WHERE (("release_versions"."release_id" = 13) AND ("version" = '9.1')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000196s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000143s) SELECT * FROM "releases" WHERE ("releases"."id" = 13) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000083s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000083s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000142s) SELECT * FROM "releases" WHERE ("name" = 'redis') LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000083s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000079s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000162s) SELECT * FROM "release_versions" WHERE (("release_versions"."release_id" = 13) AND ("version" = '9.1')) LIMIT 1
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000091s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000133s) SELECT * FROM "releases" WHERE ("releases"."id" = 13) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Generating a list of compile tasks
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Job templates `redis/redis' need to run on stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Checking whether package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000092s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000079s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: (0.000193s) SELECT * FROM "compiled_packages" WHERE (("package_id" = 429) AND ("stemcell_id" = 3) AND ("dependency_key" = '[]')) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled on `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Processing package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' dependencies
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Job templates `redis/redis' need to run on stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Checking whether package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Job templates `redis/redis' need to run on stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Checking whether package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Job templates `redis/acceptance-tests' need to run on stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Checking whether package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [task:615] INFO -- DirectorJobRunner: Package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' is ready to be compiled for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
D, [2016-01-19 11:32:29 #7229] [task:615] DEBUG -- DirectorJobRunner: Creating new thread
I, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] INFO -- DirectorJobRunner: Compiling package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
I, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] INFO -- DirectorJobRunner: Acquiring compile lock on 429 3
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: Acquiring lock: lock:compile:429:3
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: Acquired lock: lock:compile:429:3
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000089s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000083s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000177s) SELECT * FROM "compiled_packages" WHERE (("package_id" = 429) AND ("stemcell_id" = 3) AND ("dependency_key" = '[]')) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] INFO -- DirectorJobRunner: Package `redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0' needs to be compiled on `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000087s) SELECT NULL
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000185s) SELECT max("build") FROM "compiled_packages" WHERE (("package_id" = 429) AND ("stemcell_id" = 3)) LIMIT 1
I, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] INFO -- DirectorJobRunner: Creating compilation VM for stemcell `bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177'
D, [2016-01-19 11:32:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: External CPI sending request: {"method":"create_vm","arguments":["5b9235c3-685e-4a26-80ec-a324af94f280","ami-547c413a light",{"instance_type":"c3.large"},{"redis1":{"type":"dynamic","cloud_properties":{"security_groups":["default"]},"default":["dns","gateway"]}},null,{}],"context":{"director_uuid":"b0f799d8-f00b-460d-bb44-733a7b269253"}} with command: /var/vcap/jobs/aws_cpi/bin/cpi
D, [2016-01-19 11:32:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:32:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000260s) SELECT NULL
D, [2016-01-19 11:32:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000094s) BEGIN
D, [2016-01-19 11:32:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000245s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:32:59.353822+0000' WHERE ("id" = 615)
D, [2016-01-19 11:32:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001285s) COMMIT
D, [2016-01-19 11:32:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:32:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: External CPI got response: {"result":"i-29cb938c","error":null,"log":""}, err: I, [2016-01-19T11:32:35.197238 #7243] INFO -- : [AWS EC2 200 0.099336 0 retries] describe_regions()
I, [2016-01-19T11:32:35.275095 #7243] INFO -- : [AWS EC2 200 0.072343 0 retries] describe_images(:filters=>[{:name=>"image-id",:values=>["ami-547c413a"]}])
I, [2016-01-19T11:32:35.328070 #7243] INFO -- : [AWS EC2 200 0.051362 0 retries] describe_images(:image_ids=>["ami-547c413a"])
D, [2016-01-19T11:32:35.328674 #7243] DEBUG -- : Use instance storage to create the virtual machine
I, [2016-01-19T11:32:35.328892 #7243] INFO -- : Creating new instance with: {:count=>1, :image_id=>"ami-547c413a", :instance_type=>"c3.large", :block_device_mappings=>[{:device_name=>"/dev/sdb", :virtual_name=>"ephemeral0"}], :user_data=>"{\"registry\":{\"endpoint\":\"http://admin:[email protected]:25777\"}}", :key_name=>"bosh", :security_groups=>["default"]}
I, [2016-01-19T11:32:35.329118 #7243] INFO -- : Launching on demand instance...
W, [2016-01-19T11:32:35.329196 #7243] WARN -- : IP address was in use:
I, [2016-01-19T11:32:36.289484 #7243] INFO -- : [AWS EC2 200 0.958811 0 retries] run_instances(:block_device_mappings=>[{:device_name=>"/dev/sdb",:virtual_name=>"ephemeral0"}],:client_token=>"42a5e0e0-adde-4d03-9d0e-2f551b9a23c4",:image_id=>"ami-547c413a",:instance_type=>"c3.large",:key_name=>"bosh",:max_count=>1,:min_count=>1,:security_groups=>["default"],:user_data=>"eyJyZWdpc3RyeSI6eyJlbmRwb2ludCI6Imh0dHA6Ly9hZG1pbjphZG1pbkAx\nMC4wLjAuNjoyNTc3NyJ9fQ==")
I, [2016-01-19T11:32:36.289713 #7243] INFO -- : Waiting for instance to be ready...
I, [2016-01-19T11:32:36.477535 #7243] INFO -- : [AWS EC2 200 0.186822 0 retries] describe_instances(:instance_ids=>["i-29cb938c"])
D, [2016-01-19T11:32:36.478597 #7243] DEBUG -- : Waiting for i-29cb938c to be running, retrying in 2 seconds (1/54)
I, [2016-01-19T11:32:38.644772 #7243] INFO -- : [AWS EC2 200 0.164921 0 retries] describe_instances(:instance_ids=>["i-29cb938c"])
D, [2016-01-19T11:32:38.645825 #7243] DEBUG -- : Waiting for i-29cb938c to be running, retrying in 4 seconds (2/54)
I, [2016-01-19T11:32:42.854876 #7243] INFO -- : [AWS EC2 200 0.207838 0 retries] describe_instances(:instance_ids=>["i-29cb938c"])
D, [2016-01-19T11:32:42.855951 #7243] DEBUG -- : Waiting for i-29cb938c to be running, retrying in 8 seconds (3/54)
I, [2016-01-19T11:32:51.020120 #7243] INFO -- : [AWS EC2 200 0.162933 0 retries] describe_instances(:instance_ids=>["i-29cb938c"])
D, [2016-01-19T11:32:51.021123 #7243] DEBUG -- : Waiting for i-29cb938c to be running, retrying in 16 seconds (4/54)
I, [2016-01-19T11:33:07.356262 #7243] INFO -- : [AWS EC2 200 0.33392 0 retries] describe_instances(:instance_ids=>["i-29cb938c"])
I, [2016-01-19T11:33:07.357407 #7243] INFO -- : i-29cb938c is now running, took 31.067524292s
I, [2016-01-19T11:33:07.357505 #7243] INFO -- : Creating new instance 'i-29cb938c'
I, [2016-01-19T11:33:07.463087 #7243] INFO -- : [AWS EC2 200 0.10457 0 retries] describe_addresses(:filters=>[{:name=>"instance-id",:values=>["i-29cb938c"]}])
I, [2016-01-19T11:33:07.547624 #7243] INFO -- : [AWS EC2 200 0.083635 0 retries] describe_images(:image_ids=>["ami-547c413a"])
, exit_status: pid 7238 exit 0
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT NULL
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000086s) SELECT NULL
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT COUNT(*) AS "count" FROM "vms" WHERE ("agent_id" = '5b9235c3-685e-4a26-80ec-a324af94f280') LIMIT 1
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000102s) SELECT NULL
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000107s) BEGIN
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000299s) INSERT INTO "vms" ("deployment_id", "agent_id", "env_json", "cid") VALUES (61, '5b9235c3-685e-4a26-80ec-a324af94f280', '{}', 'i-29cb938c') RETURNING *
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.001423s) COMMIT
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000193s) SELECT NULL
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT * FROM "instances" WHERE ("instances"."vm_id" = 517) LIMIT 1
D, [2016-01-19 11:33:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: External CPI sending request: {"method":"set_vm_metadata","arguments":["i-29cb938c",{"director":"my-bosh","deployment":"redis-aws-ec2"}],"context":{"director_uuid":"b0f799d8-f00b-460d-bb44-733a7b269253"}} with command: /var/vcap/jobs/aws_cpi/bin/cpi
D, [2016-01-19 11:33:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: External CPI got response: {"result":null,"error":null,"log":""}, err: I, [2016-01-19T11:33:13.303602 #7266] INFO -- : [AWS EC2 200 0.064403 0 retries] describe_regions()
I, [2016-01-19T11:33:13.570714 #7266] INFO -- : [AWS EC2 200 0.262143 0 retries] create_tags(:resources=>["i-29cb938c"],:tags=>[{:key=>"director",:value=>"my-bosh"}])
I, [2016-01-19T11:33:13.768704 #7266] INFO -- : [AWS EC2 200 0.197192 0 retries] create_tags(:resources=>["i-29cb938c"],:tags=>[{:key=>"deployment",:value=>"redis-aws-ec2"}])
, exit_status: pid 7261 exit 0
I, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] INFO -- DirectorJobRunner: Configuring compilation VM: i-29cb938c
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000253s) SELECT NULL
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000106s) SELECT NULL
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000236s) SELECT * FROM "vms" WHERE ("agent_id" = '5b9235c3-685e-4a26-80ec-a324af94f280') LIMIT 1
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000098s) SELECT NULL
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000193s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.73109eae-1db9-4a8d-96ed-9be1df08258e"}
D, [2016-01-19 11:33:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT NULL
D, [2016-01-19 11:33:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.616065ca-b0bf-4df2-90e2-002516092449"}
D, [2016-01-19 11:33:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT NULL
D, [2016-01-19 11:33:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f219dea5-a6f3-4ffb-a24b-f4e4658fb633"}
D, [2016-01-19 11:33:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:33:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000289s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9015ef1f-4ed4-4d5c-942a-85307abdca6a"}
D, [2016-01-19 11:33:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:33:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.bd591e3d-e6a6-49f8-9a3d-b4b3a81e91e6"}
D, [2016-01-19 11:33:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000244s) SELECT NULL
D, [2016-01-19 11:33:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.722c5483-4062-44a0-84e3-5e86a23fe31b"}
D, [2016-01-19 11:33:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000251s) SELECT NULL
D, [2016-01-19 11:33:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.366ab794-9237-49c8-afdb-6c770a7f64a8"}
D, [2016-01-19 11:33:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT NULL
D, [2016-01-19 11:33:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4e04dd7b-2457-4fa0-9a17-4f3cc99440ae"}
D, [2016-01-19 11:33:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT NULL
D, [2016-01-19 11:33:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.45a84e28-5ce2-479f-a25c-45004696e906"}
D, [2016-01-19 11:33:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:33:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6f0bead2-ef7b-4c32-8612-b0911b8b25fc"}
D, [2016-01-19 11:33:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000267s) SELECT NULL
D, [2016-01-19 11:33:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.178f7353-def5-4e1d-a85d-3918da5186e6"}
D, [2016-01-19 11:33:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT NULL
D, [2016-01-19 11:33:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1cb108f5-a4f0-46d6-8f31-2de5ec2de632"}
D, [2016-01-19 11:33:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT NULL
D, [2016-01-19 11:33:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9ba2b5e2-8ca0-4da4-9b5c-d2f2098e2315"}
D, [2016-01-19 11:33:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT NULL
D, [2016-01-19 11:33:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5c19b1f3-ec23-4575-892c-d2773ea15538"}
D, [2016-01-19 11:33:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT NULL
D, [2016-01-19 11:33:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8520d80f-0dbe-49da-893a-acb96842747d"}
D, [2016-01-19 11:33:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000253s) SELECT NULL
D, [2016-01-19 11:33:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000271s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d72a5d28-f2b2-4e92-a632-6f795afd11d3"}
D, [2016-01-19 11:33:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:33:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000065s) BEGIN
D, [2016-01-19 11:33:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000260s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:33:29.358157+0000' WHERE ("id" = 615)
D, [2016-01-19 11:33:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001554s) COMMIT
D, [2016-01-19 11:33:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000224s) SELECT NULL
D, [2016-01-19 11:33:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.0a3ed6bf-05cd-4c3d-a8fa-a740cbe9337b"}
D, [2016-01-19 11:33:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:33:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3f441f76-4933-4d72-82c7-afc16d23da53"}
D, [2016-01-19 11:33:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT NULL
D, [2016-01-19 11:33:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3d85fc00-dc81-4b1e-9a54-94c63c74607d"}
D, [2016-01-19 11:33:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000250s) SELECT NULL
D, [2016-01-19 11:33:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3bb2f4f9-af0c-4fc4-b272-bf649b47552c"}
D, [2016-01-19 11:33:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT NULL
D, [2016-01-19 11:33:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1ca2f6e7-76b6-42d7-a8db-fc84218cf3cb"}
D, [2016-01-19 11:33:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:33:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000257s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4cae1722-30b8-4d52-971d-78bcd3da1658"}
D, [2016-01-19 11:33:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT NULL
D, [2016-01-19 11:33:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.962ad2bd-668c-488c-bafe-3f1e894ef7d8"}
D, [2016-01-19 11:33:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT NULL
D, [2016-01-19 11:33:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000207s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9cdec0ca-89e7-4a48-ac45-7af891d1ded0"}
D, [2016-01-19 11:33:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT NULL
D, [2016-01-19 11:33:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.c6d653c3-225f-46c5-8351-41fa54f2be07"}
D, [2016-01-19 11:33:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT NULL
D, [2016-01-19 11:33:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.13997e3e-9f9a-4dc8-9183-ec6874e8cbcd"}
D, [2016-01-19 11:33:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:33:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.df65f4c9-e2a7-43b1-a1af-125f0693e92c"}
D, [2016-01-19 11:33:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT NULL
D, [2016-01-19 11:33:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.99d0103b-648e-4f93-9d55-cc878fb2d0e7"}
D, [2016-01-19 11:33:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:33:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.15576b5c-0cbc-4192-bb1c-aab583920fd0"}
D, [2016-01-19 11:33:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000269s) SELECT NULL
D, [2016-01-19 11:33:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000207s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d6e8eaf1-4465-414a-a2a3-df7feb8e9e0c"}
D, [2016-01-19 11:33:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000236s) SELECT NULL
D, [2016-01-19 11:33:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4ba08b08-e729-45d5-9721-c5d6a377f97a"}
D, [2016-01-19 11:33:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:33:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5a7a2c38-1741-49b1-b49b-d7638bfe9fc9"}
D, [2016-01-19 11:33:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000259s) SELECT NULL
D, [2016-01-19 11:33:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.00c2313f-d9e6-41c2-a138-73e3d9732c40"}
D, [2016-01-19 11:33:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT NULL
D, [2016-01-19 11:33:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000234s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.159ae8b5-ca14-48cd-92f7-70e3fd7d14cb"}
D, [2016-01-19 11:33:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT NULL
D, [2016-01-19 11:33:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000921s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1e23375f-19c2-4cae-b7d0-35c01967e5cb"}
D, [2016-01-19 11:33:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000256s) SELECT NULL
D, [2016-01-19 11:33:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6a47f00a-ed91-44ec-a540-9ad0aa62215e"}
D, [2016-01-19 11:33:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:33:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fbc9624b-52bc-493c-8cbf-5f78caa70884"}
D, [2016-01-19 11:33:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000263s) SELECT NULL
D, [2016-01-19 11:33:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.542d354d-a324-46a3-b014-4fe578915f8a"}
D, [2016-01-19 11:33:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:33:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.89eed63c-014c-4add-b1e9-85a20dbcb1d7"}
D, [2016-01-19 11:33:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT NULL
D, [2016-01-19 11:33:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f2dfbfc7-de54-4eda-b6d0-cbdf60c6583c"}
D, [2016-01-19 11:33:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000298s) SELECT NULL
D, [2016-01-19 11:33:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.676218c3-c1d9-4dbb-a02f-0a33f1a2730a"}
D, [2016-01-19 11:33:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT NULL
D, [2016-01-19 11:33:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b4920dee-0687-4c54-b2ff-a1cc60c61938"}
D, [2016-01-19 11:33:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT NULL
D, [2016-01-19 11:33:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000198s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.54480fb2-3e50-4d2f-8697-4f68c284e5e2"}
D, [2016-01-19 11:33:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000234s) SELECT NULL
D, [2016-01-19 11:33:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000293s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4fe6aa89-37f7-421e-b22a-e45d25fdca14"}
D, [2016-01-19 11:33:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT NULL
D, [2016-01-19 11:33:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.7771f662-ddb1-4122-950b-b250c5943aba"}
D, [2016-01-19 11:33:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:33:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.ceed09c9-8aeb-4c97-946f-c6367c916208"}
D, [2016-01-19 11:33:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000231s) SELECT NULL
D, [2016-01-19 11:33:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000064s) BEGIN
D, [2016-01-19 11:33:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000247s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:33:59.361844+0000' WHERE ("id" = 615)
D, [2016-01-19 11:33:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001316s) COMMIT
D, [2016-01-19 11:33:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:33:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:33:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000259s) SELECT NULL
D, [2016-01-19 11:33:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:33:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.0caf6ab4-07d8-46e0-9eb5-d53a6b94ba07"}
D, [2016-01-19 11:34:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT NULL
D, [2016-01-19 11:34:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.42782268-8afb-4101-9216-694023f2b186"}
D, [2016-01-19 11:34:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000232s) SELECT NULL
D, [2016-01-19 11:34:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.ec05b8a0-562e-404e-9bca-67b42e513580"}
D, [2016-01-19 11:34:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000236s) SELECT NULL
D, [2016-01-19 11:34:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fba0c397-81cd-4a7d-8cd3-d2b792f623bf"}
D, [2016-01-19 11:34:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT NULL
D, [2016-01-19 11:34:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000253s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.074f4e90-0b35-4eb7-ad69-b28bb0c7bbcd"}
D, [2016-01-19 11:34:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT NULL
D, [2016-01-19 11:34:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1c506751-3ab3-4808-b83a-a676621d8086"}
D, [2016-01-19 11:34:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000263s) SELECT NULL
D, [2016-01-19 11:34:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.42533fb0-8da9-477c-b115-75e815beec8d"}
D, [2016-01-19 11:34:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:34:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000257s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.51483680-1916-46b5-aceb-52f7ead58861"}
D, [2016-01-19 11:34:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT NULL
D, [2016-01-19 11:34:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5d408c16-06c7-404a-ad3b-03453b0fa67e"}
D, [2016-01-19 11:34:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT NULL
D, [2016-01-19 11:34:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000215s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d41bd3f3-004c-4ee0-a3bf-dbe27763d73a"}
D, [2016-01-19 11:34:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT NULL
D, [2016-01-19 11:34:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.50e362b4-a44f-4d60-8cc3-b31719b673e1"}
D, [2016-01-19 11:34:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000232s) SELECT NULL
D, [2016-01-19 11:34:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d4c7fc13-ea25-486c-bfc5-32d5ddbd4caf"}
D, [2016-01-19 11:34:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000273s) SELECT NULL
D, [2016-01-19 11:34:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fe054927-8200-4c6b-b624-bddef92a99c7"}
D, [2016-01-19 11:34:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT NULL
D, [2016-01-19 11:34:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f927d69c-856c-4d72-9d3c-569a92a86399"}
D, [2016-01-19 11:34:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT NULL
D, [2016-01-19 11:34:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d88bc581-1a90-4876-8aeb-322ce0dcc4e2"}
D, [2016-01-19 11:34:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000250s) SELECT NULL
D, [2016-01-19 11:34:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e75a1660-26bf-4cbb-912e-3cd3a21eb03b"}
D, [2016-01-19 11:34:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT NULL
D, [2016-01-19 11:34:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000224s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3c6e0b26-d223-4912-a4a5-6dee302099b1"}
D, [2016-01-19 11:34:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT NULL
D, [2016-01-19 11:34:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.814f6d06-9cf3-43ca-bcfc-30d4bd0f5593"}
D, [2016-01-19 11:34:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000265s) SELECT NULL
D, [2016-01-19 11:34:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f157aa9a-e5f3-4087-ab71-12edfa9a3a93"}
D, [2016-01-19 11:34:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT NULL
D, [2016-01-19 11:34:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.7b42b4e0-63c2-4d40-a918-91dc8b849eb9"}
D, [2016-01-19 11:34:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT NULL
D, [2016-01-19 11:34:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2bb70fc0-d665-4319-baa8-62c0592238dd"}
D, [2016-01-19 11:34:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT NULL
D, [2016-01-19 11:34:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000260s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2644be87-d905-448a-bbce-84be8d9082d5"}
D, [2016-01-19 11:34:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT NULL
D, [2016-01-19 11:34:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000211s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.334d3379-0b56-49db-b95e-bb1785f13a9f"}
D, [2016-01-19 11:34:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000224s) SELECT NULL
D, [2016-01-19 11:34:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000272s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.946d9f9e-2366-4c69-aa20-f29aceb5bae4"}
D, [2016-01-19 11:34:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:34:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000205s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5c892d8f-dd43-4bbc-b5f2-b97a7b795188"}
D, [2016-01-19 11:34:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000254s) SELECT NULL
D, [2016-01-19 11:34:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f7cb880f-2c8f-4732-8538-5b2741cf24ff"}
D, [2016-01-19 11:34:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:34:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6e3f5dcd-e66a-4063-a311-616d328236a5"}
D, [2016-01-19 11:34:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000251s) SELECT NULL
D, [2016-01-19 11:34:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3db0cbb4-a5f4-472b-a783-68e849300822"}
D, [2016-01-19 11:34:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT NULL
D, [2016-01-19 11:34:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000264s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.470b9d77-6cec-4561-b233-27c17ffd7f9f"}
D, [2016-01-19 11:34:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:34:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9a314143-677e-408d-ac83-49b5796c110f"}
D, [2016-01-19 11:34:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000623s) SELECT NULL
D, [2016-01-19 11:34:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000066s) BEGIN
D, [2016-01-19 11:34:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000282s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:34:29.365045+0000' WHERE ("id" = 615)
D, [2016-01-19 11:34:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001433s) COMMIT
D, [2016-01-19 11:34:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT NULL
D, [2016-01-19 11:34:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6091729b-ee7b-4929-9a65-6906f61dd1c3"}
D, [2016-01-19 11:34:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000250s) SELECT NULL
D, [2016-01-19 11:34:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4cdf4e53-0c16-49c6-b593-199be01aa2b7"}
D, [2016-01-19 11:34:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:34:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.65c1ede3-6aee-44f8-976c-e68a50532905"}
D, [2016-01-19 11:34:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000275s) SELECT NULL
D, [2016-01-19 11:34:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.cf6c2130-eb75-468d-b93e-f7234e121e49"}
D, [2016-01-19 11:34:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:34:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.196d3271-35a0-4898-a778-ef979f3d0a5e"}
D, [2016-01-19 11:34:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:34:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.eb2dc24a-534a-47c0-b981-4d31d7e2aa74"}
D, [2016-01-19 11:34:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT NULL
D, [2016-01-19 11:34:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.c1347ce4-2ae6-4955-98c6-5cebd3110d1b"}
D, [2016-01-19 11:34:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT NULL
D, [2016-01-19 11:34:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000224s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.05a4cde5-9de1-4ac7-9360-18884c54aad7"}
D, [2016-01-19 11:34:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT NULL
D, [2016-01-19 11:34:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000213s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f20341df-fdab-42a7-bc47-d7ee825451c7"}
D, [2016-01-19 11:34:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT NULL
D, [2016-01-19 11:34:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.79c4a893-d341-4e68-9939-5546d2a49e54"}
D, [2016-01-19 11:34:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT NULL
D, [2016-01-19 11:34:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a82d04d5-9783-4ab4-a7ad-75099e96d8db"}
D, [2016-01-19 11:34:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT NULL
D, [2016-01-19 11:34:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4144728f-7f5c-40e2-b944-386ee626db40"}
D, [2016-01-19 11:34:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000256s) SELECT NULL
D, [2016-01-19 11:34:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8d6346b6-3f85-4404-bc29-713748b8eb23"}
D, [2016-01-19 11:34:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT NULL
D, [2016-01-19 11:34:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000256s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d5985f01-a912-40ef-8485-8249f1e9d5d7"}
D, [2016-01-19 11:34:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000293s) SELECT NULL
D, [2016-01-19 11:34:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.bc8b5e9c-3340-4836-b530-96cddd765dff"}
D, [2016-01-19 11:34:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:34:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.eee360fb-d053-429e-9e41-1dc3492ade2a"}
D, [2016-01-19 11:34:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:34:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000212s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.05818694-cbb6-4ac7-b0f3-0b73882afa52"}
D, [2016-01-19 11:34:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000265s) SELECT NULL
D, [2016-01-19 11:34:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.eb57a186-fba1-4d61-9c72-01badcce6f76"}
D, [2016-01-19 11:34:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000258s) SELECT NULL
D, [2016-01-19 11:34:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8b14fcef-b91d-4fe1-bb8e-e79a13b6f29b"}
D, [2016-01-19 11:34:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000215s) SELECT NULL
D, [2016-01-19 11:34:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5a10a28d-ea0c-484a-ab01-aa965944b3b5"}
D, [2016-01-19 11:34:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000244s) SELECT NULL
D, [2016-01-19 11:34:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.66d70841-8b1a-4836-83a4-bee560a2282e"}
D, [2016-01-19 11:34:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT NULL
D, [2016-01-19 11:34:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.24890fc0-727e-4c1d-b792-62aac98dde9c"}
D, [2016-01-19 11:34:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT NULL
D, [2016-01-19 11:34:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a25bbe45-21a2-4ae4-a245-aca7ce3d7fa6"}
D, [2016-01-19 11:34:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT NULL
D, [2016-01-19 11:34:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fa4be33f-793e-4d39-96a8-4ce095415b0b"}
D, [2016-01-19 11:34:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:34:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5c977ce7-7a42-4933-8b3b-729a8107b988"}
D, [2016-01-19 11:34:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:34:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000232s) SELECT NULL
D, [2016-01-19 11:34:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2f735ddb-6091-4890-91c6-8fe13595fd65"}
D, [2016-01-19 11:34:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT NULL
D, [2016-01-19 11:34:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d30c06a8-95b6-4771-bb87-eb5d47057861"}
D, [2016-01-19 11:34:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:34:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6e80529d-6923-4fdd-80cb-3a398d808743"}
D, [2016-01-19 11:34:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT NULL
D, [2016-01-19 11:34:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000205s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a595f462-e394-490b-97a3-e3657ff471ae"}
D, [2016-01-19 11:34:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:34:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:34:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b5313e0b-fe74-477e-8f46-c561d35b20b3"}
D, [2016-01-19 11:34:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:34:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000076s) BEGIN
D, [2016-01-19 11:34:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000278s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:34:59.368869+0000' WHERE ("id" = 615)
D, [2016-01-19 11:34:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001427s) COMMIT
D, [2016-01-19 11:34:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:34:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000232s) SELECT NULL
D, [2016-01-19 11:35:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000260s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.52403f53-0555-4a47-9cdd-21507df1dc34"}
D, [2016-01-19 11:35:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT NULL
D, [2016-01-19 11:35:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.7bbfbeeb-f6d0-4b19-9b52-e8134f2761ec"}
D, [2016-01-19 11:35:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:35:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9feeb5a6-bc35-4545-9173-cdd588af0edb"}
D, [2016-01-19 11:35:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:35:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fc0f3c2d-7c23-4e6b-95ba-605ab84b3f35"}
D, [2016-01-19 11:35:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000208s) SELECT NULL
D, [2016-01-19 11:35:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a0857613-17a6-481b-8114-ad3d206f8be7"}
D, [2016-01-19 11:35:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:35:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f0aa0903-7e90-4209-a84b-8547e2553de5"}
D, [2016-01-19 11:35:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT NULL
D, [2016-01-19 11:35:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4e030445-adc8-4043-b58b-1ab6679ec2b1"}
D, [2016-01-19 11:35:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT NULL
D, [2016-01-19 11:35:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2e6f8cf4-c56e-4565-b60b-498fdb2da6ea"}
D, [2016-01-19 11:35:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000232s) SELECT NULL
D, [2016-01-19 11:35:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a7042e51-7fb2-4202-a7d7-772b74a9471c"}
D, [2016-01-19 11:35:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000251s) SELECT NULL
D, [2016-01-19 11:35:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9d68ec4f-a0bf-4ace-8f3c-0693ecaa30cf"}
D, [2016-01-19 11:35:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT NULL
D, [2016-01-19 11:35:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e0fedd3f-beca-4948-85e6-207e638cbcb4"}
D, [2016-01-19 11:35:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000215s) SELECT NULL
D, [2016-01-19 11:35:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2c0293c9-950c-4c75-b903-b0f23866f994"}
D, [2016-01-19 11:35:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:35:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000316s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.0c80d95d-57fb-469a-84bf-816bdcae7c2d"}
D, [2016-01-19 11:35:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000236s) SELECT NULL
D, [2016-01-19 11:35:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.2eeec9c5-e3a2-4df1-aa13-4490daed7e3e"}
D, [2016-01-19 11:35:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:35:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5f0a6eca-c19a-4c35-999c-db32394d9c18"}
D, [2016-01-19 11:35:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000270s) SELECT NULL
D, [2016-01-19 11:35:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.4039e6ec-0721-4f5e-af36-c70baa3c49e9"}
D, [2016-01-19 11:35:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000250s) SELECT NULL
D, [2016-01-19 11:35:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000234s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.26ff5e11-f037-4f09-9d7d-680f64829041"}
D, [2016-01-19 11:35:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT NULL
D, [2016-01-19 11:35:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.ea44f8ba-300f-425e-a6b9-3241e07b50d7"}
D, [2016-01-19 11:35:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000279s) SELECT NULL
D, [2016-01-19 11:35:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000254s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.712c6de1-9119-4bb9-bcb4-b1bc7076da30"}
D, [2016-01-19 11:35:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000255s) SELECT NULL
D, [2016-01-19 11:35:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000217s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.103e1cd2-d3de-4d47-8fcb-b79ace5725dd"}
D, [2016-01-19 11:35:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT NULL
D, [2016-01-19 11:35:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000247s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e559bbee-5997-465a-86d7-3ed84013fea1"}
D, [2016-01-19 11:35:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000256s) SELECT NULL
D, [2016-01-19 11:35:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e51fe762-95a8-404d-9709-cd519b1a2601"}
D, [2016-01-19 11:35:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT NULL
D, [2016-01-19 11:35:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.cfd3e547-3f1d-4225-bfc9-e8c15b111cfb"}
D, [2016-01-19 11:35:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000260s) SELECT NULL
D, [2016-01-19 11:35:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:23 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.34a5dab4-b129-417e-b5f4-b2e113bebab2"}
D, [2016-01-19 11:35:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000280s) SELECT NULL
D, [2016-01-19 11:35:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:24 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e1cf8836-bb68-41ff-a0b7-cafa91ce2c93"}
D, [2016-01-19 11:35:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:24 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT NULL
D, [2016-01-19 11:35:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:25 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.be9865f4-f8ab-4f02-84bc-477d1aee4485"}
D, [2016-01-19 11:35:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT NULL
D, [2016-01-19 11:35:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000251s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:26 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.fb43dc0c-e099-47a3-be54-b3bc8fc2d51b"}
D, [2016-01-19 11:35:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT NULL
D, [2016-01-19 11:35:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:27 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.7a4dc632-8ebb-4e56-935f-16b271cac79f"}
D, [2016-01-19 11:35:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000206s) SELECT NULL
D, [2016-01-19 11:35:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:28 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d6a2f5a4-72c2-4fd9-af72-b60e6409a909"}
D, [2016-01-19 11:35:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000257s) SELECT NULL
D, [2016-01-19 11:35:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:29 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e6911874-8082-4b32-8328-83c6f4182829"}
D, [2016-01-19 11:35:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000240s) SELECT NULL
D, [2016-01-19 11:35:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000062s) BEGIN
D, [2016-01-19 11:35:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000261s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:35:29.372158+0000' WHERE ("id" = 615)
D, [2016-01-19 11:35:29 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.002177s) COMMIT
D, [2016-01-19 11:35:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:29 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:35:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:30 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.aabff812-3ad5-4bbf-bf5c-beee4bc25dbd"}
D, [2016-01-19 11:35:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000242s) SELECT NULL
D, [2016-01-19 11:35:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:31 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9542b8ec-9886-4d35-bd78-7630dfd0f89c"}
D, [2016-01-19 11:35:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT NULL
D, [2016-01-19 11:35:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000236s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:32 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.7ed3c671-2206-4f41-aa16-79497b153eb6"}
D, [2016-01-19 11:35:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT NULL
D, [2016-01-19 11:35:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:33 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.79789988-d541-46ef-a38b-8a2537c6064f"}
D, [2016-01-19 11:35:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000243s) SELECT NULL
D, [2016-01-19 11:35:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:34 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.dac47c2f-b77c-427c-8697-6ba784e1aff7"}
D, [2016-01-19 11:35:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:34 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT NULL
D, [2016-01-19 11:35:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:35 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.893e9987-12fa-40e4-b3b3-b5ebe1855334"}
D, [2016-01-19 11:35:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT NULL
D, [2016-01-19 11:35:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000234s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:36 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.cbfab546-3e38-46e3-83be-f0f6c381a5b4"}
D, [2016-01-19 11:35:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000259s) SELECT NULL
D, [2016-01-19 11:35:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000250s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:37 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.cdc1a99b-2adf-4dbd-88e5-451ffc63a0b9"}
D, [2016-01-19 11:35:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:35:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:38 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b70bb8ae-c3f1-4af0-a319-47fea946daee"}
D, [2016-01-19 11:35:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT NULL
D, [2016-01-19 11:35:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:39 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.709182e3-4f94-490b-b461-0317f035d738"}
D, [2016-01-19 11:35:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:39 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000234s) SELECT NULL
D, [2016-01-19 11:35:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:40 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.715d9ef5-cef6-4bc3-a560-4151da21d9a2"}
D, [2016-01-19 11:35:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:35:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:41 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.5f4d7994-a502-4f80-8977-334b11c88479"}
D, [2016-01-19 11:35:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT NULL
D, [2016-01-19 11:35:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:42 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.cfcd4b9a-81b5-4ab8-9eb5-96da7616e133"}
D, [2016-01-19 11:35:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000281s) SELECT NULL
D, [2016-01-19 11:35:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000227s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:43 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e3b941f2-4ddd-4b8f-86e6-a86fb813b02f"}
D, [2016-01-19 11:35:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:35:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000215s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:44 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6e80d344-45eb-4d0d-8336-13f05f929834"}
D, [2016-01-19 11:35:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:44 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000255s) SELECT NULL
D, [2016-01-19 11:35:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:45 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.db3fc01e-5554-4a81-8cb6-c5a85c02a70d"}
D, [2016-01-19 11:35:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT NULL
D, [2016-01-19 11:35:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:46 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.f1e0275e-b4d3-410c-a60a-3e1f4e75b9f2"}
D, [2016-01-19 11:35:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT NULL
D, [2016-01-19 11:35:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:47 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.bf32db1a-83bd-4767-a0f2-768475cb2794"}
D, [2016-01-19 11:35:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT NULL
D, [2016-01-19 11:35:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000223s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:48 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.df463872-0d38-4503-8616-edaab018b26b"}
D, [2016-01-19 11:35:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000260s) SELECT NULL
D, [2016-01-19 11:35:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000267s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:49 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.e9b5d4c3-6f8d-4abe-86f5-59098f3f1384"}
D, [2016-01-19 11:35:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:49 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000244s) SELECT NULL
D, [2016-01-19 11:35:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:50 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.0c081cdd-6868-4c33-85e4-64713b36c395"}
D, [2016-01-19 11:35:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT NULL
D, [2016-01-19 11:35:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000221s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:51 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.04806b1a-df77-447f-a0de-da81d97fc4e0"}
D, [2016-01-19 11:35:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:35:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:52 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1e6e6729-b828-452e-a795-8bdc87176561"}
D, [2016-01-19 11:35:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000230s) SELECT NULL
D, [2016-01-19 11:35:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:53 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b29f1878-39b3-43a5-8101-8ae428e1a52c"}
D, [2016-01-19 11:35:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT NULL
D, [2016-01-19 11:35:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000272s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:54 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.dd441ec9-dea0-4315-b775-ebccea44a8a5"}
D, [2016-01-19 11:35:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:54 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:35:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT NULL
D, [2016-01-19 11:35:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:55 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6a9ced7f-b59b-482f-b830-6f4406b9d527"}
D, [2016-01-19 11:35:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT NULL
D, [2016-01-19 11:35:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:56 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.29a0127d-9736-4d33-9848-dd292b156cb0"}
D, [2016-01-19 11:35:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000257s) SELECT NULL
D, [2016-01-19 11:35:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:57 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6329f66c-9ebc-4a88-bd39-b3ffee1139ef"}
D, [2016-01-19 11:35:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT NULL
D, [2016-01-19 11:35:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000229s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:58 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.85f90245-0fb1-4960-a83b-b204c4009bf9"}
D, [2016-01-19 11:35:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:35:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000213s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:35:59 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.d65339b5-84e3-4937-8c21-7959926ad857"}
D, [2016-01-19 11:35:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000201s) SELECT NULL
D, [2016-01-19 11:35:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000064s) BEGIN
D, [2016-01-19 11:35:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.000252s) UPDATE "tasks" SET "checkpoint_time" = '2016-01-19 11:35:59.376232+0000' WHERE ("id" = 615)
D, [2016-01-19 11:35:59 #7229] [task:615-checkpoint] DEBUG -- DirectorJobRunner: (0.001330s) COMMIT
D, [2016-01-19 11:35:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:35:59 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:36:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000258s) SELECT NULL
D, [2016-01-19 11:36:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000249s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:00 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.88ad0ab4-37a5-43e1-b55a-a5587aa1f477"}
D, [2016-01-19 11:36:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:36:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:01 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.40c7bf59-b6dd-469c-a323-d8d5f9af1efc"}
D, [2016-01-19 11:36:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT NULL
D, [2016-01-19 11:36:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000219s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:02 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.77412290-c3e9-457f-a4d7-b4f2db8839be"}
D, [2016-01-19 11:36:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000228s) SELECT NULL
D, [2016-01-19 11:36:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000251s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:03 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.81b0bddf-2590-42ca-ab58-522923c59dda"}
D, [2016-01-19 11:36:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000222s) SELECT NULL
D, [2016-01-19 11:36:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000210s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:04 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3c536db5-1d62-424b-a296-742d465dbd69"}
D, [2016-01-19 11:36:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:36:04 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:36:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000300s) SELECT NULL
D, [2016-01-19 11:36:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000233s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:05 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9c51742e-80e8-48d8-b6ca-e0f1b5e44668"}
D, [2016-01-19 11:36:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000238s) SELECT NULL
D, [2016-01-19 11:36:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000225s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:06 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.008b6039-8c18-4a41-8d99-40e3d1432a68"}
D, [2016-01-19 11:36:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000244s) SELECT NULL
D, [2016-01-19 11:36:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000244s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:07 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b5438863-84d9-4fde-b46f-00215865b984"}
D, [2016-01-19 11:36:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000239s) SELECT NULL
D, [2016-01-19 11:36:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000211s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:08 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.dc343bc5-9759-4b0c-ba5d-bedcd0bda4c9"}
D, [2016-01-19 11:36:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000220s) SELECT NULL
D, [2016-01-19 11:36:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000226s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:09 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.a42ad72a-0f73-4698-9997-5dfb0b445aaf"}
D, [2016-01-19 11:36:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:36:09 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:36:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000252s) SELECT NULL
D, [2016-01-19 11:36:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:10 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.864771d9-e941-47c1-b166-fa8ab7e35570"}
D, [2016-01-19 11:36:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:36:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:11 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.0f5843aa-2668-4a0c-bf74-f35285732fbc"}
D, [2016-01-19 11:36:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000216s) SELECT NULL
D, [2016-01-19 11:36:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000245s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:12 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.b92f22e9-c635-4462-9ea2-5aaa31d9c8d7"}
D, [2016-01-19 11:36:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000240s) SELECT NULL
D, [2016-01-19 11:36:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000246s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:13 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.562a18ed-b251-4d09-9d2b-c2773dd035e7"}
D, [2016-01-19 11:36:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:36:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000235s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:14 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.9462af60-8c89-4d81-b074-3bc67cf05983"}
D, [2016-01-19 11:36:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:36:14 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:36:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000263s) SELECT NULL
D, [2016-01-19 11:36:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000266s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:15 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.c33f5ba0-13a7-4f1d-a7f1-87e0ad3ef16d"}
D, [2016-01-19 11:36:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000248s) SELECT NULL
D, [2016-01-19 11:36:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000224s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:16 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.3be75bc5-b5ed-4e06-9fff-5b779d127b29"}
D, [2016-01-19 11:36:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000285s) SELECT NULL
D, [2016-01-19 11:36:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:17 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8bcdff37-1ab5-4c69-82a2-4fee097d148b"}
D, [2016-01-19 11:36:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000288s) SELECT NULL
D, [2016-01-19 11:36:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000254s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:18 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8a7d3fee-96c8-4381-8d25-74421cf7da15"}
D, [2016-01-19 11:36:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000264s) SELECT NULL
D, [2016-01-19 11:36:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:19 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.8ba10c83-6f0b-4ab6-bc41-06a82c48a777"}
D, [2016-01-19 11:36:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:deployment:redis-aws-ec2
D, [2016-01-19 11:36:19 #7229] [] DEBUG -- DirectorJobRunner: Renewing lock: lock:compile:429:3
D, [2016-01-19 11:36:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000241s) SELECT NULL
D, [2016-01-19 11:36:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000231s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:20 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.1d841025-17d3-4d40-a20a-367c3f4a54d2"}
D, [2016-01-19 11:36:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000210s) SELECT NULL
D, [2016-01-19 11:36:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000213s) SELECT * FROM "tasks" WHERE "id" = 615
D, [2016-01-19 11:36:21 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: SENT: agent.5b9235c3-685e-4a26-80ec-a324af94f280 {"protocol":2,"method":"ping","arguments":[],"reply_to":"director.31660b7f-9d6f-487e-abb5-6725ee5fc7f9.6d3b49bb-7d53-4cea-be3a-cb92cab3ee32"}
D, [2016-01-19 11:36:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000237s) SELECT NULL
D, [2016-01-19 11:36:22 #7229] [compile_package(redis-server/b53d5357ab95a74c9489cd98a024e6ef6047aba0, bosh-aws-xen-hvm-ubuntu-trusty-go_agent/3177)] DEBUG -- DirectorJobRunner: (0.000218s) SELECT * FROM "tasks" WHERE "id" = 615