Advertisement
MD500_Pilot

Untitled

Jan 30th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Where to plot and log
  2. directories:
  3. # One directory for logs
  4. log: /home/chia/chia/logs
  5.  
  6. # One or more directories; the scheduler will use all of them
  7. tmp:
  8. - /mnt/tmp/00
  9. - /mnt/tmp/01
  10. - /mnt/tmp/02
  11. - /mnt/tmp/03
  12.  
  13. # One directory (TODO: support distributing across multiple tmp2 dirs)
  14. tmp2: /mnt/sasraid0
  15.  
  16. # One or more directories; the scheduler will use all of them
  17. dst:
  18. - /mnt/sasraid0
  19.  
  20. # Archival
  21. archive:
  22. rsyncd_module: plots
  23. rsyncd_path: /plots
  24. rsyncd_bwlimit: 100000 # In KB/s
  25. rsyncd_host: farmer
  26. rsyncd_user: chia
  27.  
  28.  
  29. # Plotting scheduling parameters
  30. scheduling:
  31. # Don't run a job on a particular temp dir more often than this.
  32. # (obsolete)
  33. # tmpdir_stagger_m: 300
  34. tmpdir_stagger_phase_major: 2
  35. tmpdir_stagger_phase_minor: 5
  36. tmpdir_max_jobs: 3
  37.  
  38. # Global min; don't run any jobs more often than this.
  39. global_stagger_m: 30
  40.  
  41. # How often the daemon wakes to consider starting a new plot job
  42. polling_time_s: 20
  43.  
  44. # Plotting parameters
  45. plotting:
  46. k: 32
  47. n_threads: 8 # Threads per job
  48. # n_buckets: 64 # Number of buckets to split data into
  49. # job_buffer: 9200 # Per job memory
  50. n_buckets: 128 # Number of buckets to split data into
  51. job_buffer: 4580 # Per job memory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement