<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ArcGIS NVMe disk performance? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711407#M55147</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have them on my desktop (custom built) and on this Microsoft Book.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The drives are faster in the testing I did a year or so ago on my desktop, since I have two of them and an old-school drive.&amp;nbsp; I put my operating system and programs on one and I use the other for data with the conventional for backup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using python 3.X then make sure you are using time.perf_counter instead of time.clock which ahs been deprecated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One complicating factor is memory.&amp;nbsp; I was running some tests calculating point distances (50 million distances) and writing a numpy array to disk and it all took under a second.&amp;nbsp; I will try to find the tests if I can.&amp;nbsp; But I would look at your combination of memory, drive type and 32/64 processing issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a specific short reproducible test, I can run them on both machines for comparison if you like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 May 2017 00:41:53 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2017-05-09T00:41:53Z</dc:date>
    <item>
      <title>ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711406#M55146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone running a machine with these newfangled NVMe disks?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We purchased a newer workstation with some of these, and while the "industry benchmark" tests we have run(CrystalMark)&amp;nbsp;indicate the disks are indeed super fast and operating as expected, the real world test that we have run in ArcGIS and Python have&amp;nbsp;not shown a significant performance increase over&amp;nbsp;old school SATA HDD platter disks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone know why this might be the case? My only assumption is that disk speed is not the bottle neck... If it helps, here's an excerpt of some of the tests we are running. Note that not all of these involve use of disk i/o and there are some others (not shown) that are just simple unions and dissolves and stuff:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Process: Export raster to pnts (about 2 million points)&lt;BR /&gt;rasterPntsFC = os.path.join(fgdbPath, "raster_pnts")&lt;BR /&gt;time1 = time.clock()&lt;BR /&gt;arcpy.RasterToPoint_conversion(conRst, rasterPntsFC, "VALUE")&lt;BR /&gt;time2 = time.clock()&lt;BR /&gt;benchmarkDict["RASTER_TO_POINTS"] = time2 - time1&lt;BR /&gt;logMessage("RASTER_TO_POINTS = " + str(time2 - time1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Process: Build a large dictionary independent of disk&lt;BR /&gt;time1 = time.clock()&lt;BR /&gt;randomDict = {}&lt;BR /&gt;sum = 0&lt;BR /&gt;i = 0&lt;BR /&gt;for x in range(1,2001):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for y in range(1,2001):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i = i + 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; randomDict[x,y] = [random.randint(1,1000)]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum = sum + randomDict[x,y][0]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; randomDict[x,y].append(sum / float(i))&lt;BR /&gt;time2 = time.clock()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;del randomDict&lt;BR /&gt;benchmarkDict["BIG_DICTIONARY"] = time2 - time1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Make another dictionary, but one sourced from disk&lt;BR /&gt;time1 = time.clock()&lt;BR /&gt;pntDict = {r[0]:r[1] for r in arcpy.da.SearchCursor(rasterPntsFC, ["OID@", "grid_code"])}&lt;BR /&gt;time2 = time.clock()&lt;BR /&gt;benchmarkDict["POINTS_TO_DICT"] = time2 - time1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Sort something pretty big&lt;BR /&gt;time1 = time.clock()&lt;BR /&gt;sortList = sorted(pntDict.items(), reverse=True)&lt;BR /&gt;sortList.sort()&lt;BR /&gt;time2 = time.clock()&lt;BR /&gt;benchmarkDict["SORT_DICT_ITEMS"] = time2 - time1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Write a big txt file&lt;BR /&gt;time1 = time.clock()&lt;BR /&gt;testTxtFile = os.path.join(benchmarkFolderPath, "test_text_file.txt")&lt;BR /&gt;f = open(testTxtFile, 'a')&lt;BR /&gt;for i in range(10000000):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write(str(i))&lt;BR /&gt;f.close()&lt;BR /&gt;time2 = time.clock()&lt;BR /&gt;benchmarkDict["WRITE_BIG_TXT_FILE"] = time2 - time1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 00:17:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711406#M55146</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2017-05-09T00:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711407#M55147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have them on my desktop (custom built) and on this Microsoft Book.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The drives are faster in the testing I did a year or so ago on my desktop, since I have two of them and an old-school drive.&amp;nbsp; I put my operating system and programs on one and I use the other for data with the conventional for backup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using python 3.X then make sure you are using time.perf_counter instead of time.clock which ahs been deprecated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One complicating factor is memory.&amp;nbsp; I was running some tests calculating point distances (50 million distances) and writing a numpy array to disk and it all took under a second.&amp;nbsp; I will try to find the tests if I can.&amp;nbsp; But I would look at your combination of memory, drive type and 32/64 processing issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a specific short reproducible test, I can run them on both machines for comparison if you like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 00:41:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711407#M55147</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-09T00:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711408#M55148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the input Dan. So yes, I do indeed have some data and a script! Should take 3-4 minutes to run. The script will need&amp;nbsp;a bit of&amp;nbsp;path updating BTW. Maybe just uncomment that whole thing at the end which writes a dbf file to a network location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="ftp://ww4.dnr.wa.gov/frc/for_dan/"&gt;ftp://ww4.dnr.wa.gov/frc/for_dan/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could post&amp;nbsp;your results (the txt log file would be fine) I'd love to see the numbers&amp;nbsp;from a different NVMe machine. One thought I had is that it could be our&amp;nbsp;corporate virus scan software, which our IT Dept. loves to crank up to&amp;nbsp;the "max slowness" setting.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 01:00:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711408#M55148</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2017-05-09T01:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711409#M55149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesn't like me... just spinning and won't connect.&lt;/P&gt;&lt;P&gt;What is the file size on disk?&amp;nbsp; I may be able to emulate a write and read for you to test.&lt;/P&gt;&lt;P&gt;EDIT&lt;/P&gt;&lt;P&gt;If you have scipy and numpy, this test produces a 40MB file with a reproducible standard values, shape and size.&lt;/P&gt;&lt;P&gt;Test results are for the Microsoft Book&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; numpy &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; np
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; scipy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatial&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;distance &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; cdist

N &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;50000000&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# 50 million destinations, 1 origin&lt;/SPAN&gt;
a &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;random&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mtrand&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RandomState&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;randint&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; size&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;N&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
b &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;random&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mtrand&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RandomState&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;randint&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; size&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

d &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; cdist&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; b&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# for saving&lt;/SPAN&gt;

&lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;timeit cdist&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; b&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; loop&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; best of &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;697&lt;/SPAN&gt; ms per loop&amp;nbsp; &lt;SPAN class="comment token"&gt;# scipy distance&amp;nbsp; calculation&lt;/SPAN&gt;

&lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;timeit np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"c:/temp/d.npy"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; d&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; loop&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; best of &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1.29&lt;/SPAN&gt; s per loop

&lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;timeit np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;load&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"c:/temp/d.npy"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; loop&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; best of &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;219&lt;/SPAN&gt; ms per loop

&lt;SPAN class="comment token"&gt;# file size 38.1 MB&amp;nbsp; 400,000,080 bytes‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The test run for the calculation, the save and read times could be used for comparison.&amp;nbsp; I will test on my desktop when I get a chance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:29:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711409#M55149</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T06:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711410#M55150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still a no-go on the link Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 13:35:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711410#M55150</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-09T13:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711411#M55151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;Your code didn't work for me right out of the gate, so I rewrote it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import numpy as np&lt;BR /&gt;from scipy.spatial.distance import cdist&lt;BR /&gt;import timeit&lt;BR /&gt;def test1():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return cdist(a, b)&lt;BR /&gt;def test2():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; np.save(driveLetter + ":/temp/d.npy", d)&lt;BR /&gt;def test3():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; np.load(driveLetter + ":/temp/d.npy")&lt;BR /&gt;n = 50000000&amp;nbsp; # 50 million destinations, 1 origin&lt;BR /&gt;a = np.random.mtrand.RandomState(1).randint(0, 10, size=(n,2))&lt;BR /&gt;b = np.random.mtrand.RandomState(2).randint(0, 10, size=(1,2))&lt;BR /&gt;d = cdist(a, b)&amp;nbsp; # for saving&lt;BR /&gt;for driveLetter in ["c","d","e"]:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("On the " + driveLetter + ":\ drive...")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("-Test #1 (proc speed)")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(3):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("--"+str(timeit.timeit(test1, number=1)))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("-Test #2 (write speed)")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(3):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("--"+str(timeit.timeit(test2, number=1)))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("-Test #3 (read speed)")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(3):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("--"+str(timeit.timeit(test3, number=1)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case:&lt;/P&gt;&lt;P&gt;C:\ is an NVME drive&lt;/P&gt;&lt;P&gt;D:\ is actuially 4 NVMe drives in RAID0&lt;/P&gt;&lt;P&gt;E:\ is a 7.2k HDD SATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My results are (in seconds):&lt;/P&gt;&lt;P&gt;On the c:\ drive...&lt;BR /&gt;-Test #1 (proc speed)&lt;BR /&gt;--0.883544537654&lt;BR /&gt;--0.878839311374&lt;BR /&gt;--0.902597402597&lt;BR /&gt;-Test #2 (write speed)&lt;BR /&gt;--0.448425204932&lt;BR /&gt;--0.427565927223&lt;BR /&gt;--0.427990160524&lt;BR /&gt;-Test #3 (read speed)&lt;BR /&gt;--0.262958274602&lt;BR /&gt;--0.261044435017&lt;BR /&gt;--0.267392538968&lt;BR /&gt;On the d:\ drive...&lt;BR /&gt;-Test #1 (proc speed)&lt;BR /&gt;--0.883161701312&lt;BR /&gt;--0.968546179848&lt;BR /&gt;--0.957553405499&lt;BR /&gt;-Test #2 (write speed)&lt;BR /&gt;--0.41787253842&lt;BR /&gt;--0.361432745337&lt;BR /&gt;--0.361836109096&lt;BR /&gt;-Test #3 (read speed)&lt;BR /&gt;--0.249162823478&lt;BR /&gt;--0.251594980362&lt;BR /&gt;--0.257517482517&lt;BR /&gt;On the e:\ drive...&lt;BR /&gt;-Test #1 (proc speed)&lt;BR /&gt;--0.863139258002&lt;BR /&gt;--0.902649405389&lt;BR /&gt;--0.906740519754&lt;BR /&gt;-Test #2 (write speed)&lt;BR /&gt;--2.14880975189&lt;BR /&gt;--2.11361173074&lt;BR /&gt;--2.09666840009&lt;BR /&gt;-Test #3 (read speed)&lt;BR /&gt;--0.247759090225&lt;BR /&gt;--0.251948051948&lt;BR /&gt;--0.251255935845&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My equipment is an HP z840 workstation with dual socket Xeon 2687v4 processors w/ lots of RAM. C:\ drive is one of these: &lt;A href="http://www8.hp.com/us/en/workstations/z-turbo-drive.html"&gt;http://www8.hp.com/us/en/workstations/z-turbo-drive.html&lt;/A&gt;&amp;nbsp;and D:\ drive is one of these &lt;A href="http://www8.hp.com/us/en/workstations/z-turbo-drive-g3.html"&gt;http://www8.hp.com/us/en/workstations/z-turbo-drive-g3.html&lt;/A&gt;&amp;nbsp;in a RAID0. At any rate, I am not super impressed and most likely there is something off with the system config...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure why my FTP link doesn't work for you... I reposted the test data as a zip file (~25 MB) to make it easier. Try just pasting &lt;A href="ftp://ww4.dnr.wa.gov/frc/for_dan/"&gt;ftp://ww4.dnr.wa.gov/frc/for_dan/&lt;/A&gt;&amp;nbsp;into windows explorer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 20:50:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711411#M55151</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2017-05-09T20:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711412#M55152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ... sorry I should have mentioned&lt;/P&gt;&lt;P&gt;Python 3.5.3, scipy&amp;nbsp;'0.18.1' etc&amp;nbsp; 8Gig ram&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; C &amp;nbsp;&amp;nbsp; D &amp;nbsp;&amp;nbsp; E &amp;nbsp;&amp;nbsp; me&lt;/P&gt;&lt;P&gt;test 1 &amp;nbsp; creation&amp;nbsp; .9 &amp;nbsp; .9 &amp;nbsp;&amp;nbsp; .9 &amp;nbsp; &amp;nbsp; .7 &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; seconds .... similar&lt;/P&gt;&lt;P&gt;test 2 &amp;nbsp; write &amp;nbsp; &amp;nbsp; &amp;nbsp; .4 &amp;nbsp; .4 &amp;nbsp; 2.1 &amp;nbsp; 1.3 &amp;nbsp; &amp;nbsp; &amp;nbsp; interesting!&amp;nbsp;&lt;/P&gt;&lt;P&gt;test 3 &amp;nbsp; read &amp;nbsp; &amp;nbsp; &amp;nbsp; .25&amp;nbsp; .25&amp;nbsp; .25&amp;nbsp; .25 &amp;nbsp; &amp;nbsp;&amp;nbsp; interesting again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will move to the 'machine' tomorrow morning and try file size as well, since I have the varying drives on it as well with similar specs to yours. &amp;nbsp;&lt;/P&gt;&lt;P&gt;I will also try the ftp through explorer as well.&lt;/P&gt;&lt;P&gt;Thanks for testing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 22:50:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711412#M55152</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-09T22:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711413#M55153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I am starting&amp;nbsp;to&amp;nbsp;think that the benefits of the&amp;nbsp;NVMe disks stuff&amp;nbsp;might only shine through when doing really big multithreaded processing stuff. Possibly these single threaded&amp;nbsp;tests don't have enough data throughput to reveal disk read speed as a&amp;nbsp;bottleneck?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 23:08:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711413#M55153</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2017-05-09T23:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711414#M55154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan - Did you ever get any results from my script/data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 22:38:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711414#M55154</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2017-05-17T22:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS NVMe disk performance?</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711415#M55155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris... sorry I got waylaid.. but I did quite a bit of reading on the subject which was leading me off in all kinds of other directions.&amp;nbsp; I have yet to find a suitable comparison since most of the readings were focused on launch times of programs and access to data and whether the data are contiguous in memory or not.&amp;nbsp; I haven't forgotten... sorry.&amp;nbsp; One advantage... pure silence... no whirring and clicking of the drives &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 23:08:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-nvme-disk-performance/m-p/711415#M55155</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-05-17T23:08:05Z</dc:date>
    </item>
  </channel>
</rss>

