ES 2.3 Recently Installed Enhanced Search - Unassigned Shards

Running both Xenforo 2.3.5 and Enhanced Search 2.3.5. We got it operational but how worried do I need to be about the following information:

ElasticSearchUnassignedShard.webp

From what I understand yellow health should be fine for Xenforo purposes but what about the Unassigned Shard?

------------------------------------------------------

Second question regarding custom themes and the search suggestions that pop-up while typing. It all works on the Xenforo default theme but our custom themes it doesn't work. It works on ALL THEMES if you click "advanced search" instead. Our custom theme is one we developed so it's on us to fix it but it has been ages since we messed around with it. I was wondering if anyone had any hints or clues on where to begin. Such as someone else who has custom themes and fixed it one their site.
 
Solution
Running both Xenforo 2.3.5 and Enhanced Search 2.3.5. We got it operational but how worried do I need to be about the following information:

View attachment 318798

From what I understand yellow health should be fine for Xenforo purposes but what about the Unassigned Shard?

------------------------------------------------------

Second question regarding custom themes and the search suggestions that pop-up while typing. It all works on the Xenforo default theme but our custom themes it doesn't work. It works on ALL THEMES if you click "advanced search" instead. Our custom theme is one we developed so it's on us to fix it but it has been ages since we messed around with it. I was wondering if anyone had any hints or clues on where to begin...
Running both Xenforo 2.3.5 and Enhanced Search 2.3.5. We got it operational but how worried do I need to be about the following information:

View attachment 318798

From what I understand yellow health should be fine for Xenforo purposes but what about the Unassigned Shard?

------------------------------------------------------

Second question regarding custom themes and the search suggestions that pop-up while typing. It all works on the Xenforo default theme but our custom themes it doesn't work. It works on ALL THEMES if you click "advanced search" instead. Our custom theme is one we developed so it's on us to fix it but it has been ages since we messed around with it. I was wondering if anyone had any hints or clues on where to begin. Such as someone else who has custom themes and fixed it one their site.
1) The Unassigned shard: is why the Cluster status: is yellow and can be ignored (your system is looking for a replica), but if your like me it drives me a little crazy.

Yellow status:
ess1.webp

SSH command to change replicas to 0 (zero) (copy all and paste into SSH):
Code:
curl -XPUT 'http://localhost:9200/_settings' -H 'Content-Type: application/json' -d '
{
    "index" : {
        "number_of_replicas" : 0
    }
}'

Green status:
ess2.webp

2) My custom style does not exhibit this behavior on mobile or desktop but I do have these two add-ons.
ElasticSearch Essentials 3.17.4
Search Improvements 2.16.2
 
Last edited:
Solution
Running both Xenforo 2.3.5 and Enhanced Search 2.3.5. We got it operational but how worried do I need to be about the following information:

View attachment 318798

From what I understand yellow health should be fine for Xenforo purposes but what about the Unassigned Shard?

------------------------------------------------------

Second question regarding custom themes and the search suggestions that pop-up while typing. It all works on the Xenforo default theme but our custom themes it doesn't work. It works on ALL THEMES if you click "advanced search" instead. Our custom theme is one we developed so it's on us to fix it but it has been ages since we messed around with it. I was wondering if anyone had any hints or clues on where to begin. Such as someone else who has custom themes and fixed it one their site.
Did you get you 2nd question resolved and did my reply on question #1 help explain?
 
Oh apologies sorry, lots to do forgot to come back to this.

Thank you for following up.

If someone ends up having the same issues look in to your PAGE_CONTAINER template. We reverted the PAGE_CONTAINER template back to it's default state, reapplied our custom stylings and this fixed the search suggestions not popping up.

Your post was helpful in explaining why it does that, and that it is harmless. Thank you.
 
Back
Top Bottom