Using the restful API /apiv2/job/ to query data, when the data is too long, it does not return all the data, is there any setting to solve this problem?
My data has a field that stores WKT data, and the data is very large, so I first made the following settings:
alter system set limits.single_field_size_bytes = 104857600; // 100M
Then using the interface to load the data normally, I found that the overly long data was not loaded completely and it provided a link to tell me how to load all the data for that row for that field, but that is not what I want.
I know that JDBC can query all the data, but I would like to ask for the restful API, is there a setting to change this behavior?
Thanks!