@@ -696,6 +696,49 @@ queue:
696696 max_backoff_seconds : 20
697697 max_doublings : 0
698698
699+ # Scamper JSON barch queue.
700+ - name : etl-scamper-batch-0
701+ target : etl-batch-parser
702+ rate : 1/s
703+ bucket_size : 10
704+ # max concurrent is limited, because we will share the pipeline with other experiment types
705+ max_concurrent_requests : 20
706+ retry_parameters :
707+ task_age_limit : 12h
708+ # min and max are same, so that queue rate only diminishes as tasks are drained
709+ # it is set rather low, because traceroute days have relatively few files compared to NDT
710+ # and we want the rate limited by the rate/concurrent requests, not by the backoff
711+ min_backoff_seconds : 20
712+ max_backoff_seconds : 20
713+ - name : etl-scamper-batch-1
714+ target : etl-batch-parser
715+ rate : 1/s
716+ bucket_size : 10
717+ max_concurrent_requests : 20
718+ retry_parameters :
719+ task_age_limit : 12h
720+ min_backoff_seconds : 20
721+ max_backoff_seconds : 20
722+ - name : etl-scamper-batch-2
723+ target : etl-batch-parser
724+ rate : 1/s
725+ bucket_size : 10
726+ max_concurrent_requests : 20
727+ retry_parameters :
728+ task_age_limit : 12h
729+ min_backoff_seconds : 20
730+ max_backoff_seconds : 20
731+ - name : etl-scamper-batch-3
732+ target : etl-batch-parser
733+ rate : 1/s
734+ bucket_size : 10
735+ max_concurrent_requests : 20
736+ retry_parameters :
737+ task_age_limit : 12h
738+ min_backoff_seconds : 20
739+ max_backoff_seconds : 20
740+
741+
699742- name : etl-traceroute-queue
700743 target : etl-traceroute-parser
701744 # Average rate at which to release tasks to the service. Default is 5/sec
@@ -707,6 +750,17 @@ queue:
707750 # Maximum number of concurrent requests.
708751 max_concurrent_requests : 5
709752
753+ - name : etl-scamper-queue
754+ target : etl-scamper-parser
755+ # Average rate at which to release tasks to the service. Default is 5/sec
756+ # This is actually the rate at which tokens are added to the bucket.
757+ rate : 1/s
758+ # Number of tokens that can accumulate in the bucket. Default is 5. This should
759+ # have very little impact for our environment.
760+ bucket_size : 10
761+ # Maximum number of concurrent requests.
762+ max_concurrent_requests : 5
763+
710764- name : etl-sidestream-queue
711765 target : etl-sidestream-parser
712766 # Average rate at which to release tasks to the service. Default is 5/sec
0 commit comments