performance.txt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Performance Benchmark Notes
  2. ## Environment
  3. ### Hardware
  4. - Dell Precison M3800 Laptop
  5. - 8x Intel(R) Core(TM) i7-4712HQ CPU @ 2.30GHz
  6. - 12Gb RAM
  7. - SSD
  8. ### Software
  9. - Arch Linux OS
  10. - glibc 2.26-11
  11. - python 3.5.4
  12. - lmdb 0.9.21-1
  13. - db (BerkeleyDB) 5.3.28-3
  14. ### Sample Data Set
  15. Modified Duchamp VIAF dataset (343 triples; changed all subjects to `<>`)
  16. ## Vanilla FCREPO 4.7
  17. 10K PUTs to new resources under the same container:
  18. 9'27" running time
  19. 0.057" per resource
  20. 3.4M triples total in repo at the end of the process
  21. Retrieval of parent resource (~10000 triples), pipe to /dev/null: 3.64"
  22. Database size: 3.3 Gb
  23. ## Sleepycat Back End Test
  24. 10K PUTs to new resources under the same container:
  25. ~18' running time
  26. 0.108" per resource
  27. 3.4M triples total in repo at the end of the process
  28. Retrieval of parent resource, pipe to /dev/null: 3.6"
  29. Database size: 1.2 Gb
  30. ## LMDB Back End Test
  31. ### Strategy #4
  32. 10K PUTs to new resources under the same container:
  33. ~29' running time
  34. 0.178" per resource
  35. 3.4M triples total in repo at the end of the process
  36. Some gaps every ~40-50 requests, probably blocking transactions or disk
  37. flush
  38. Database size: 633 Mb
  39. Retrieval of parent resource, pipe to /dev/null: 3.48"
  40. ### Strategy #5
  41. 10K PUTs to new resources under the same container:
  42. 29' running time
  43. 0.176" per resource
  44. 3.4M triples total in repo at the end of the process
  45. Less gaps than strategy #4, however overall timing is almost identical. The
  46. blocker seems to be somewhere else.
  47. Database size: 422 Mb
  48. Retrieval of parent resource, pipe to /dev/null: 7.5"
  49. ### After using triple methods rather than SPARQL for extract_imr
  50. 25' running time
  51. 0.155" per resource
  52. Database size: 523 Mb
  53. Retrieval of parent resource, pipe to /dev/null: 1.9"