I would like to mention about my little project, and if I'm on track. I need work with all articles from Medline (http://www.nlm.nih.gov/bsd/licensee/2011_stats/baseline_doc.html). For those are not familiar with Medline database, I add a little information:
- There are aprox. 20.000.000 of records (83.4 GB disk space), each has many fields and subfields.
- You can download this DB (with license) in XML format.
- These 20M of records are distributed in 653 files.
- Every file has one MedlineCitationSet, and this a set of records (MedlineCitation's).
I want to process these records and get information such as title, abstract... Then I have thought to index these files (or records) with python and mongodb. And I have one option:
I have created a medline parser and for each record is created a JSON entry for mongoDB, and after indexing by pubmedID. Then I can create a funtion likes get_abstract('pubmedID'):string.
My questions are:
- Is it a good idea? (XML parsing --> JSON --> insert and indexing!)
- Can I use GridFS and get chunks equivalents to records for each file? How?
- Do you know other way?
My english is not good, I hope your undestanding :)
Thank you very much!
àlex