10K_children.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #!/usr/bin/env python
  2. import sys
  3. from uuid import uuid4
  4. import arrow
  5. import requests
  6. default_n = 10000
  7. webroot = 'http://localhost:8000/ldp'
  8. #webroot = 'http://localhost:8080/fcrepo/rest'
  9. container = webroot + '/pomegranate'
  10. datafile = 'tests/data/marcel_duchamp_single_subject.ttl'
  11. sys.stdout.write('How many children? [{}] >'.format(default_n))
  12. choice = input().lower()
  13. n = int(choice) if choice else default_n
  14. sys.stdout.write('Delete container? [n] >')
  15. choice = input().lower()
  16. del_cont = choice or 'n'
  17. sys.stdout.write('POST or PUT? [PUT] >')
  18. choice = input().lower()
  19. if choice and choice.lower() not in ('post', 'put'):
  20. raise ValueError('Not a valid verb.')
  21. method = choice.lower() or 'put'
  22. # Generate 10,000 children of root node.
  23. if del_cont == 'y':
  24. requests.delete(container, headers={'prefer': 'no-tombstone'})
  25. requests.put(container)
  26. start = arrow.utcnow()
  27. ckpt = start
  28. print('Inserting {} children.'.format(n))
  29. data = open(datafile, 'rb').read()
  30. try:
  31. for i in range(1, n):
  32. url = '{}/{}'.format(container, uuid4()) if method == 'put' \
  33. else container
  34. rsp = requests.request(method, url,
  35. data=data, headers={ 'content-type': 'text/turtle'})
  36. rsp.raise_for_status()
  37. if i % 10 == 0:
  38. now = arrow.utcnow()
  39. tdelta = now - ckpt
  40. ckpt = now
  41. print('Record: {}\tTime elapsed: {}'.format(i, tdelta))
  42. except KeyboardInterrupt:
  43. print('Interruped after {} iterations.'.format(i))
  44. tdelta = arrow.utcnow() - start
  45. print('Total elapsed time: {}'.format(tdelta))
  46. print('Average time per resource: {}'.format(tdelta.total_seconds()/i))