FTS Index with two nodes give diferent results VS one node

Hi, I been working with Couchbase 5.1, using an enviroment with two nodes for full-text and indexes; and I´m trying to create a FTS Index with no replica.

My problem is when I created my index, one node stock in 50,1% index progress, and the second node stock in 49,9%. I assume this is because the FTS balancing, but this is the tricky part when a search using any of my nodes my search fails, but if I create the same index in another enviroment with only one node (having 100% index progress) my search works perfect.

Enviroment 1 ( two nodes):
node 1:


node 2:

What am I doing wrong?
is it possible to define a Full Text index only in one of my nodes?

FTS INDEX definition:

{
“type”: “fulltext-index”,
“name”: “real-estates”,
“uuid”: “52ddf9ef1bc5f704”,
“sourceType”: “couchbase”,
“sourceName”: “CONTENT”,
“sourceUUID”: “2f07eb016e46883ed2fddca498e206c8”,
“planParams”: {
“maxPartitionsPerPIndex”: 171
},
“params”: {
“doc_config”: {
“mode”: “type_field”,
“type_field”: “main.type”
},
“mapping”: {
“default_analyzer”: “standard”,
“default_datetime_parser”: “dateTimeOptional”,
“default_field”: “_all”,
“default_mapping”: {
“dynamic”: true,
“enabled”: false
},
“default_type”: “_default”,
“index_dynamic”: true,
“store_dynamic”: false,
“types”: {
“real-estate”: {
“dynamic”: false,
“enabled”: true,
“properties”: {
“main”: {
“dynamic”: false,
“enabled”: true,
“properties”: {
“address”: {
“dynamic”: false,
“enabled”: true,
“properties”: {
“locations”: {
“dynamic”: false,
“enabled”: true,
“properties”: {
“ref”: {
“dynamic”: false,
“enabled”: true,
“fields”: [
{
“analyzer”: “”,
“include_in_all”: true,
“include_term_vectors”: true,
“index”: true,
“name”: “ref”,
“store”: false,
“type”: “text”
}
]
}
}
}
}
},
“familyType”: {
“dynamic”: false,
“enabled”: true,
“fields”: [
{
“analyzer”: “”,
“include_in_all”: true,
“include_term_vectors”: true,
“index”: true,
“name”: “familyType”,
“store”: false,
“type”: “text”
}
]
},
“operationType”: {
“dynamic”: false,
“enabled”: true,
“fields”: [
{
“analyzer”: “”,
“include_in_all”: true,
“include_term_vectors”: true,
“index”: true,
“name”: “operationType”,
“store”: false,
“type”: “text”
}
]
},
“status”: {
“dynamic”: false,
“enabled”: true,
“fields”: [
{
“analyzer”: “”,
“include_in_all”: true,
“include_term_vectors”: true,
“index”: true,
“name”: “status”,
“store”: false,
“type”: “text”
}
]
},
“type”: {
“dynamic”: false,
“enabled”: true,
“fields”: [
{
“analyzer”: “”,
“include_in_all”: true,
“include_term_vectors”: true,
“index”: true,
“name”: “type”,
“store”: false,
“type”: “text”
}
]
}
}
}
}
}
}
},
“store”: {
“kvStoreName”: “mossStore”
}
},
“sourceParams”: {}
}

Do anyone have an answer or a hint to give me? Please

UPDATE: I’m using JAVA SDK to connect my application to my couchbase and when I do a Full Text Search only gives me the results of one node, not both nodes.

Hi @romero.pedro.17,
Apologies for such a delayed response for this question.
A recent forum activity of - flagging non category posts resulted in sending a notification for this post and thus got into the attention.

Adding a response for the issue you faced above, as it might be helpful for other users.

This issue happens when you haven’t enabled the needed ports across your cluster nodes.
So please make sure you have enabled the ports 8094 and 18094 in your cluster. (on all FTS nodes). You may find more details about the network and firewall configs here:https://docs.couchbase.com/server/current/install/install-ports.html
Cheers,
Sreekanth