Can we rebuild indexes for specific Entity in zammad?

eg: ticket_articles or user Entity
LLM gave me below, need to know anybody tries rebuild indexed of specific entity.

kubectl exec -it zammad-railsserver-743279djaskfhwf-- bash

5.3 — Navigate to Zammad directory

Code

cd /opt/zammad

5.4 — Open Rails console

Code

bundle exec rails c

5.5 — Run article indexing (paste directly into pry console)

Code

Ticket::Article.find_each do |article|

SearchIndexBackend.add(‘Ticket::Article’, article)

print ‘.’

end

puts ‘Done!’

:white_check_mark: Expected: Dots appear per article → ends with Done!

5.6 — Verify articles indexed (run in same pry console)

Code

SearchIndexBackend.search(‘*’, ‘Ticket::Article’, limit: 1)

:white_check_mark: Expected: Returns article data from Elasticsearch

5.7 — Exit Rails console

Code

exit

I cant use rebuild all since my tickets rebuild taking 15-16 hrs.
Anybody please help.

Thanks

Try again with full sentences and the template please. What is the problem..?

Using code blocks also helps with readability.