123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # Performance Benchmark Notes
- ## Environment
- ### Hardware
- - Dell Precison M3800 Laptop
- - 8x Intel(R) Core(TM) i7-4712HQ CPU @ 2.30GHz
- - 12Gb RAM
- - SSD
- ### Software
- - Arch Linux OS
- - glibc 2.26-11
- - python 3.5.4
- - lmdb 0.9.21-1
- - db (BerkeleyDB) 5.3.28-3
- ### Sample Data Set
- Modified Duchamp VIAF dataset (343 triples; changed all subjects to `<>`)
- ## Sleepycat Back End Test
- 10K PUTs to new resources under the same container:
- ~18' running time
- 0.108" per resource
- 3.4M triples total in repo at the end of the process
- Retrieval of parent resource (11400 triples), pipe to /dev/null: 3.6"
- Database size: 1.2 Gb
- ## LMDB Back End Test
- ### Strategy #4
- 10K PUTs to new resources under the same container:
- ~29' running time
- 0.178" per resource
- 3.4M triples total in repo at the end of the process
- Some gaps every ~40-50 requests, probably blocking transactions or disk
- flush
- Database size: 633 Mb
- Retrieval of parent resource (11400 triples), pipe to /dev/null: 3.48"
- ### Strategy #5
- 10K PUTs to new resources under the same container:
- 29' running time
- 0.176" per resource
- 3.4M triples total in repo at the end of the process
- Less gaps than strategy #4, however overall timing is almost identical. The
- blocker seems to be somewhere else.
- Database size: 422 Mb
- Retrieval of parent resource (11400 triples), pipe to /dev/null: 7.5"
|