-
Notifications
You must be signed in to change notification settings - Fork 1
/
s2scenes.log
1767 lines (1745 loc) · 230 KB
/
s2scenes.log
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
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:50:39.370293&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:50:39.370293&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:51:37.071230&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:51:37.071230&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:52:19.113210&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:52:19.113210&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Found 3 products
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:53:26.248509&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:53:26.248509&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Found 200 products
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:54:49.471366&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:54:49.471366&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T15:55:00.510051&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T15:55:00.510051&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Found 200 products
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T16:00:31.187389&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): finder.eocloud.eu:443
DEBUG:urllib3.connectionpool:https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=200&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-26T16:00:31.187389&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
INFO:root:Found 200 products
INFO:root:Selected product: S2A_MSIL1C_20181226T080331_N0207_R035_T35JMH_20181226T101636.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=200&processingLevel=LEVELL1C&publishedAfter=2018-11-26T16:01:35.848559&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 200 products
INFO:root:Selected product: S2A_MSIL1C_20181226T080331_N0207_R035_T35JLL_20181226T101636.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-26T16:02:08.835786&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Selected product: S2B_MSIL1C_20181226T053229_N0207_R105_T43QCB_20181226T082912.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-26T16:02:29.841291&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Selected product: S2B_MSIL1C_20181225T230859_N0207_R101_T58LGH_20181226T002115.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-26T16:03:35.560594&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 713
INFO:root:Selected product: S2B_MSIL1C_20181226T004659_N0207_R102_T53HQA_20181226T020354.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T02:03:09.561129&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 650
INFO:root:Selected product: S2B_MSIL1C_20181226T103439_N0207_R108_T30PXA_20181226T124711.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T02:03:30.474239&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 650
INFO:root:Selected product: S2A_MSIL1C_20181226T094411_N0207_R036_T32PPV_20181226T105317.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T02:04:54.976814&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 650
INFO:root:Selected product: S2B_MSIL1C_20181226T171729_N0207_R112_T14RLQ_20181226T203645.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T02:05:29.711200&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 650
INFO:root:Selected product: S2B_MSIL1C_20181226T071309_N0207_R106_T39SYV_20181226T091942.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T11:14:50.790257&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 676
INFO:root:Selected product: S2A_MSIL1C_20181226T080331_N0207_R035_T37SFT_20181226T100233.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T11:17:29.277301&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 676
INFO:root:Selected product: S2A_MSIL1C_20181226T112451_N0207_R037_T29RKH_20181226T114909.SAFE
INFO:root:Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-27T11:18:35.272788&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
INFO:root:Found 2000 products
INFO:root:Narrow selection: 676
INFO:root:Selected product: S2A_MSIL1C_20181226T232831_N0207_R044_T57KYB_20181227T004331.SAFE
ERROR:root:Failed on mkdir ./bench-front/S2A_MSIL1C_20181226T232831_N0207_R044_T57KYB_20181227T004331.SAFE/. With error: [WinError 3] System nie mo¿e odnaleæ okrelonej cie¿ki: './bench-front/S2A_MSIL1C_20181226T232831_N0207_R044_T57KYB_20181227T004331.SAFE/'
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 01:33:39 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 01:33:39 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 01:33:39 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f6c3c0f91e0>
12/28/2018 01:33:39 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 01:33:39 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f6c3c131c80>
12/28/2018 01:33:39 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f6c3c080510>
12/28/2018 01:33:39 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f6c3c131a60>
12/28/2018 01:33:39 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 01:33:39 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 01:33:39 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 01:33:39 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 01:33:39 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 01:33:39 AM - job : START
12/28/2018 01:33:39 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T01:33:39.683916&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 01:33:39 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 01:33:41 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T01:33:39.683916&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 01:33:43 AM - find_products : Found 2000 products
12/28/2018 01:33:43 AM - select_product : Narrow selection: 706
12/28/2018 01:33:43 AM - select_product : Selected product: S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.SAFE
12/28/2018 01:40:37 AM - convert_product : b"reading file /eodata/Sentinel-2/MSI/L1C/2018/12/27/S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.SAFE\nloading RGB profile from '/home/savit/bench-front/rgb_def.txt'...\ncreating histogram for band 'B4'...\ncreating histogram for band 'B3'...\ncreating histogram for band 'B2'...\ncreating RGB image...\nwriting RGB image to '/home/savit/bench-front/S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.SAFE/S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.png'...\n"
12/28/2018 01:40:37 AM - convert_product : b"INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters\nSEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.\nINFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32632\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist\nINFO: org.hsqldb.persist.Logger: dataFileCache open start\n"
12/28/2018 01:40:37 AM - put_s3_file : START copying b'/home/savit/bench-front/S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.SAFE/S2B_MSIL1C_20181227T100419_N0207_R122_T32SNE_20181227T120856.png'
12/28/2018 01:40:37 AM - job : a bytes-like object is required, not 'str'
12/28/2018 01:40:37 AM - job : STOP
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 02:01:03 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 02:01:03 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 02:01:03 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f7027c190d0>
12/28/2018 02:01:03 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 02:01:03 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f7027a9cd08>
12/28/2018 02:01:03 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f70279f1510>
12/28/2018 02:01:03 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f7027a9cae8>
12/28/2018 02:01:03 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 02:01:03 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 02:01:03 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 02:01:03 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 02:01:03 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 02:01:03 AM - job : START
12/28/2018 02:01:03 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T02:01:03.446187&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 02:01:03 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 02:01:04 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T02:01:03.446187&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 02:01:07 AM - find_products : Found 2000 products
12/28/2018 02:01:07 AM - select_product : Narrow selection: 708
12/28/2018 02:01:07 AM - select_product : Selected product: S2A_MSIL1C_20181227T125301_N0207_R052_T24LXR_20181227T142234.SAFE
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 02:02:02 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 02:02:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 02:02:02 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f00d8256f28>
12/28/2018 02:02:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 02:02:02 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f00d828fa60>
12/28/2018 02:02:02 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f00d8169268>
12/28/2018 02:02:02 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f00d828f840>
12/28/2018 02:02:02 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 02:02:02 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 02:02:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 02:02:02 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 02:02:02 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 02:02:02 AM - job : START
12/28/2018 02:02:02 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T02:02:02.700847&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 02:02:02 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 02:02:04 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T02:02:02.700847&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 02:02:07 AM - find_products : Found 2000 products
12/28/2018 02:02:07 AM - select_product : Narrow selection: 708
12/28/2018 02:02:07 AM - select_product : Selected product: S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.SAFE
12/28/2018 02:07:54 AM - convert_product : b"reading file /eodata/Sentinel-2/MSI/L1C/2018/12/27/S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.SAFE\nloading RGB profile from '/home/savit/bench-front/rgb_def.txt'...\ncreating histogram for band 'B4'...\ncreating histogram for band 'B3'...\ncreating histogram for band 'B2'...\ncreating RGB image...\nwriting RGB image to '/home/savit/bench-front/S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.SAFE/S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.png'...\n"
12/28/2018 02:07:54 AM - convert_product : b"INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters\nSEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.\nINFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32638\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist\nINFO: org.hsqldb.persist.Logger: dataFileCache open start\n"
12/28/2018 02:10:18 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/waiters-2.json
12/28/2018 02:10:44 AM - put_s3_file : START copying b'/home/savit/bench-front/S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.SAFE/S2A_MSIL1C_20181227T073321_N0207_R049_T38RPR_20181227T084607.png'
12/28/2018 02:10:44 AM - job : a bytes-like object is required, not 'str'
12/28/2018 02:10:44 AM - job : STOP
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 02:13:07 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 02:13:07 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 02:13:07 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f638d96df28>
12/28/2018 02:13:07 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 02:13:07 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f638d9a5a60>
12/28/2018 02:13:07 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f638d87f268>
12/28/2018 02:13:07 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f638d9a5840>
12/28/2018 02:13:07 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 02:13:07 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 02:13:07 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 02:13:07 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 02:13:07 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 02:13:07 AM - job : START
12/28/2018 02:13:07 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T02:13:07.379071&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 02:13:07 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 02:13:08 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T02:13:07.379071&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 02:13:10 AM - find_products : Found 2000 products
12/28/2018 02:13:10 AM - select_product : Narrow selection: 707
12/28/2018 02:13:10 AM - select_product : Selected product: S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.SAFE
12/28/2018 02:19:21 AM - convert_product : b"reading file /eodata/Sentinel-2/MSI/L1C/2018/12/27/S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.SAFE\nloading RGB profile from '/home/savit/bench-front/rgb_def.txt'...\ncreating histogram for band 'B4'...\ncreating histogram for band 'B3'...\ncreating histogram for band 'B2'...\ncreating RGB image...\nwriting RGB image to '/home/savit/bench-front/S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.SAFE/S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.png'...\n"
12/28/2018 02:19:21 AM - convert_product : b"INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters\nSEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.\nINFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32631\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist\nINFO: org.hsqldb.persist.Logger: dataFileCache open start\n"
12/28/2018 02:32:53 AM - put_s3_file : START copying b'/home/savit/bench-front/S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.SAFE/S2B_MSIL1C_20181227T100419_N0207_R122_T31PGQ_20181227T133638.png'
12/28/2018 02:32:53 AM - job : a bytes-like object is required, not 'str'
12/28/2018 02:32:53 AM - job : STOP
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 02:33:22 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 02:33:22 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 02:33:22 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f2b94336f28>
12/28/2018 02:33:22 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 02:33:22 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f2b9436fa60>
12/28/2018 02:33:22 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f2b94249268>
12/28/2018 02:33:22 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f2b9436f840>
12/28/2018 02:33:22 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 02:33:22 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 02:33:22 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 02:33:22 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 02:33:22 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 02:33:22 AM - job : START
12/28/2018 02:33:22 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T02:33:22.902937&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 02:33:22 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 02:33:24 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T02:33:22.902937&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 02:33:26 AM - find_products : Found 2000 products
12/28/2018 02:33:26 AM - select_product : Narrow selection: 707
12/28/2018 02:33:26 AM - select_product : Selected product: S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.SAFE
12/28/2018 02:39:10 AM - convert_product : b"reading file /eodata/Sentinel-2/MSI/L1C/2018/12/27/S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.SAFE\nloading RGB profile from '/home/savit/bench-front/rgb_def.txt'...\ncreating histogram for band 'B4'...\ncreating histogram for band 'B3'...\ncreating histogram for band 'B2'...\ncreating RGB image...\nwriting RGB image to '/home/savit/bench-front/S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.SAFE/S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.png'...\n"
12/28/2018 02:41:19 AM - convert_product : b"INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters\nSEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.\nINFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32760\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist\nINFO: org.hsqldb.persist.Logger: dataFileCache open start\n"
12/28/2018 02:43:29 AM - put_s3_file : START copying b'/home/savit/bench-front/S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.SAFE/S2B_MSIL1C_20181227T221559_N0207_R129_T60GUR_20181227T232345.png'
12/28/2018 02:56:02 AM - job : a bytes-like object is required, not 'str'
12/28/2018 02:56:02 AM - job : STOP
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 03:06:02 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 03:06:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 03:06:02 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f7dd97c9f28>
12/28/2018 03:06:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 03:06:02 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f7dd9802a60>
12/28/2018 03:06:02 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f7dd96dc268>
12/28/2018 03:06:02 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f7dd9802840>
12/28/2018 03:06:02 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 03:06:02 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 03:06:02 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 03:06:02 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 03:06:02 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 03:06:02 AM - job : START
12/28/2018 03:06:02 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T03:06:02.000371&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 03:06:02 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 03:06:03 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T03:06:02.000371&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 03:06:05 AM - find_products : Found 2000 products
12/28/2018 03:06:05 AM - select_product : Narrow selection: 701
12/28/2018 03:06:05 AM - select_product : Selected product: S2A_MSIL1C_20181227T155651_N0207_R054_T18TVL_20181227T190952.SAFE
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 03:19:20 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 03:19:20 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 03:19:20 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f1b0d0e91e0>
12/28/2018 03:19:20 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 03:19:20 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f1b0d123c80>
12/28/2018 03:19:20 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f1b0d072510>
12/28/2018 03:19:20 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f1b0d123a60>
12/28/2018 03:19:20 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 03:19:20 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 03:19:21 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 03:19:21 AM - _register_retries : Registering retry handlers for service: s3
12/28/2018 03:19:21 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 03:19:21 AM - job : START
12/28/2018 03:19:21 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T03:19:20.964611&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 03:19:21 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 03:19:22 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T03:19:20.964611&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 03:19:24 AM - find_products : Found 2000 products
12/28/2018 03:19:24 AM - select_product : Narrow selection: 701
12/28/2018 03:19:24 AM - select_product : Selected product: S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE
12/28/2018 03:25:30 AM - convert_product : b"reading file /eodata/Sentinel-2/MSI/L1C/2018/12/27/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE\nloading RGB profile from '/home/savit/bench-front/rgb_def.txt'...\ncreating histogram for band 'B4'...\ncreating histogram for band 'B3'...\ncreating histogram for band 'B2'...\ncreating RGB image...\nwriting RGB image to '/home/savit/bench-front/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.png'...\n"
12/28/2018 03:25:30 AM - convert_product : b"INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters\nSEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.\nINFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32721\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist\nWARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist\nINFO: org.hsqldb.persist.Logger: dataFileCache open start\n"
12/28/2018 03:25:30 AM - put_s3_file : START copying b'/home/savit/bench-front/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.png'
12/28/2018 03:25:30 AM - acquire : Acquiring 0
12/28/2018 03:25:30 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f1b0921cda0>}) about to wait for the following futures []
12/28/2018 03:25:30 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f1b0921cda0>}) done waiting for dependent futures
12/28/2018 03:25:30 AM - _execute_main : Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f1b0921cda0>}) with kwargs {'client': <botocore.client.S3 object at 0x7f1b0cee62b0>, 'config': <boto3.s3.transfer.TransferConfig object at 0x7f1b0caa4a90>, 'osutil': <s3transfer.utils.OSUtils object at 0x7f1b0caa47f0>, 'request_executor': <s3transfer.futures.BoundedExecutor object at 0x7f1b0caa4f60>, 'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f1b0921cda0>}
12/28/2018 03:25:30 AM - _log_and_set_exception : Exception raised.
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/s3transfer/tasks.py", line 255, in _main
self._submit(transfer_future=transfer_future, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/s3transfer/upload.py", line 549, in _submit
upload_input_manager.provide_transfer_size(transfer_future)
File "/usr/local/lib/python3.6/dist-packages/s3transfer/upload.py", line 237, in provide_transfer_size
transfer_future.meta.call_args.fileobj))
File "/usr/local/lib/python3.6/dist-packages/s3transfer/utils.py", line 228, in get_file_size
return os.path.getsize(filename)
File "/usr/lib/python3.6/genericpath.py", line 50, in getsize
return os.stat(filename).st_size
FileNotFoundError: [Errno 2] No such file or directory: "b'/home/savit/bench-front/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.png'"
12/28/2018 03:25:30 AM - release : Releasing acquire 0/None
12/28/2018 03:25:30 AM - put_s3_file : [Errno 2] No such file or directory: "b'/home/savit/bench-front/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.SAFE/S2B_MSIL1C_20181227T134209_N0207_R124_T21JYK_20181227T165751.png'"
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 06:39:02 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 06:39:02 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 06:39:02 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f4c498d7ea0>
12/28/2018 06:39:02 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 06:39:02 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f4c499129d8>
12/28/2018 06:39:02 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f4c497eb1e0>
12/28/2018 06:39:02 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f4c499127b8>
12/28/2018 06:39:02 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 06:39:02 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 06:39:02 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 06:39:02 PM - _register_retries : Registering retry handlers for service: s3
12/28/2018 06:39:02 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 06:39:02 PM - job : START
12/28/2018 06:39:02 PM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T18:39:02.863404&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 06:39:02 PM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 06:39:04 PM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T18:39:02.863404&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 06:39:06 PM - find_products : Found 2000 products
12/28/2018 06:39:07 PM - select_product : Narrow selection: 752
12/28/2018 06:39:07 PM - select_product : Selected product: S2B_MSIL1C_20181228T131239_N0207_R138_T24MTU_20181228T144101.SAFE
12/28/2018 06:39:10 PM - convert_product : reading file /eodata/Sentinel-2/MSI/L1C/2018/12/28/S2B_MSIL1C_20181228T131239_N0207_R138_T24MTU_20181228T144101.SAFE
12/28/2018 06:39:10 PM - convert_product : INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters
SEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.
error: I/O error while reading input product: File not found: /eodata/Sentinel-2/MSI/L1C/2018/12/28/S2B_MSIL1C_20181228T131239_N0207_R138_T24MTU_20181228T144101.SAFE
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/28/2018 06:40:34 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/28/2018 06:40:34 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/28/2018 06:40:34 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f351a0c3ea0>
12/28/2018 06:40:34 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/28/2018 06:40:34 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f351a0fb9d8>
12/28/2018 06:40:34 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f3519fd51e0>
12/28/2018 06:40:34 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f351a0fb7b8>
12/28/2018 06:40:34 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/28/2018 06:40:34 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/28/2018 06:40:34 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/28/2018 06:40:34 PM - _register_retries : Registering retry handlers for service: s3
12/28/2018 06:40:34 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/28/2018 06:40:34 PM - job : START
12/28/2018 06:40:34 PM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-28T18:40:34.845032&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/28/2018 06:40:34 PM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/28/2018 06:40:36 PM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-28T18:40:34.845032&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/28/2018 06:40:40 PM - find_products : Found 2000 products
12/28/2018 06:40:40 PM - select_product : Narrow selection: 751
12/28/2018 06:40:40 PM - select_product : Selected product: S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.SAFE
12/28/2018 06:47:31 PM - convert_product : reading file /eodata/Sentinel-2/MSI/L1C/2018/12/28/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.SAFE
loading RGB profile from '/home/savit/bench-front/rgb_def.txt'...
creating histogram for band 'B4'...
creating histogram for band 'B3'...
creating histogram for band 'B2'...
creating RGB image...
writing RGB image to '/home/savit/bench-front/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.SAFE/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png'...
12/28/2018 06:47:31 PM - convert_product : INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters
SEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.
INFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32754
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist
INFO: org.hsqldb.persist.Logger: dataFileCache open start
12/28/2018 06:47:52 PM - put_s3_file : START copying /home/savit/bench-front/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.SAFE/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png
12/28/2018 06:47:52 PM - acquire : Acquiring 0
12/28/2018 06:47:52 PM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f3518a1a198>}) about to wait for the following futures []
12/28/2018 06:47:52 PM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f3518a1a198>}) done waiting for dependent futures
12/28/2018 06:47:52 PM - _execute_main : Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f3518a1a198>}) with kwargs {'client': <botocore.client.S3 object at 0x7f3519d18c88>, 'config': <boto3.s3.transfer.TransferConfig object at 0x7f350a332898>, 'osutil': <s3transfer.utils.OSUtils object at 0x7f350a332860>, 'request_executor': <s3transfer.futures.BoundedExecutor object at 0x7f350a332a20>, 'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f3518a1a198>}
12/28/2018 06:47:52 PM - submit : Submitting task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'extra_args': {}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7f350a332a20> for transfer request: 0.
12/28/2018 06:47:52 PM - acquire : Acquiring 0
12/28/2018 06:47:52 PM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'extra_args': {}}) about to wait for the following futures []
12/28/2018 06:47:52 PM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'extra_args': {}}) done waiting for dependent futures
12/28/2018 06:47:52 PM - _execute_main : Executing task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'extra_args': {}}) with kwargs {'client': <botocore.client.S3 object at 0x7f3519d18c88>, 'fileobj': <s3transfer.utils.ReadFileChunk object at 0x7f35189b2668>, 'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'extra_args': {}}
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_ascii_metadata at 0x7f351a05f730>
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function sse_md5 at 0x7f351a05dae8>
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function convert_body_to_file_like_object at 0x7f351a05ff28>
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_bucket_name at 0x7f351a05da60>
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_cache of <botocore.utils.S3RegionRedirector object at 0x7f3519ccd1d0>>
12/28/2018 06:47:52 PM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function generate_idempotent_uuid at 0x7f351a05d6a8>
12/28/2018 06:47:52 PM - _emit : Event before-call.s3.PutObject: calling handler <function conditionally_calculate_md5 at 0x7f351a05d9d8>
12/28/2018 06:47:52 PM - release : Releasing acquire 0/None
12/28/2018 06:47:53 PM - _emit : Event before-call.s3.PutObject: calling handler <function add_expect_header at 0x7f351a05df28>
12/28/2018 06:47:53 PM - add_expect_header : Adding expect 100 continue header to request.
12/28/2018 06:47:53 PM - _emit : Event before-call.s3.PutObject: calling handler <bound method S3RegionRedirector.set_request_url of <botocore.utils.S3RegionRedirector object at 0x7f3519ccd1d0>>
12/28/2018 06:47:53 PM - _emit : Event before-call.s3.PutObject: calling handler <function inject_api_version_header_if_needed at 0x7f351a060488>
12/28/2018 06:47:53 PM - make_request : Making request for OperationModel(name=PutObject) with params: {'url_path': '/front-office-sample/png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'query_string': {}, 'method': 'PUT', 'headers': {'User-Agent': 'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': 'aAy8web1UQ4QmZqPHCslZw==', 'Expect': '100-continue'}, 'body': <s3transfer.utils.ReadFileChunk object at 0x7f35189b2668>, 'url': 'https://eocloud.eu:8080/front-office-sample/png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png', 'context': {'client_region': 'us-east-1', 'client_config': <botocore.config.Config object at 0x7f3519d25668>, 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'front-office-sample'}}}
12/28/2018 06:47:53 PM - _emit : Event request-created.s3.PutObject: calling handler <function signal_not_transferring at 0x7f3519d43b70>
12/28/2018 06:47:53 PM - _emit : Event request-created.s3.PutObject: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7f3519d25320>>
12/28/2018 06:47:53 PM - _emit : Event choose-signer.s3.PutObject: calling handler <bound method ClientCreator._default_s3_presign_to_sigv2 of <botocore.client.ClientCreator object at 0x7f35215f5470>>
12/28/2018 06:47:53 PM - _emit : Event choose-signer.s3.PutObject: calling handler <function set_operation_specific_signer at 0x7f351a05d598>
12/28/2018 06:47:53 PM - add_auth : Calculating signature using v4 auth.
12/28/2018 06:47:53 PM - add_auth : CanonicalRequest:
PUT
/front-office-sample/png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png
content-md5:aAy8web1UQ4QmZqPHCslZw==
host:eocloud.eu:8080
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20181228T174753Z
content-md5;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
12/28/2018 06:47:53 PM - add_auth : StringToSign:
AWS4-HMAC-SHA256
20181228T174753Z
20181228/us-east-1/s3/aws4_request
bc376d08ee37551251cbf3c678240f382b87108fd155029c0168f8588cf9d00e
12/28/2018 06:47:53 PM - add_auth : Signature:
ccf46ccec2c762fbba79a1f252b63c66d3dac6aeec882af700b5222b594853f8
12/28/2018 06:47:53 PM - _emit : Event request-created.s3.PutObject: calling handler <function signal_transferring at 0x7f3519d43bf8>
12/28/2018 06:47:53 PM - _do_get_response : Sending http request: <AWSPreparedRequest stream_output=False, method=PUT, url=https://eocloud.eu:8080/front-office-sample/png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png, headers={'User-Agent': b'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': b'aAy8web1UQ4QmZqPHCslZw==', 'Expect': b'100-continue', 'X-Amz-Date': b'20181228T174753Z', 'X-Amz-Content-SHA256': b'UNSIGNED-PAYLOAD', 'Authorization': b'AWS4-HMAC-SHA256 Credential=15c92abe0b00450691e7bc967b7f947d/20181228/us-east-1/s3/aws4_request, SignedHeaders=content-md5;host;x-amz-content-sha256;x-amz-date, Signature=ccf46ccec2c762fbba79a1f252b63c66d3dac6aeec882af700b5222b594853f8', 'Content-Length': '2124702'}>
12/28/2018 06:47:53 PM - from_int : Converted retries value: False -> Retry(total=False, connect=None, read=None, redirect=0, status=None)
12/28/2018 06:47:53 PM - _new_conn : Starting new HTTPS connection (1): eocloud.eu
12/28/2018 06:47:53 PM - _send_output : Waiting for 100 Continue response.
12/28/2018 06:47:53 PM - _handle_expect_response : 100 Continue response seen, now sending request body.
12/28/2018 06:47:53 PM - _make_request : https://eocloud.eu:8080 "PUT /front-office-sample/png/S2A_MSIL1C_20181228T003701_N0207_R059_T54JWN_20181228T020529.png HTTP/1.1" 200 0
12/28/2018 06:47:53 PM - parse : Response headers: {'Content-Length': '0', 'ETag': '"680cbcc1e6f5510e10999a8f1c2b2567"', 'Accept-Ranges': 'bytes', 'x-amz-request-id': 'tx00000000000000207550a-005c2661c9-7ba7c287-default', 'Date': 'Fri, 28 Dec 2018 17:47:53 GMT'}
12/28/2018 06:47:53 PM - parse : Response body:
b''
12/28/2018 06:47:53 PM - _emit : Event needs-retry.s3.PutObject: calling handler <botocore.retryhandler.RetryHandler object at 0x7f3519ccd278>
12/28/2018 06:47:53 PM - __call__ : No retry needed.
12/28/2018 06:47:53 PM - _emit : Event needs-retry.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_error of <botocore.utils.S3RegionRedirector object at 0x7f3519ccd1d0>>
12/28/2018 06:47:53 PM - release : Releasing acquire 0/None
12/28/2018 06:49:04 PM - write_cms_files : START
12/28/2018 06:49:06 PM - get_max_dir_name : START
12/28/2018 06:50:13 PM - job : [Errno 2] No such file or directory: '/var/www/html/grav/user/pages/02.eo_images/'
12/28/2018 06:50:13 PM - job : STOP
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 01:03:09 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 01:03:09 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 01:03:09 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fd7ed919ea0>
12/29/2018 01:03:09 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 01:03:09 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7fd7ed9519d8>
12/29/2018 01:03:09 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7fd7ed82b1e0>
12/29/2018 01:03:09 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7fd7ed9517b8>
12/29/2018 01:03:09 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 01:03:09 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 01:03:09 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 01:03:09 AM - _register_retries : Registering retry handlers for service: s3
12/29/2018 01:03:09 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 01:03:09 AM - job : START
12/29/2018 01:03:09 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-29T01:03:09.628555&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/29/2018 01:03:09 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/29/2018 01:03:11 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-29T01:03:09.628555&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 01:03:12 AM - find_products : Found 2000 products
12/29/2018 01:03:12 AM - select_product : Narrow selection: 677
12/29/2018 01:03:12 AM - select_product : Selected product: S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.SAFE
12/29/2018 01:10:37 AM - convert_product : reading file /eodata/Sentinel-2/MSI/L1C/2018/12/28/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.SAFE
loading RGB profile from '/home/savit/bench-front/rgb_def.txt'...
creating histogram for band 'B4'...
creating histogram for band 'B3'...
creating histogram for band 'B2'...
creating RGB image...
writing RGB image to '/home/savit/bench-front/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.SAFE/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png'...
12/29/2018 01:10:37 AM - convert_product : INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters
SEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.
INFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32631
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist
INFO: org.hsqldb.persist.Logger: dataFileCache open start
12/29/2018 01:14:05 AM - put_s3_file : START copying /home/savit/bench-front/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.SAFE/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png
12/29/2018 01:14:05 AM - acquire : Acquiring 0
12/29/2018 01:14:05 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fd7dd66c0b8>}) about to wait for the following futures []
12/29/2018 01:14:05 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fd7dd66c0b8>}) done waiting for dependent futures
12/29/2018 01:14:05 AM - _execute_main : Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fd7dd66c0b8>}) with kwargs {'client': <botocore.client.S3 object at 0x7fd7ed56ecc0>, 'config': <boto3.s3.transfer.TransferConfig object at 0x7fd7ddbe7748>, 'osutil': <s3transfer.utils.OSUtils object at 0x7fd7ddbe77b8>, 'request_executor': <s3transfer.futures.BoundedExecutor object at 0x7fd7ddbe7940>, 'transfer_future': <s3transfer.futures.TransferFuture object at 0x7fd7dd66c0b8>}
12/29/2018 01:14:05 AM - submit : Submitting task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'extra_args': {}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7fd7ddbe7940> for transfer request: 0.
12/29/2018 01:14:05 AM - acquire : Acquiring 0
12/29/2018 01:14:05 AM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'extra_args': {}}) about to wait for the following futures []
12/29/2018 01:14:05 AM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'extra_args': {}}) done waiting for dependent futures
12/29/2018 01:14:05 AM - _execute_main : Executing task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'extra_args': {}}) with kwargs {'client': <botocore.client.S3 object at 0x7fd7ed56ecc0>, 'fileobj': <s3transfer.utils.ReadFileChunk object at 0x7fd7dd682588>, 'bucket': 'front-office-sample', 'key': 'png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'extra_args': {}}
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_ascii_metadata at 0x7fd7ed8b5730>
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function sse_md5 at 0x7fd7ed8b3ae8>
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function convert_body_to_file_like_object at 0x7fd7ed8b5f28>
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_bucket_name at 0x7fd7ed8b3a60>
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_cache of <botocore.utils.S3RegionRedirector object at 0x7fd7ed4f8240>>
12/29/2018 01:14:05 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function generate_idempotent_uuid at 0x7fd7ed8b36a8>
12/29/2018 01:14:05 AM - release : Releasing acquire 0/None
12/29/2018 01:14:05 AM - _emit : Event before-call.s3.PutObject: calling handler <function conditionally_calculate_md5 at 0x7fd7ed8b39d8>
12/29/2018 01:14:05 AM - _emit : Event before-call.s3.PutObject: calling handler <function add_expect_header at 0x7fd7ed8b3f28>
12/29/2018 01:14:05 AM - add_expect_header : Adding expect 100 continue header to request.
12/29/2018 01:14:05 AM - _emit : Event before-call.s3.PutObject: calling handler <bound method S3RegionRedirector.set_request_url of <botocore.utils.S3RegionRedirector object at 0x7fd7ed4f8240>>
12/29/2018 01:14:05 AM - _emit : Event before-call.s3.PutObject: calling handler <function inject_api_version_header_if_needed at 0x7fd7ed8b6488>
12/29/2018 01:14:05 AM - make_request : Making request for OperationModel(name=PutObject) with params: {'url_path': '/front-office-sample/png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'query_string': {}, 'method': 'PUT', 'headers': {'User-Agent': 'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': 'ezywsfzKwjccFP7372X28A==', 'Expect': '100-continue'}, 'body': <s3transfer.utils.ReadFileChunk object at 0x7fd7dd682588>, 'url': 'https://eocloud.eu:8080/front-office-sample/png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png', 'context': {'client_region': 'us-east-1', 'client_config': <botocore.config.Config object at 0x7fd7ed57b6a0>, 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'front-office-sample'}}}
12/29/2018 01:14:05 AM - _emit : Event request-created.s3.PutObject: calling handler <function signal_not_transferring at 0x7fd7ed599b70>
12/29/2018 01:14:05 AM - _emit : Event request-created.s3.PutObject: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7fd7ed57b358>>
12/29/2018 01:14:05 AM - _emit : Event choose-signer.s3.PutObject: calling handler <bound method ClientCreator._default_s3_presign_to_sigv2 of <botocore.client.ClientCreator object at 0x7fd7f4e4b470>>
12/29/2018 01:14:05 AM - _emit : Event choose-signer.s3.PutObject: calling handler <function set_operation_specific_signer at 0x7fd7ed8b3598>
12/29/2018 01:14:05 AM - add_auth : Calculating signature using v4 auth.
12/29/2018 01:14:05 AM - add_auth : CanonicalRequest:
PUT
/front-office-sample/png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png
content-md5:ezywsfzKwjccFP7372X28A==
host:eocloud.eu:8080
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20181229T001405Z
content-md5;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
12/29/2018 01:14:05 AM - add_auth : StringToSign:
AWS4-HMAC-SHA256
20181229T001405Z
20181229/us-east-1/s3/aws4_request
5c8a76d7c152c895d84bc009c6d26c2f0a71e4a72e4805863e1a0290c113a8d9
12/29/2018 01:14:05 AM - add_auth : Signature:
1178239ae3984b808956dd2d31c6c14cb1ec597559c767b83cf2be984eac164a
12/29/2018 01:14:05 AM - _emit : Event request-created.s3.PutObject: calling handler <function signal_transferring at 0x7fd7ed599bf8>
12/29/2018 01:14:05 AM - _do_get_response : Sending http request: <AWSPreparedRequest stream_output=False, method=PUT, url=https://eocloud.eu:8080/front-office-sample/png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png, headers={'User-Agent': b'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': b'ezywsfzKwjccFP7372X28A==', 'Expect': b'100-continue', 'X-Amz-Date': b'20181229T001405Z', 'X-Amz-Content-SHA256': b'UNSIGNED-PAYLOAD', 'Authorization': b'AWS4-HMAC-SHA256 Credential=15c92abe0b00450691e7bc967b7f947d/20181229/us-east-1/s3/aws4_request, SignedHeaders=content-md5;host;x-amz-content-sha256;x-amz-date, Signature=1178239ae3984b808956dd2d31c6c14cb1ec597559c767b83cf2be984eac164a', 'Content-Length': '1928461'}>
12/29/2018 01:14:05 AM - from_int : Converted retries value: False -> Retry(total=False, connect=None, read=None, redirect=0, status=None)
12/29/2018 01:14:05 AM - _new_conn : Starting new HTTPS connection (1): eocloud.eu
12/29/2018 01:14:06 AM - _send_output : Waiting for 100 Continue response.
12/29/2018 01:14:06 AM - _handle_expect_response : 100 Continue response seen, now sending request body.
12/29/2018 01:14:06 AM - _make_request : https://eocloud.eu:8080 "PUT /front-office-sample/png/S2A_MSIL1C_20181228T102431_N0207_R065_T31QBV_20181228T104416.png HTTP/1.1" 200 0
12/29/2018 01:14:06 AM - parse : Response headers: {'Content-Length': '0', 'ETag': '"7b3cb0b1fccac2371c14fef7ef65f6f0"', 'Accept-Ranges': 'bytes', 'x-amz-request-id': 'tx000000000000001ce0954-005c26bc4e-7d27c95d-default', 'Date': 'Sat, 29 Dec 2018 00:14:06 GMT'}
12/29/2018 01:14:06 AM - parse : Response body:
b''
12/29/2018 01:14:06 AM - _emit : Event needs-retry.s3.PutObject: calling handler <botocore.retryhandler.RetryHandler object at 0x7fd7ed4f82b0>
12/29/2018 01:14:06 AM - __call__ : No retry needed.
12/29/2018 01:14:06 AM - _emit : Event needs-retry.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_error of <botocore.utils.S3RegionRedirector object at 0x7fd7ed4f8240>>
12/29/2018 01:14:06 AM - release : Releasing acquire 0/None
12/29/2018 01:14:44 AM - write_cms_files : START
12/29/2018 01:14:53 AM - get_max_dir_name : START
12/29/2018 01:17:11 AM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16257.EO_16257/item.md
12/29/2018 01:22:07 AM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 11:44:40 AM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 11:44:40 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 11:44:40 AM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f2c07daeea0>
12/29/2018 11:44:40 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 11:44:40 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f2c07de69d8>
12/29/2018 11:44:40 AM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f2c07cc01e0>
12/29/2018 11:44:40 AM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f2c07de67b8>
12/29/2018 11:44:40 AM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 11:44:40 AM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 11:44:40 AM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 11:44:40 AM - _register_retries : Registering retry handlers for service: s3
12/29/2018 11:44:40 AM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 11:44:40 AM - job : START
12/29/2018 11:44:40 AM - find_products : Finder URL: https://finder.eocloud.eu/resto/api/collections/Sentinel2/search.json?maxRecords=2000&processingLevel=LEVELL1C&publishedAfter=2018-11-29T11:44:40.655346&cloudCover=[0,20]&sortParam=startDate&sortOrder=descending&dataset=ESA-DATASET
12/29/2018 11:44:40 AM - _new_conn : Starting new HTTPS connection (1): finder.eocloud.eu
12/29/2018 11:44:42 AM - _make_request : https://finder.eocloud.eu:443 "GET /resto/api/collections/Sentinel2/search.json?%20%20%20%20%20%20%20%20%20%20%20%20maxRecords=2000&%20%20%20%20%20%20%20%20%20%20%20%20processingLevel=LEVELL1C&%20%20%20%20%20%20%20%20%20%20%20%20publishedAfter=2018-11-29T11:44:40.655346&%20%20%20%20%20%20%20%20%20%20%20%20cloudCover=[0,20]&%20%20%20%20%20%20%20%20%20%20%20%20sortParam=startDate&sortOrder=descending&%20%20%20%20%20%20%20%20%20%20%20%20dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 11:44:45 AM - find_products : Found 2000 products
12/29/2018 11:44:46 AM - select_product : Narrow selection: 661
12/29/2018 11:44:46 AM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 11:52:54 AM - convert_product : reading file /eodata/Sentinel-2/MSI/L1C/2018/12/28/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
loading RGB profile from '/home/savit/bench-front/rgb_def.txt'...
creating histogram for band 'B4'...
creating histogram for band 'B3'...
creating histogram for band 'B2'...
creating RGB image...
writing RGB image to '/home/savit/bench-front/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png'...
12/29/2018 11:52:54 AM - convert_product : INFO: org.esa.snap.core.gpf.operators.tooladapter.ToolAdapterIO: Initializing external tool adapters
SEVERE: org.esa.s2tbx.dataio.gdal.activator.GDALDistributionInstaller: The environment variable LD_LIBRARY_PATH is not set. It must contain the current folder '.'.
INFO: org.esa.s2tbx.dataio.s2.ortho.S2OrthoProductReaderPlugIn: Building product reader - EPSG:32630
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [metadata_level] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [granuleidentifier] does not exist
WARNING: org.esa.s2tbx.dataio.metadata.GenericXmlMetadata: Metadata: the path to element [bandid] does not exist
INFO: org.hsqldb.persist.Logger: dataFileCache open start
12/29/2018 11:53:19 AM - put_s3_file : START copying /home/savit/bench-front/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png
12/29/2018 11:53:19 AM - acquire : Acquiring 0
12/29/2018 11:53:19 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f2c066a14a8>}) about to wait for the following futures []
12/29/2018 11:53:19 AM - _wait_until_all_complete : UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f2c066a14a8>}) done waiting for dependent futures
12/29/2018 11:53:19 AM - _execute_main : Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f2c066a14a8>}) with kwargs {'client': <botocore.client.S3 object at 0x7f2c07a03d68>, 'config': <boto3.s3.transfer.TransferConfig object at 0x7f2c161bb908>, 'osutil': <s3transfer.utils.OSUtils object at 0x7f2c040b0be0>, 'request_executor': <s3transfer.futures.BoundedExecutor object at 0x7f2c040b0d30>, 'transfer_future': <s3transfer.futures.TransferFuture object at 0x7f2c066a14a8>}
12/29/2018 11:53:19 AM - submit : Submitting task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'extra_args': {}}) to executor <s3transfer.futures.BoundedExecutor object at 0x7f2c040b0d30> for transfer request: 0.
12/29/2018 11:53:19 AM - acquire : Acquiring 0
12/29/2018 11:53:19 AM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'extra_args': {}}) about to wait for the following futures []
12/29/2018 11:53:19 AM - _wait_until_all_complete : PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'extra_args': {}}) done waiting for dependent futures
12/29/2018 11:53:19 AM - _execute_main : Executing task PutObjectTask(transfer_id=0, {'bucket': 'front-office-sample', 'key': 'png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'extra_args': {}}) with kwargs {'client': <botocore.client.S3 object at 0x7f2c07a03d68>, 'fileobj': <s3transfer.utils.ReadFileChunk object at 0x7f2c066b3978>, 'bucket': 'front-office-sample', 'key': 'png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'extra_args': {}}
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_ascii_metadata at 0x7f2c07d4a730>
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function sse_md5 at 0x7f2c07d48ae8>
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function convert_body_to_file_like_object at 0x7f2c07d4af28>
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function validate_bucket_name at 0x7f2c07d48a60>
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_cache of <botocore.utils.S3RegionRedirector object at 0x7f2c0798b2e8>>
12/29/2018 11:53:19 AM - _emit : Event before-parameter-build.s3.PutObject: calling handler <function generate_idempotent_uuid at 0x7f2c07d486a8>
12/29/2018 11:53:19 AM - release : Releasing acquire 0/None
12/29/2018 11:53:19 AM - _emit : Event before-call.s3.PutObject: calling handler <function conditionally_calculate_md5 at 0x7f2c07d489d8>
12/29/2018 11:53:19 AM - _emit : Event before-call.s3.PutObject: calling handler <function add_expect_header at 0x7f2c07d48f28>
12/29/2018 11:53:19 AM - add_expect_header : Adding expect 100 continue header to request.
12/29/2018 11:53:19 AM - _emit : Event before-call.s3.PutObject: calling handler <bound method S3RegionRedirector.set_request_url of <botocore.utils.S3RegionRedirector object at 0x7f2c0798b2e8>>
12/29/2018 11:53:19 AM - _emit : Event before-call.s3.PutObject: calling handler <function inject_api_version_header_if_needed at 0x7f2c07d4b488>
12/29/2018 11:53:19 AM - make_request : Making request for OperationModel(name=PutObject) with params: {'url_path': '/front-office-sample/png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'query_string': {}, 'method': 'PUT', 'headers': {'User-Agent': 'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': 'bsay6uOJ4w9gUfv9pw75kQ==', 'Expect': '100-continue'}, 'body': <s3transfer.utils.ReadFileChunk object at 0x7f2c066b3978>, 'url': 'https://eocloud.eu:8080/front-office-sample/png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png', 'context': {'client_region': 'us-east-1', 'client_config': <botocore.config.Config object at 0x7f2c07a11748>, 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'front-office-sample'}}}
12/29/2018 11:53:19 AM - _emit : Event request-created.s3.PutObject: calling handler <function signal_not_transferring at 0x7f2c07a2fb70>
12/29/2018 11:53:19 AM - _emit : Event request-created.s3.PutObject: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7f2c07a11400>>
12/29/2018 11:53:19 AM - _emit : Event choose-signer.s3.PutObject: calling handler <bound method ClientCreator._default_s3_presign_to_sigv2 of <botocore.client.ClientCreator object at 0x7f2c1b2e8470>>
12/29/2018 11:53:19 AM - _emit : Event choose-signer.s3.PutObject: calling handler <function set_operation_specific_signer at 0x7f2c07d48598>
12/29/2018 11:53:19 AM - add_auth : Calculating signature using v4 auth.
12/29/2018 11:53:19 AM - add_auth : CanonicalRequest:
PUT
/front-office-sample/png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png
content-md5:bsay6uOJ4w9gUfv9pw75kQ==
host:eocloud.eu:8080
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20181229T105319Z
content-md5;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
12/29/2018 11:53:19 AM - add_auth : StringToSign:
AWS4-HMAC-SHA256
20181229T105319Z
20181229/us-east-1/s3/aws4_request
85845b593313382b85a8978e18ad4aad676c402bae8d628e5245ef375d7763f8
12/29/2018 11:53:19 AM - add_auth : Signature:
8ea64b5d0c41e89e5bbf70a2343ca7ba16a59f595a6ca0a39af38905d753e632
12/29/2018 11:53:19 AM - _emit : Event request-created.s3.PutObject: calling handler <function signal_transferring at 0x7f2c07a2fbf8>
12/29/2018 11:53:19 AM - _do_get_response : Sending http request: <AWSPreparedRequest stream_output=False, method=PUT, url=https://eocloud.eu:8080/front-office-sample/png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png, headers={'User-Agent': b'Boto3/1.9.71 Python/3.6.7 Linux/4.15.0-43-generic Botocore/1.12.71', 'Content-MD5': b'bsay6uOJ4w9gUfv9pw75kQ==', 'Expect': b'100-continue', 'X-Amz-Date': b'20181229T105319Z', 'X-Amz-Content-SHA256': b'UNSIGNED-PAYLOAD', 'Authorization': b'AWS4-HMAC-SHA256 Credential=15c92abe0b00450691e7bc967b7f947d/20181229/us-east-1/s3/aws4_request, SignedHeaders=content-md5;host;x-amz-content-sha256;x-amz-date, Signature=8ea64b5d0c41e89e5bbf70a2343ca7ba16a59f595a6ca0a39af38905d753e632', 'Content-Length': '1506847'}>
12/29/2018 11:53:19 AM - from_int : Converted retries value: False -> Retry(total=False, connect=None, read=None, redirect=0, status=None)
12/29/2018 11:53:19 AM - _new_conn : Starting new HTTPS connection (1): eocloud.eu
12/29/2018 11:53:19 AM - _send_output : Waiting for 100 Continue response.
12/29/2018 11:53:19 AM - _handle_expect_response : 100 Continue response seen, now sending request body.
12/29/2018 11:53:21 AM - _make_request : https://eocloud.eu:8080 "PUT /front-office-sample/png/S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.png HTTP/1.1" 200 0
12/29/2018 11:53:21 AM - parse : Response headers: {'Content-Length': '0', 'ETag': '"6ec6b2eae389e30f6051fbfda70ef991"', 'Accept-Ranges': 'bytes', 'x-amz-request-id': 'tx0000000000000020e87ae-005c27521f-7ba69774-default', 'Date': 'Sat, 29 Dec 2018 10:53:21 GMT'}
12/29/2018 11:53:21 AM - parse : Response body:
b''
12/29/2018 11:53:21 AM - _emit : Event needs-retry.s3.PutObject: calling handler <botocore.retryhandler.RetryHandler object at 0x7f2c0798b358>
12/29/2018 11:53:21 AM - __call__ : No retry needed.
12/29/2018 11:53:21 AM - _emit : Event needs-retry.s3.PutObject: calling handler <bound method S3RegionRedirector.redirect_from_error of <botocore.utils.S3RegionRedirector object at 0x7f2c0798b2e8>>
12/29/2018 11:53:21 AM - release : Releasing acquire 0/None
12/29/2018 11:53:35 AM - write_cms_files : START
12/29/2018 11:53:35 AM - get_max_dir_name : START
12/29/2018 11:53:35 AM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16258.EO_16258/item.md
12/29/2018 12:05:11 PM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 01:49:34 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 01:49:34 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 01:49:34 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f50f161f158>
12/29/2018 01:49:34 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 01:49:35 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f50f1656bf8>
12/29/2018 01:49:35 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f50f15a2488>
12/29/2018 01:49:35 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f50f16569d8>
12/29/2018 01:49:35 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 01:49:35 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 01:49:35 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 01:49:35 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 01:49:35 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 01:49:35 PM - job : START
12/29/2018 01:49:35 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 01:49:35 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 01:49:40 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 01:49:40 PM - find_products : Found 1 products
12/29/2018 01:49:40 PM - select_product : Narrow selection: 1
12/29/2018 01:49:40 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 01:49:40 PM - write_cms_files : START
12/29/2018 01:49:40 PM - get_max_dir_name : START
12/29/2018 01:49:40 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16259.EO_16259/item.md
12/29/2018 01:49:40 PM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 01:51:32 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 01:51:32 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 01:51:32 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f08ed972ea0>
12/29/2018 01:51:32 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 01:51:32 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f08ed9aa9d8>
12/29/2018 01:51:32 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f08ed8851e0>
12/29/2018 01:51:32 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f08ed9aa7b8>
12/29/2018 01:51:32 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 01:51:32 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 01:51:32 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 01:51:32 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 01:51:32 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 01:51:32 PM - job : START
12/29/2018 01:51:32 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 01:51:32 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 01:51:37 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 01:51:37 PM - find_products : Found 1 products
12/29/2018 01:51:37 PM - select_product : Narrow selection: 1
12/29/2018 01:51:37 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 01:51:37 PM - write_cms_files : START
12/29/2018 01:51:37 PM - get_max_dir_name : START
12/29/2018 01:51:37 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16260.EO_16260/item.md
12/29/2018 02:05:58 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/waiters-2.json
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 02:31:06 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 02:31:06 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 02:31:06 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f0cf86f3158>
12/29/2018 02:31:06 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 02:31:06 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f0cf872abf8>
12/29/2018 02:31:06 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f0cf8678488>
12/29/2018 02:31:06 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f0cf872a9d8>
12/29/2018 02:31:06 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 02:31:06 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 02:31:06 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 02:31:06 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 02:31:06 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 02:31:06 PM - job : START
12/29/2018 02:31:06 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 02:31:06 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 02:31:12 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 02:31:12 PM - find_products : Found 1 products
12/29/2018 02:31:12 PM - select_product : Narrow selection: 1
12/29/2018 02:31:12 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 02:31:12 PM - write_cms_files : START
12/29/2018 02:31:12 PM - get_max_dir_name : START
12/29/2018 02:31:12 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16261.EO_16261/item.md
12/29/2018 02:31:12 PM - job : sequence item 0: expected str instance, bytes found
12/29/2018 02:31:12 PM - job : STOP
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 02:33:08 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 02:33:08 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 02:33:08 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f3ed2c31158>
12/29/2018 02:33:08 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 02:33:08 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f3ed2c68bf8>
12/29/2018 02:33:08 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f3ed2bb4488>
12/29/2018 02:33:08 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f3ed2c689d8>
12/29/2018 02:33:08 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 02:33:08 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 02:33:08 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 02:33:08 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 02:33:08 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 02:33:08 PM - job : START
12/29/2018 02:33:08 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 02:33:08 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 02:33:15 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 02:33:15 PM - find_products : Found 1 products
12/29/2018 02:33:15 PM - select_product : Narrow selection: 1
12/29/2018 02:33:15 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 02:33:15 PM - write_cms_files : START
12/29/2018 02:33:15 PM - get_max_dir_name : START
12/29/2018 02:33:15 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16262.EO_16262/item.md
12/29/2018 02:33:15 PM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 02:53:18 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 02:53:18 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 02:53:18 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fb40ff21158>
12/29/2018 02:53:18 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 02:53:18 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7fb40ff58bf8>
12/29/2018 02:53:18 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7fb40fea4488>
12/29/2018 02:53:18 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7fb40ff589d8>
12/29/2018 02:53:18 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 02:53:18 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 02:53:18 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 02:53:18 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 02:53:18 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 02:53:18 PM - job : START
12/29/2018 02:53:18 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 02:53:18 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 02:53:24 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 02:53:24 PM - find_products : Found 1 products
12/29/2018 02:53:24 PM - select_product : Narrow selection: 1
12/29/2018 02:53:24 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 02:53:24 PM - write_cms_files : START
12/29/2018 02:53:24 PM - get_max_dir_name : START
12/29/2018 02:53:24 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16263.EO_16263/item.md
12/29/2018 02:53:24 PM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 02:55:53 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 02:55:53 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 02:55:53 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f60c86c0ea0>
12/29/2018 02:55:53 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 02:55:53 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f60c86f79d8>
12/29/2018 02:55:53 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f60c85d51e0>
12/29/2018 02:55:53 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f60c86f77b8>
12/29/2018 02:55:53 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 02:55:53 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 02:55:53 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 02:55:53 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 02:55:53 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 02:55:53 PM - job : START
12/29/2018 02:55:53 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 02:55:53 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 02:55:58 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 02:55:58 PM - find_products : Found 1 products
12/29/2018 02:55:58 PM - select_product : Narrow selection: 1
12/29/2018 02:55:58 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 02:55:58 PM - write_cms_files : START
12/29/2018 02:55:58 PM - get_max_dir_name : START
12/29/2018 02:55:58 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16264.EO_16264/item.md
12/29/2018 02:55:58 PM - write_cms_files : sequence item 0: expected str instance, bytes found
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 02:56:31 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 02:56:31 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 02:56:31 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f1f6ed2bea0>
12/29/2018 02:56:31 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 02:56:31 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f1f6ed629d8>
12/29/2018 02:56:31 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f1f6ec401e0>
12/29/2018 02:56:31 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f1f6ed627b8>
12/29/2018 02:56:31 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 02:56:31 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 02:56:31 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 02:56:31 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 02:56:31 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 02:56:31 PM - job : START
12/29/2018 02:56:31 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 02:56:31 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 02:56:36 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 02:56:36 PM - find_products : Found 1 products
12/29/2018 02:56:36 PM - select_product : Narrow selection: 1
12/29/2018 02:56:36 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 02:56:36 PM - write_cms_files : START
12/29/2018 02:56:36 PM - get_max_dir_name : START
12/29/2018 02:56:36 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16265.EO_16265/item.md
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 03:05:47 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 03:05:47 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 03:05:47 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7fa0e5475ea0>
12/29/2018 03:05:47 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 03:05:47 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7fa0e54ae9d8>
12/29/2018 03:05:47 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7fa0e53891e0>
12/29/2018 03:05:47 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7fa0e54ae7b8>
12/29/2018 03:05:47 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 03:05:47 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 03:05:47 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 03:05:47 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 03:05:47 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 03:05:47 PM - job : START
12/29/2018 03:05:47 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 03:05:47 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 03:05:52 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 03:05:52 PM - find_products : Found 1 products
12/29/2018 03:05:52 PM - select_product : Narrow selection: 1
12/29/2018 03:05:52 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 03:05:52 PM - write_cms_files : START
12/29/2018 03:05:52 PM - get_max_dir_name : START
12/29/2018 03:05:52 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16266.EO_16266/item.md
12/29/2018 03:05:52 PM - write_cms_files : local variable 'tags' referenced before assignment
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 03:06:07 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 03:06:07 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 03:06:07 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f4872aa1ea0>
12/29/2018 03:06:07 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 03:06:07 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f4872ada9d8>
12/29/2018 03:06:07 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f48729b51e0>
12/29/2018 03:06:07 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f4872ada7b8>
12/29/2018 03:06:07 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 03:06:07 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 03:06:07 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 03:06:07 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 03:06:07 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 03:06:07 PM - job : START
12/29/2018 03:06:07 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 03:06:07 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 03:06:13 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 03:06:13 PM - find_products : Found 1 products
12/29/2018 03:06:13 PM - select_product : Narrow selection: 1
12/29/2018 03:06:13 PM - select_product : Selected product: S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE
12/29/2018 03:06:13 PM - write_cms_files : START
12/29/2018 03:06:13 PM - get_max_dir_name : START
12/29/2018 03:06:13 PM - write_cms_files : Copying into: /var/www/html/grav/user/pages/02.eo_images/16267.EO_16267/item.md
12/29/2018 03:06:42 PM - write_cms_files : local variable 'tags' referenced before assignment
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from before-call.apigateway to before-call.api-gateway
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
12/29/2018 03:07:27 PM - _alias_event_name : Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
12/29/2018 03:07:27 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/endpoints.json
12/29/2018 03:07:27 PM - _emit : Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f1a5775cea0>
12/29/2018 03:07:27 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/s3/2006-03-01/service-2.json
12/29/2018 03:07:27 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x7f1a577959d8>
12/29/2018 03:07:27 PM - _emit : Event creating-client-class.s3: calling handler <function lazy_call.<locals>._handler at 0x7f1a576701e0>
12/29/2018 03:07:27 PM - _emit : Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x7f1a577957b8>
12/29/2018 03:07:27 PM - compute_s3_config : The s3 config key is not a dictionary type, ignoring its value of: None
12/29/2018 03:07:27 PM - create_endpoint : Setting s3 timeout as (60, 60)
12/29/2018 03:07:27 PM - load_file : Loading JSON file: /usr/local/lib/python3.6/dist-packages/botocore/data/_retry.json
12/29/2018 03:07:27 PM - _register_retries : Registering retry handlers for service: s3
12/29/2018 03:07:27 PM - _get_s3_addressing_handler : Using S3 path style addressing.
12/29/2018 03:07:27 PM - job : START
12/29/2018 03:07:27 PM - find_products : Finder URL: https://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET
12/29/2018 03:07:27 PM - _new_conn : Starting new HTTPS connection (1): finder.creodias.eu
12/29/2018 03:07:32 PM - _make_request : https://finder.creodias.eu:443 "GET /resto/api/collections/Sentinel2/search.json?maxRecords=10&productIdentifier=%25S2B_MSIL1C_20181228T111449_N0207_R137_T30STE_20181228T131040.SAFE%25&sortParam=startDate&sortOrder=descending&status=all&dataset=ESA-DATASET HTTP/1.1" 200 None
12/29/2018 03:07:32 PM - find_products : Found 1 products