You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🐌 🐌 🐌
For each area, the script is searching all the data files for that area.
So 2000 areas * 7 data (so far) = 14000 data files, so 2000 * 14000 = roughly 28,000,000 stat() calls to combine the files.
The text was updated successfully, but these errors were encountered:
Now enumerate all the input files, sorts them by their basename (to
group the same basenames together), then combines all the files with the
same basename.
Unfortunately this doesn't seem to provide any speedup, probably because
I'm running it through cygwin which does weird stuff with file I/O.
🐌 🐌 🐌
For each area, the script is searching all the data files for that area.
So 2000 areas * 7 data (so far) = 14000 data files, so 2000 * 14000 = roughly 28,000,000 stat() calls to combine the files.
The text was updated successfully, but these errors were encountered: