18:16:09 swh-storage@localhost:5434=# select now(), * from origin o inner join origin_visit_status ovs on o.id=ovs.origin where o.url = 'https://github.com/cozy/cozy-stack' and ovs.type='git' order by date desc limit 4;
INFO:swh.loader.git.loader:Listed 3126 refs for repo https://github.com/cozy/cozy-stack
{'status': 'eventful'}
Command being timed: "swh loader run git https://github.com/cozy/cozy-stack"
User time (seconds): 119.58
System time (seconds): 4.29
Percent of CPU this job got: 28%
Elapsed (wall clock) time (h:mm:ss or m:ss): 7:08.98
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 2784576
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 625433
Voluntary context switches: 36303
Involuntary context switches: 1842
Swaps: 0
File system inputs: 0
File system outputs: 645584
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
#+end_src
** docker without override
#+begin_src sh
18:24:44 swh-storage@localhost:5434=# select now(), * from origin o inner join origin_visit_status ovs on o.id=ovs.origin where o.url = 'https://github.com/cozy/cozy-stack' and ovs.type='git' order by date desc limit 2;
swh@d902ac731424:/$ /usr/bin/time -v swh loader run git https://github.com/cozy/cozy-stack
INFO:swh.loader.git.loader.GitLoader:Load origin 'https://github.com/cozy/cozy-stack' with type 'git'
Enumerating objects: 68843, done.
Counting objects: 100% (4028/4028), done.
Compressing objects: 100% (1412/1412), done.
Total 68843 (delta 2677), reused 3773 (delta 2560), pack-reused 64815
INFO:swh.loader.git.loader.GitLoader:Listed 3127 refs for repo https://github.com/cozy/cozy-stack
{'status': 'eventful'}
Command being timed: "swh loader run git https://github.com/cozy/cozy-stack"
User time (seconds): 104.66
System time (seconds): 4.96
Percent of CPU this job got: 28%
Elapsed (wall clock) time (h:mm:ss or m:ss): 6:31.43
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 766780
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 528418
Voluntary context switches: 18964
Involuntary context switches: 1679
Swaps: 0
File system inputs: 0
File system outputs: 389928
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
swh@a6ddb051b815:/$ /usr/bin/time -v swh loader run git https://github.com/cozy/cozy-stack
INFO:swh.loader.git.loader.GitLoader:Load origin 'https://github.com/cozy/cozy-stack' with type 'git'
Enumerating objects: 68841, done.
Counting objects: 100% (4026/4026), done.
Compressing objects: 100% (1412/1412), done.
Total 68841 (delta 2677), reused 3772 (delta 2558), pack-reused 64815
INFO:swh.loader.git.loader.GitLoader:Listed 3128 refs for repo https://github.com/cozy/cozy-stack
{'status': 'eventful'}
Command being timed: "swh loader run git https://github.com/cozy/cozy-stack"
User time (seconds): 104.65
System time (seconds): 5.08
Percent of CPU this job got: 27%
Elapsed (wall clock) time (h:mm:ss or m:ss): 6:32.20
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 775628
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 560836
Voluntary context switches: 20797
Involuntary context switches: 1396
Swaps: 0
File system inputs: 0
File system outputs: 389992
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
#+end_src
* Run simple
** staging
- Run on staging
logs:
#+begin_src sh
swhworker@worker1:~$ time SWH_CONFIG_FILENAME=/etc/softwareheritage/loader_git.yml swh loader run git https://github.coswhworker@worker1:~$ time SWH_CONFIG_FILENAME=/etc/softwareheritage/loader_git.yml swh loader run git https://github.com/cozy/cozy-stack
INFO:swh.loader.git.loader.GitLoader:Load origin 'https://github.com/cozy/cozy-stack' with type 'git'
Enumerating objects: 68841, done.
Counting objects: 100% (4026/4026), done.
Compressing objects: 100% (1411/1411), done.
Total 68841 (delta 2676), reused 3773 (delta 2559), pack-reused 64815
INFO:swh.loader.git.loader.GitLoader:Listed 3128 refs for repo https://github.com/cozy/cozy-stack
{'status': 'eventful'}
real 58m26.944s
user 1m53.073s
sys 0m8.366s
#+end_src
sql:
#+begin_src sql
18:45:04 swh@db1:5432=> select now(), * from origin o inner join origin_visit_status ovs on o.id=ovs.origin where o.url = 'https://github.com/cozy/cozy-stack' and ovs.type='git' order by date desc limit 2;
16:06:33 swh@db1:5432=> select now(), * from origin o inner join origin_visit_status ovs on o.id=ovs.origin where o.url = 'https://github.com/ardumont/dot-files' and ovs.type='git' order by date desc limit 2;
16:07:34 swh-storage@localhost:5434=# select now(), * from origin o inner join origin_visit_status ovs on o.id=ovs.origin where o.url = 'https://github.com/ardumont/dot-files' and ovs.type='git' order by date desc limit 2;