Max limit for -SBL in collection.cfg?

Using Funnelback 15.6.0

Hi all, I have a small index - some entries include large metadata strings. This index outputs to JSON, so it’s preferrable to preserve the metadata if possible.

I can control the length to an extent by setting:

collection.cfg > query_processor_options
-MBL=4096 -SBL=16384

padre-opts.cfg
-mdsfml=10000

However, the strings seem to max out at 2013 characters when accessed returned.

The docs indicate -MBL is unlimited, so is there any other reason why the strings are limited to 2013 characters in the results json?

Hi,

The -mdsfml option is an indexer option and needs to be set in your collection.cfg file as follows. Add the option to any others that might already be listed, and there is no ‘=’ and nothing between the option and the value. You can remove the setting from padre-opts.cfg as it won’t have any effect there.

indexer_options= -mdsfml10000

Once you’ve added this you need to rebuild your index for the changes to apply.

Hi @plevan, thanks for your reply, that’s worked!

I had added mdsfml to padre_opts due to no effect in collection.cfg - all I needed to do was kill the ‘=’ ! :smile: