Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Paste
P1461
T4504 - staging
Active
Public
Actions
Authored by
vsellier
on Sep 22 2022, 5:59 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
None
Subscribers
None
```
#!/bin/bash
#sample=0.5;
sample=1
policies=never_visited_oldest_update_first;
sleep=10
lister_name='git-ce.rwth-aachen.de'
lister_uuid="abbb9fc4-f45a-437c-8eff-637ce8c9de1d"
queue="add_forge_now:swh.loader.git.tasks.UpdateGitRepository"
visit_type=git;
while true; do
for policy in $policies
do
echo "$(date) scheduling $visit_type origins with policy ${policy} to queue ${queue} for lister ${lister_name} (tablesample ${sample})"
SWH_CONFIG_FILENAME=/etc/softwareheritage/scheduler/listener-runner.yml
swh scheduler -C $SWH_CONFIG_FILENAME \
origin send-to-celery --lister-uuid $lister_uuid \
--queue $queue \
--policy $policy $visit_type \
--only-disabled
echo "$(date) sleep $sleep"
sleep $sleep
done
done
```
Event Timeline
vsellier
created this paste.
Sep 22 2022, 5:59 PM
2022-09-22 17:59:57 (UTC+2)
vsellier
mentioned this in
Unknown Object (Maniphest Task)
.
Log In to Comment