Open ccartermices opened 1 year ago
Hi! I think this is normal. This exact behaviour is described here: https://github.com/MIT-LCP/mimic-code/tree/main/mimic-iii/buildmimic/postgres
Chartevents is a large table and it will take a while to load the data
I have run it sucessfully. However, the chartevent seems to copy 0.
I used the solution in this https://github.com/MIT-LCP/mimic-code/issues/182 issue to count items in chartevents.
SELECT COUNT(*) FROM chartevents;
However, it run a long time and got stuck.
I have run it sucessfully. However, the chartevent seems to copy 0.
It looks to me like the table built successfully. As I remember, postgres reports zero rows due to the partitioning.
Side note, but I'd recommend working with the data on Google BigQuery rather than building the database locally: https://mimic.mit.edu/docs/gettingstarted/cloud/bigquery/
Thanks!I will try.
I imported the mimic3 data into the database using postpreSQL and 7zip commands:
DROP DATABASE IF EXISTS mimic;
After using these commands, my program stopped updating and got stuck importing the chartevent table for a long time:
My machine hardware is win10, 16GB memory, no GPU, the hard disk storing the csv.gz data has 50GB free space. Is this normal? Are there ways to see the progress or diagnose if it's working correctly?