It looks like there’s a max length for string fiel...
# troubleshooting
k
It looks like there’s a max length for string fields of 512…or is data being truncated in the query response?
m
Yes, you can overwrite the length in the schema
k
Thanks - I don’t see that being described at https://docs.pinot.apache.org/basics/components/schema or other pages. What’s the syntax?
m
Something like:
Copy code
{
        "dataType": "STRING",
        "maxLength": <length>,
        "name": "stringCol"
      }
n
we are going to consolidate the 2 pages, hopefully soon
k
Thanks