Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Open Source. Switch to the latest stable version.
COPY FROM
fails - field larger than the field limit
COPY FROM
fails - field larger than the field limit¶This troubleshooting guide describes what to do when Scylla fails to import data using the CQL COPY FROM
command
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
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
Was this page helpful?