Skip to content

Instantly share code, notes, and snippets.

@mlazarov
Last active January 2, 2017 11:59
Show Gist options
  • Save mlazarov/f31258102b78def25f6dbabcdece16e3 to your computer and use it in GitHub Desktop.
Save mlazarov/f31258102b78def25f6dbabcdece16e3 to your computer and use it in GitHub Desktop.

Creating 100k empty files:

time for ((i = 1; i < 100000; i++)) ; do touch $i.foo ; done

  • glusterfs: 4m1.412s
  • ssd* disk: 0m52.337s

Deleting 100k empty files:

time find ./ -delete

  • glusterfs: 1m21.631s
  • ssd* disk: 0m1.476s

R/W 100*31MB files (100GB HDD)

  • glusterfs w: 1m21.804s - 36MB/s
  • glusterfs r: 0m34.998s - 86MB/s

R/W 100*31MB files (1300GB HDD)

  • glusterfs w: 1m21.433s - 36MB/s
  • glusterfs r: 0m37.481s - 79MB/s

R/W 100*31MB files (1000GB SDD)

  • glusterfs w: 1m21.441s - 36MB/s
  • glusterfs r: 0m32.901s - 91MB/s

ssd* - directly attached ssd disk.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment