-1

Why is interface 6 Gb/s when the max sequential read is only 550 MB/s and max. random read is only 380 MB/s?

Even if this is doubled to include simultaneous read and write, that is way less than what the interface is capable of?

Does this mean that this interface is shared in case there are multiple disk? Then, does it mean that each physical machine can have only 1 such interface?

http://www.samsung.com/global/business/semiconductor/minisite/SSD/global/html/ssd850pro/specifications.html

user855
  • 121
  • 2

3 Answers3

6

It isn't actually that much less than the interface is capable of.

550 MB/s == 8 bits per byte * 550 MB/s == 4400 Mb/s == 4.4 Gb/s
380 MB/s == 8 bits per byte * 380 MB/s == 3040 Mb/s == 3.04 Gb/s

GB = GigaBytes Gb = GigaBits MB = MegaBytes Mb = MegaBits

See https://en.wikipedia.org/wiki/Data_rate_units for more details.

Massimo
  • 70,200
  • 57
  • 200
  • 323
Jed Daniels
  • 7,282
  • 2
  • 34
  • 42
3

There is a difference of 8 between bits and Bytes.

The device is capable of saturating a SATA 2 connection. It is under the limit for a SATA 3.0 connection.

84104
  • 12,905
  • 6
  • 45
  • 76
0

The 6 Gbps number is just telling you that it works with a SATA III bus, as opposed to just SATA I or SATA II bus.

You might have a drive where the raw flash can do 550 MB/s, but if it's only able to use a SATA II 3 Gbps bus then after you make the bit to byte conversion you'll find that the bus is actually limiting you, as 550 * 8 = 4400, which is greater than SATA II's 3000.

Joel Coel
  • 12,932
  • 14
  • 62
  • 100