(Re)Naming of stopword files [SOLVED]

Hi,

When I create a table on my live server with

stopwords=‘/home/path/to/AF_stopwords_en.txt’
wordforms=‘/home/path/to/AF_synonyms.txt’

then run a SHOW INDEX test_index SETTINGS;

I get:

stopwords = /var/lib/manticore/test_index/stopwords_chunk0_0.txt
wordforms = /var/lib/manticore/test_index/wordforms_chunk0_0.txt

Is this a good sign or a bad sign? On my test machine I get the actual file names.

SHOW VERSION;
+------------+-----------------------------------+
| Component | Version |
+------------+-----------------------------------+
| Daemon | 29.0.2 2f9c226b6@26081409 |
| Columnar | columnar 13.9.0 dbc40aa@26080509 |
| Secondary | secondary 13.9.0 dbc40aa@26080509 |
| Knn | knn 13.9.0 dbc40aa@26080509 |
| Embeddings | embeddings 1.1.1 dbc40aa@26080509 |
| Buddy | buddy v4.4.1+26081318-a3f8fe36 |
+------------+-----------------------------------+

Thanks,

Steve

that is the normal behavior in the RT mode as daemon copy file into table dir and make compatible names to prevent clashes with external files on attach or optimize other statements

in not RT mode daemon just reference these files in the location you provide in the config for index

Thanks Tomat. I thought it would be something of the sort.