The current retry method has no need for *copy-batch-split*.

This commit is contained in:
Dimitri Fontaine 2014-01-23 23:28:25 +01:00
parent d132bafc07
commit b374d4bc8b

View File

@ -13,7 +13,6 @@
#:*log-min-messages*
#:*copy-batch-rows*
#:*copy-batch-size*
#:*copy-batch-split*
#:*pgconn-host*
#:*pgconn-port*
#:*pgconn-user*
@ -57,12 +56,9 @@
;;;
;;; How to split batches in case of data loading errors.
;;;
(defparameter *copy-batch-rows* 25000
(defparameter *copy-batch-rows* 2500
"How many rows to batch per COPY transaction")
(defparameter *copy-batch-split* 5
"Number of batches in which to split a batch with bad data")
;;;
;;; We need that to setup our default connection parameters
;;;