The data I'm trying to insert into my table has about 95k rows. So in essence I'm trying to insert 95k values using the executemany(sql, data) function.
My initial suspicion is that the number of sets of values being inserted is too much for the executemany() function to handle. Any ideas if that is indeed the cause or if there is anything else that could be causing the following error message?
Traceback (most recent call last): File "/Users/ssrikanthan/anaconda/envs/ilc-load/lib/python3.5/site-packages/mysql/connector/network.py", line 130, in send_plain self.sock.sendall(packet) BrokenPipeError: [Errno 32] Broken pipe