-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscraping_errors.log
More file actions
2010 lines (2006 loc) · 137 KB
/
Copy pathscraping_errors.log
File metadata and controls
2010 lines (2006 loc) · 137 KB
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:parsl.dataflow.dflow:Starting DataFlowKernel with config
Config(
app_cache=True,
checkpoint_files=None,
checkpoint_mode=None,
checkpoint_period=None,
dependency_resolver=None,
executors=(ThreadPoolExecutor(
label='threads',
max_threads=5,
storage_access=None,
thread_name_prefix='',
working_dir=None
),),
exit_mode='cleanup',
garbage_collect=True,
initialize_logging=True,
internal_tasks_max_threads=10,
max_idletime=120.0,
monitoring=None,
project_name=None,
retries=0,
retry_handler=None,
run_dir='runinfo',
std_autopath=None,
strategy='simple',
strategy_period=5,
usage_tracking=0
)
INFO:parsl.dataflow.dflow:Parsl version: 2024.10.07
DEBUG:parsl.usage_tracking.usage:Tracking level: 0
INFO:parsl.dataflow.dflow:Run id is: 0a360bce-9c00-4a01-a0e9-6022eb18f8b1
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/parsl_config.py
DEBUG:parsl.dataflow.dflow:Using parsl_config.py as workflow name
INFO:parsl.dataflow.memoization:App caching initialized
DEBUG:parsl.jobs.strategy:Scaling strategy: simple
DEBUG:parsl.dataflow.dflow:Task 0 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 0 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 0 set to pending state with AppFuture: <AppFuture at 0x102ab1430 state=pending>
DEBUG:parsl.dataflow.memoization:Task 0 will not be memoized
DEBUG:parsl.dataflow.dflow:Task 1 will be sent to executor threads
INFO:parsl.dataflow.dflow:Parsl task 0 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 1 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 1 set to pending state with AppFuture: <AppFuture at 0x103c93da0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 2 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 1 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 1 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 2 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 2 set to pending state with AppFuture: <AppFuture at 0x100d7c980 state=pending>
DEBUG:parsl.dataflow.dflow:Task 3 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 2 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 2 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 3 set to pending state with AppFuture: <AppFuture at 0x103d18bc0 state=pending>
DEBUG:parsl.dataflow.memoization:Task 3 will not be memoized
INFO:parsl.dataflow.dflow:Parsl task 3 try 0 launched on executor threads
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 0 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Task 1 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
WARNING:parsl.dataflow.dflow:Python is exiting with a DFK still running. You should call parsl.dfk().cleanup() before exiting to release any resources
INFO:parsl.dataflow.dflow:Starting DataFlowKernel with config
Config(
app_cache=True,
checkpoint_files=None,
checkpoint_mode=None,
checkpoint_period=None,
dependency_resolver=None,
executors=(ThreadPoolExecutor(
label='threads',
max_threads=5,
storage_access=None,
thread_name_prefix='',
working_dir=None
),),
exit_mode='cleanup',
garbage_collect=True,
initialize_logging=True,
internal_tasks_max_threads=10,
max_idletime=120.0,
monitoring=None,
project_name=None,
retries=0,
retry_handler=None,
run_dir='runinfo',
std_autopath=None,
strategy='simple',
strategy_period=5,
usage_tracking=0
)
INFO:parsl.dataflow.dflow:Parsl version: 2024.10.07
DEBUG:parsl.usage_tracking.usage:Tracking level: 0
INFO:parsl.dataflow.dflow:Run id is: 45c26aee-bc43-4419-9e18-4e136436de88
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/parsl_config.py
DEBUG:parsl.dataflow.dflow:Using parsl_config.py as workflow name
INFO:parsl.dataflow.memoization:App caching initialized
DEBUG:parsl.jobs.strategy:Scaling strategy: simple
DEBUG:parsl.dataflow.dflow:Task 0 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 0 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 0 set to pending state with AppFuture: <AppFuture at 0x10dfcde80 state=pending>
DEBUG:parsl.dataflow.memoization:Task 0 will not be memoized
DEBUG:parsl.dataflow.dflow:Task 1 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 0 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 1 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 1 set to pending state with AppFuture: <AppFuture at 0x10dfce240 state=pending>
DEBUG:parsl.dataflow.dflow:Task 2 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 1 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 1 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 2 set to pending state with AppFuture: <AppFuture at 0x10dfcea80 state=pending>
DEBUG:parsl.dataflow.dflow:Task 3 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 2 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 2 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 3 set to pending state with AppFuture: <AppFuture at 0x10dfcf200 state=pending>
DEBUG:parsl.dataflow.dflow:Task 4 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 3 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 3 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 4 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 4 set to pending state with AppFuture: <AppFuture at 0x10dfcfaa0 state=pending>
DEBUG:parsl.dataflow.memoization:Task 4 will not be memoized
INFO:parsl.dataflow.dflow:Parsl task 4 try 0 launched on executor threads
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 1 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 0 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 4 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
WARNING:parsl.dataflow.dflow:Python is exiting with a DFK still running. You should call parsl.dfk().cleanup() before exiting to release any resources
INFO:parsl.dataflow.dflow:Starting DataFlowKernel with config
Config(
app_cache=True,
checkpoint_files=None,
checkpoint_mode=None,
checkpoint_period=None,
dependency_resolver=None,
executors=(ThreadPoolExecutor(
label='threads',
max_threads=5,
storage_access=None,
thread_name_prefix='',
working_dir=None
),),
exit_mode='cleanup',
garbage_collect=True,
initialize_logging=True,
internal_tasks_max_threads=10,
max_idletime=120.0,
monitoring=None,
project_name=None,
retries=0,
retry_handler=None,
run_dir='runinfo',
std_autopath=None,
strategy='simple',
strategy_period=5,
usage_tracking=0
)
INFO:parsl.dataflow.dflow:Parsl version: 2024.10.07
DEBUG:parsl.usage_tracking.usage:Tracking level: 0
INFO:parsl.dataflow.dflow:Run id is: be9a5db0-ac3e-4711-b620-f1929069839c
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/parsl_config.py
DEBUG:parsl.dataflow.dflow:Using parsl_config.py as workflow name
INFO:parsl.dataflow.memoization:App caching initialized
DEBUG:parsl.jobs.strategy:Scaling strategy: simple
DEBUG:parsl.dataflow.dflow:Task 0 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 0 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 0 set to pending state with AppFuture: <AppFuture at 0x10a0e3f50 state=pending>
DEBUG:parsl.dataflow.memoization:Task 0 will not be memoized
DEBUG:parsl.dataflow.dflow:Task 1 will be sent to executor threads
INFO:parsl.dataflow.dflow:Parsl task 0 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 1 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 1 set to pending state with AppFuture: <AppFuture at 0x10a1183e0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 2 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 1 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 1 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 2 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 2 set to pending state with AppFuture: <AppFuture at 0x109e8ff80 state=pending>
DEBUG:parsl.dataflow.dflow:Task 3 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 2 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 2 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 3 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 3 set to pending state with AppFuture: <AppFuture at 0x10a1191f0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 4 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.memoization:Task 3 will not be memoized
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Parsl task 3 try 0 launched on executor threads
INFO:parsl.dataflow.dflow:Task 4 submitted for App parallel_parsl_scrape, not waiting on any dependency
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Task 4 set to pending state with AppFuture: <AppFuture at 0x10a119a90 state=pending>
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Task 5 will be sent to executor threads
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.memoization:Task 4 will not be memoized
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Parsl task 4 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Task 5 submitted for App parallel_parsl_scrape, not waiting on any dependency
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
DEBUG:parsl.dataflow.dflow:Task 5 set to pending state with AppFuture: <AppFuture at 0x10a11b920 state=pending>
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 6 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 5 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 5 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 5 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 5 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 6 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 6 set to pending state with AppFuture: <AppFuture at 0x10a11bf50 state=pending>
DEBUG:parsl.dataflow.dflow:Task 7 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 6 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 6 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 6 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 6 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 7 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 7 set to pending state with AppFuture: <AppFuture at 0x10a11c590 state=pending>
DEBUG:parsl.dataflow.dflow:Task 8 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 7 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 7 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 7 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 7 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 8 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 8 set to pending state with AppFuture: <AppFuture at 0x10a11c770 state=pending>
DEBUG:parsl.dataflow.dflow:Task 9 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 8 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 8 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 8 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 8 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 9 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 9 set to pending state with AppFuture: <AppFuture at 0x10a11c950 state=pending>
DEBUG:parsl.dataflow.dflow:Task 10 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 9 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 9 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 9 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 9 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 10 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 10 set to pending state with AppFuture: <AppFuture at 0x10a11cb30 state=pending>
DEBUG:parsl.dataflow.dflow:Task 11 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.memoization:Task 10 will not be memoized
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 10 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 10 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 10 will not be redirected.
INFO:parsl.dataflow.dflow:Task 11 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 11 set to pending state with AppFuture: <AppFuture at 0x10a11cd10 state=pending>
DEBUG:parsl.dataflow.dflow:Task 12 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 11 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 11 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 11 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 11 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 12 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 12 set to pending state with AppFuture: <AppFuture at 0x10a11a5a0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 13 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 12 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 12 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 12 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 12 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 13 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 13 set to pending state with AppFuture: <AppFuture at 0x10a11d040 state=pending>
DEBUG:parsl.dataflow.dflow:Task 14 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 13 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 13 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 13 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 13 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 14 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 14 set to pending state with AppFuture: <AppFuture at 0x10a11d250 state=pending>
DEBUG:parsl.dataflow.dflow:Task 15 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 14 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 14 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 14 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 14 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 15 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 15 set to pending state with AppFuture: <AppFuture at 0x10a11d460 state=pending>
DEBUG:parsl.dataflow.dflow:Task 16 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 15 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 15 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 15 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 15 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 16 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 16 set to pending state with AppFuture: <AppFuture at 0x10a11d670 state=pending>
DEBUG:parsl.dataflow.dflow:Task 17 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 16 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 16 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 16 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 16 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 17 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 17 set to pending state with AppFuture: <AppFuture at 0x10a11d880 state=pending>
DEBUG:parsl.dataflow.dflow:Task 18 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 17 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 17 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 17 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 17 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 18 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 18 set to pending state with AppFuture: <AppFuture at 0x10a11da90 state=pending>
DEBUG:parsl.dataflow.dflow:Task 19 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 18 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 18 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 18 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 18 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 19 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 19 set to pending state with AppFuture: <AppFuture at 0x10a11dca0 state=pending>
DEBUG:parsl.dataflow.memoization:Task 19 will not be memoized
INFO:parsl.dataflow.dflow:Parsl task 19 try 0 launched on executor threads
INFO:parsl.dataflow.dflow:Standard out for task 19 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 19 will not be redirected.
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 1 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 0 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 4 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Task 5 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 5 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 5 will not be redirected.
INFO:parsl.dataflow.dflow:Task 6 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 6 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 6 will not be redirected.
INFO:parsl.dataflow.dflow:Task 8 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Task 7 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 8 will not be redirected.
INFO:parsl.dataflow.dflow:Standard out for task 7 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 8 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 7 will not be redirected.
INFO:parsl.dataflow.dflow:Task 9 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 9 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 9 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Task 10 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 10 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 10 will not be redirected.
ERROR:root:Attempt 1 failed for https://www.reuters.com: 401 Client Error: HTTP Forbidden for url: https://www.reuters.com/
DEBUG:parsl.app.errors:Reraising exception of type <class 'NameError'>
INFO:parsl.dataflow.dflow:Task 11 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Task 15 try 0 failed with exception of type NameError
INFO:parsl.dataflow.dflow:Standard out for task 11 will not be redirected.
ERROR:parsl.dataflow.dflow:Task 15 failed after 0 retry attempts
Traceback (most recent call last):
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 25, in scraper
response.raise_for_status() # Check if the request was successful
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/requests/models.py", line 1024, in raise_for_status
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 401 Client Error: HTTP Forbidden for url: https://www.reuters.com/
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py", line 344, in handle_exec_update
res = self._unwrap_remote_exception_wrapper(future)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py", line 614, in _unwrap_remote_exception_wrapper
result.reraise()
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/app/errors.py", line 117, in reraise
raise v
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/app/errors.py", line 141, in wrapper
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 41, in parallel_parsl_scrape
return scraper(url)
^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 31, in scraper
time.sleep(2**i) # Exponential backoff for retries
^^^^^^^^^^^^^^^^^
NameError: name 'time' is not defined. Did you forget to import 'time'
INFO:parsl.dataflow.dflow:Standard error for task 11 will not be redirected.
INFO:parsl.dataflow.dflow:Standard out for task 15 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 15 will not be redirected.
INFO:parsl.dataflow.dflow:Task 14 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 14 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 14 will not be redirected.
INFO:parsl.dataflow.dflow:Task 12 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 12 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 12 will not be redirected.
INFO:parsl.dataflow.dflow:Task 13 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 13 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 13 will not be redirected.
ERROR:root:Attempt 1 failed for https://www.amazon.com: 503 Server Error: Service Unavailable for url: https://www.amazon.com/
DEBUG:parsl.app.errors:Reraising exception of type <class 'NameError'>
INFO:parsl.dataflow.dflow:Task 18 try 0 failed with exception of type NameError
ERROR:parsl.dataflow.dflow:Task 18 failed after 0 retry attempts
Traceback (most recent call last):
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 25, in scraper
response.raise_for_status() # Check if the request was successful
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/requests/models.py", line 1024, in raise_for_status
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://www.amazon.com/
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py", line 344, in handle_exec_update
res = self._unwrap_remote_exception_wrapper(future)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py", line 614, in _unwrap_remote_exception_wrapper
result.reraise()
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/app/errors.py", line 117, in reraise
raise v
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/app/errors.py", line 141, in wrapper
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 41, in parallel_parsl_scrape
return scraper(url)
^^^^^^^^^^^^^^^^^
File "/Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/web_scraper.py", line 31, in scraper
time.sleep(2**i) # Exponential backoff for retries
^^^^^^^^^^^^^^^^^
NameError: name 'time' is not defined. Did you forget to import 'time'
INFO:parsl.dataflow.dflow:Standard out for task 18 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 18 will not be redirected.
INFO:parsl.dataflow.dflow:Task 16 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 16 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 16 will not be redirected.
INFO:parsl.dataflow.dflow:Task 17 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 17 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 17 will not be redirected.
INFO:parsl.dataflow.dflow:Task 19 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 19 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 19 will not be redirected.
WARNING:parsl.dataflow.dflow:Python is exiting with a DFK still running. You should call parsl.dfk().cleanup() before exiting to release any resources
INFO:parsl.dataflow.dflow:Starting DataFlowKernel with config
Config(
app_cache=True,
checkpoint_files=None,
checkpoint_mode=None,
checkpoint_period=None,
dependency_resolver=None,
executors=(ThreadPoolExecutor(
label='threads',
max_threads=5,
storage_access=None,
thread_name_prefix='',
working_dir=None
),),
exit_mode='cleanup',
garbage_collect=True,
initialize_logging=True,
internal_tasks_max_threads=10,
max_idletime=120.0,
monitoring=None,
project_name=None,
retries=0,
retry_handler=None,
run_dir='runinfo',
std_autopath=None,
strategy='simple',
strategy_period=5,
usage_tracking=0
)
INFO:parsl.dataflow.dflow:Parsl version: 2024.10.07
DEBUG:parsl.usage_tracking.usage:Tracking level: 0
INFO:parsl.dataflow.dflow:Run id is: 697bb3f5-90e8-4e5b-87eb-051f5e9a8c44
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/parsl_config.py
DEBUG:parsl.dataflow.dflow:Using parsl_config.py as workflow name
INFO:parsl.dataflow.memoization:App caching initialized
DEBUG:parsl.jobs.strategy:Scaling strategy: simple
DEBUG:parsl.dataflow.dflow:Task 0 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 0 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 0 set to pending state with AppFuture: <AppFuture at 0x10920fb30 state=pending>
DEBUG:parsl.dataflow.memoization:Task 0 will not be memoized
DEBUG:parsl.dataflow.dflow:Task 1 will be sent to executor threads
INFO:parsl.dataflow.dflow:Parsl task 0 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Task 1 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 1 set to pending state with AppFuture: <AppFuture at 0x10920ff50 state=pending>
DEBUG:parsl.dataflow.dflow:Task 2 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 1 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Parsl task 1 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 submitted for App parallel_parsl_scrape, not waiting on any dependency
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
DEBUG:parsl.dataflow.dflow:Task 2 set to pending state with AppFuture: <AppFuture at 0x109284740 state=pending>
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 3 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 2 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 2 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 3 set to pending state with AppFuture: <AppFuture at 0x109285ca0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 4 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 3 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 3 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 4 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 4 set to pending state with AppFuture: <AppFuture at 0x109284ce0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 5 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 4 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 4 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Task 5 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 5 set to pending state with AppFuture: <AppFuture at 0x1092854c0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 6 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 5 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 5 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 5 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 5 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 6 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 6 set to pending state with AppFuture: <AppFuture at 0x1092868d0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 7 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 6 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 6 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 6 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 6 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 7 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 7 set to pending state with AppFuture: <AppFuture at 0x1092a01a0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 8 will be sent to executor threads
DEBUG:parsl.dataflow.dflow:Adding output dependencies
DEBUG:parsl.dataflow.memoization:Task 7 will not be memoized
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Parsl task 7 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard out for task 7 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
INFO:parsl.dataflow.dflow:Standard error for task 7 will not be redirected.
INFO:parsl.dataflow.dflow:Task 8 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
DEBUG:parsl.dataflow.dflow:Task 8 set to pending state with AppFuture: <AppFuture at 0x1092a0380 state=pending>
DEBUG:parsl.dataflow.dflow:Task 9 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 8 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 8 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 8 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 8 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 9 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 9 set to pending state with AppFuture: <AppFuture at 0x1092a0200 state=pending>
DEBUG:parsl.dataflow.dflow:Task 10 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 9 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 9 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 9 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 9 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 10 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 10 set to pending state with AppFuture: <AppFuture at 0x1092a0740 state=pending>
DEBUG:parsl.dataflow.dflow:Task 11 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 10 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 10 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 10 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 10 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 11 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 11 set to pending state with AppFuture: <AppFuture at 0x1092a0920 state=pending>
DEBUG:parsl.dataflow.dflow:Task 12 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 11 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 11 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 11 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 11 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 12 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 12 set to pending state with AppFuture: <AppFuture at 0x1092a00e0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 13 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 12 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 12 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 12 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 12 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 13 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 13 set to pending state with AppFuture: <AppFuture at 0x1092a0b60 state=pending>
DEBUG:parsl.dataflow.dflow:Task 14 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 13 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 13 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 13 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 13 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 14 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 14 set to pending state with AppFuture: <AppFuture at 0x1092a0e60 state=pending>
DEBUG:parsl.dataflow.dflow:Task 15 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 14 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 14 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 14 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 14 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 15 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 15 set to pending state with AppFuture: <AppFuture at 0x1092a1070 state=pending>
DEBUG:parsl.dataflow.dflow:Task 16 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 15 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 15 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 15 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 15 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 16 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 16 set to pending state with AppFuture: <AppFuture at 0x1092a1280 state=pending>
DEBUG:parsl.dataflow.dflow:Task 17 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 16 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 16 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 16 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 16 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 17 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 17 set to pending state with AppFuture: <AppFuture at 0x1092a1490 state=pending>
DEBUG:parsl.dataflow.dflow:Task 18 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 17 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 17 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 17 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 17 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 18 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 18 set to pending state with AppFuture: <AppFuture at 0x1092a16a0 state=pending>
DEBUG:parsl.dataflow.dflow:Task 19 will be sent to executor threads
DEBUG:parsl.dataflow.memoization:Task 18 will not be memoized
DEBUG:parsl.dataflow.dflow:Adding output dependencies
INFO:parsl.dataflow.dflow:Parsl task 18 try 0 launched on executor threads
DEBUG:parsl.dataflow.dflow:Added output dependencies
INFO:parsl.dataflow.dflow:Standard out for task 18 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathering dependencies
INFO:parsl.dataflow.dflow:Standard error for task 18 will not be redirected.
DEBUG:parsl.dataflow.dflow:Gathered dependencies
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 19 submitted for App parallel_parsl_scrape, not waiting on any dependency
DEBUG:parsl.dataflow.dflow:Task 19 set to pending state with AppFuture: <AppFuture at 0x1092a18b0 state=pending>
DEBUG:parsl.dataflow.memoization:Task 19 will not be memoized
INFO:parsl.dataflow.dflow:Parsl task 19 try 0 launched on executor threads
INFO:parsl.dataflow.dflow:Standard out for task 19 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 19 will not be redirected.
DEBUG:parsl.process_loggers:Normal ending for _launch_if_ready_async on thread Dependency-Launch_0
INFO:parsl.dataflow.dflow:Task 1 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 1 will not be redirected.
INFO:parsl.dataflow.dflow:Task 0 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 0 will not be redirected.
INFO:parsl.dataflow.dflow:Task 4 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 4 will not be redirected.
INFO:parsl.dataflow.dflow:Task 5 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 5 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 5 will not be redirected.
INFO:parsl.dataflow.dflow:Task 2 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 2 will not be redirected.
INFO:parsl.dataflow.dflow:Task 6 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 6 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 6 will not be redirected.
INFO:parsl.dataflow.dflow:Task 8 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 8 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 8 will not be redirected.
INFO:parsl.dataflow.dflow:Task 7 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 7 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 7 will not be redirected.
INFO:parsl.dataflow.dflow:Task 10 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 10 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 10 will not be redirected.
INFO:parsl.dataflow.dflow:Task 9 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 9 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 9 will not be redirected.
INFO:parsl.dataflow.dflow:Task 3 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 3 will not be redirected.
INFO:parsl.dataflow.dflow:Task 11 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 11 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 11 will not be redirected.
INFO:parsl.dataflow.dflow:Task 13 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 13 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 13 will not be redirected.
INFO:parsl.dataflow.dflow:Task 12 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 12 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 12 will not be redirected.
ERROR:root:Attempt 1 failed for https://www.reuters.com: 401 Client Error: HTTP Forbidden for url: https://www.reuters.com/
INFO:parsl.dataflow.dflow:Task 14 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 14 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 14 will not be redirected.
INFO:parsl.dataflow.dflow:Task 17 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 17 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 17 will not be redirected.
ERROR:root:Attempt 1 failed for https://www.amazon.com: 503 Server Error: Service Unavailable for url: https://www.amazon.com/
INFO:parsl.dataflow.dflow:Task 16 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 16 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 16 will not be redirected.
INFO:parsl.dataflow.dflow:Task 19 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 19 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 19 will not be redirected.
ERROR:root:Attempt 2 failed for https://www.reuters.com: 401 Client Error: HTTP Forbidden for url: https://www.reuters.com/
ERROR:root:Attempt 2 failed for https://www.amazon.com: 503 Server Error: Service Unavailable for url: https://www.amazon.com/
ERROR:root:Attempt 3 failed for https://www.reuters.com: 401 Client Error: HTTP Forbidden for url: https://www.reuters.com/
ERROR:root:Attempt 3 failed for https://www.amazon.com: 503 Server Error: Service Unavailable for url: https://www.amazon.com/
DEBUG:parsl.jobs.strategy:general strategy starting with strategy_type simple for 0 executors
DEBUG:parsl.process_loggers:Normal ending for _general_strategy on thread JobStatusPoller-Timer-Thread-4448122880
ERROR:root:Failed after 3 retries for https://www.reuters.com
INFO:parsl.dataflow.dflow:Task 15 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 15 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 15 will not be redirected.
ERROR:root:Failed after 3 retries for https://www.amazon.com
INFO:parsl.dataflow.dflow:Task 18 completed (launched -> exec_done)
INFO:parsl.dataflow.dflow:Standard out for task 18 will not be redirected.
INFO:parsl.dataflow.dflow:Standard error for task 18 will not be redirected.
WARNING:parsl.dataflow.dflow:Python is exiting with a DFK still running. You should call parsl.dfk().cleanup() before exiting to release any resources
INFO:parsl.dataflow.dflow:Starting DataFlowKernel with config
Config(
app_cache=True,
checkpoint_files=None,
checkpoint_mode=None,
checkpoint_period=None,
dependency_resolver=None,
executors=(ThreadPoolExecutor(
label='threads',
max_threads=5,
storage_access=None,
thread_name_prefix='',
working_dir=None
),),
exit_mode='cleanup',
garbage_collect=True,
initialize_logging=True,
internal_tasks_max_threads=10,
max_idletime=120.0,
monitoring=None,
project_name=None,
retries=0,
retry_handler=None,
run_dir='runinfo',
std_autopath=None,
strategy='simple',
strategy_period=5,
usage_tracking=0
)
INFO:parsl.dataflow.dflow:Parsl version: 2024.10.07
DEBUG:parsl.usage_tracking.usage:Tracking level: 0
INFO:parsl.dataflow.dflow:Run id is: 97c3dd90-b250-427f-b826-837b032617e0
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/venv/lib/python3.12/site-packages/parsl/dataflow/dflow.py
DEBUG:parsl.dataflow.dflow:Considering candidate for workflow name: /Users/munibahmed/Desktop/Parsl/Parallelized Web Scraping System/parsl_config.py
DEBUG:parsl.dataflow.dflow:Using parsl_config.py as workflow name
INFO:parsl.dataflow.memoization:App caching initialized