Hi,
I'm getting the following error when trying to download after being partially successful
Traceback (most recent call last):
File "app.py", line 118, in thread_bootstrap
self.thread_init()
File "./bq/mtgox.py", line 153, in run
raise Exception, "Insertion error: %d =/= %d" % (pos,size)
Exception: Insertion error: 1040000 =/= 1024000
This means that whilst downloading, something bad happened either on Google's end, your end, or with your internet connection, and a set of trades wasn't properly inserted into the database, so you're missing 16000 entries. You have a few options:
1) I would recommend starting again if it's not too much trouble for your internet connection, as your data could be corrupted somehow.
2) Alternatively, you could resume the download as it looks like the last 16k entries just somehow weren't inserted, and it may not be corrupted at all.
3) Or to be safe, you could manually remove the last 24k rows to try to remove any potential corruption and resume from 1 million.
1 is the safest, but you'll probably be fine with any of the options.