Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sphinx reindex RT index

I have sphinx RT index, but i forgot add morphology when start insert records :( Can i rebuild RT index without lost data? My config:

index track {
    type = rt
    path = /var/...
    other options...
}

searchd {
    listen = 127.0.0.1:9306:mysql41
    workers = threads
    other options...
}

I want add morphology = stemenru to index section, but command indexer --all --rotate has not results.

like image 348
user3265151 Avatar asked Oct 30 '25 06:10

user3265151


1 Answers

You will have to delete the index and start again.

Can't change morphology after the index has been created (because it changes how words are stored)

... indexer plays no role in RT indexes. RT indexes are entirely managed by searchd.

like image 187
barryhunter Avatar answered Nov 01 '25 14:11

barryhunter