I am glad to post my first question today. First, please excuse my poor English.
I am using SQLite inside a Python code for some easy big file management system. Concretely, I have a big flat file (say, 100 millions lines) that I want to have sorted using the values of 3 columns (which are integers), so that I could iterate over it and do some computation.
This is why I used SQLite with a big SELECT ... ORDER BY (with an index on one column). Since this big SELECT is too memory demanding, I need to call it several times, with some OFFSET and LIMIT.
I could use Linux sort, but I want it to be platform independent.
So far, it is working fine (as long as the right PRAGMA are correctly set), but slow. Do you have any advice to optimize this? Maybe using SQLite is just stupid...
Thank you very much for any suggestion, comment, etc.
If you want some gory details about the database, the commands are like:
PRAGMA journal_mode = OFF
PRAGMA synchronous = 0
PRAGMA locking_mode = EXCLUSIVE
PRAGMA count_change = OFF
PRAGMA temp_store = 2
CREATE TABLE tmpTranscripts_arm_3R_transcripts (id INTEGER PRIMARY KEY, name varchar(255), chromosome varchar(255), start int(11), end int(11), direction tinyint(4), tags varchar(1023), bin int(11), exons varchar(10000))
CREATE INDEX 'iTranscript_arm_3R_14943' ON 'tmpTranscripts_arm_3R_transcripts' (start, end, direction)
INSERT INTO tmpTranscripts_arm_3R_transcripts (name, chromosome, start, end, direction, tags, bin, exons) VALUES ('SRR060644.1', 'arm_3R', 11450314, 11450337, -1, 'feature=transcript;bestRegion=(self);nbGaps=0;nbMismatches=0;ID=SRR060644.1;identity=100.0', 300011450, '')
(this, more than 10 millions times)
SELECT * FROM tmpTranscripts_arm_3R_transcripts ORDER BY start, end, direction LIMIT 0, 10000
(this, as much as needed)