v.24.6Improvement
Respect max_read_buffer_size in file table function
Respectmax_read_buffer_sizesetting for file descriptors as well in thefiletable function. #64532 (Azat Khuzhin).
Why it matters
This feature ensures that the reading of files via thefile table function adheres to the configured max_read_buffer_size limit, improving resource management and preventing excessive memory consumption during file reads.How to use it
To enable this behavior, simply use thefile table function as usual. The function will automatically apply the current max_read_buffer_size setting when reading files. You can configure max_read_buffer_size in your server settings or session configuration.