Was this page helpful?
Caution
You're viewing documentation for an unstable version of ScyllaDB Manual. Switch to the latest stable version.
CQL Command COPY FROM
fails - field larger than the field limitCopy
This troubleshooting guide describes what to do when ScyllaDB fails to import data using the CQL COPY FROM
command
ProblemCopy
When trying to use the CQL command COPY FROM
, the following error message is displayed:
Failed to import XXX rows: Error - field larger than field limit (131072), given up after Y attempts
SolutionCopy
Locate your
.cqlshrc
file, which is usually under$HOME
.Add the following line to that file:
[csv]
field_size_limit = 1000000000
Optionally, adjust
field_size_limit
according to fit.Try again
Additional References