0

I'm trying to load a rather large CSV file. It has more than 700K entries and it times out every time when I try to import the data.

I am currently using for loop over the data to load it but it's quite time-consuming.

KWriter
  • 1,024
  • 4
  • 22

1 Answers1

0

You can try changing the query execution timeout flag in your configuration settings:

-query-execution-timeout-sec=180

The default setting is 180 seconds. You can set a larger value. If you set it to 0 there will be no time limit for query execution.

KWriter
  • 1,024
  • 4
  • 22