Hashtag searches and Japanese full text search

We are trying to incorporate hashtag searches and Japanese full text searches in our data. We were able to achieve them separately but when we try to combine the two configs together, it doesn't work as expected.
I found a similar thread here - How can I correctly index @screen_name, #hashtag and url in Japanese text?. But no reply.
PS: Our data will be stored in multiple languages.

Below are the configs that we used.

Hashtag search:

{
    "settings": {
        "index": {
            "analysis": {
                "filter": {
                    "hashtag_filter": {
                        "type": "word_delimiter",
                        "type_table": [
                            "# => ALPHA"
                        ]
                    }
                },
                "analyzer": {
                    "hashtag_analyzer": {
                        "type": "custom",
                        "tokenizer": "whitespace",
                        "filter": [
                            "lowercase",
                            "hashtag_filter"
                        ]
                    }
                }
            }
        }
    },
    "mappings": {
        "properties": {
            "caption": {
                "type": "text",
                "analyzer": "hashtag_analyzer"
            }
        }
    }
}

CJK full text search:

    "settings": {
        "index": {
            "analysis": {
                "analyzer": {
                    "kuromoji_analyzer": {
                        "char_filter": [
                            "icu_normalizer"
                        ],
                        "tokenizer": "kuromoji_tokenizer",
                        "filter": [
                            "kuromoji_baseform",
                            "kuromoji_part_of_speech",
                            "cjk_width",
                            "ja_stop",
                            "kuromoji_stemmer",
                            "lowercase"
                        ]
                    }
                }
            }
        }
    },
    "mappings": {
        "properties": {
            "caption": {
                "type": "text",
                "analyzer": "kuromoji_analyzer"
            }
        }
    }
}

The two configs combined together, which doesn't seem to be working:

{
  "settings": {
    "index": {
      "analysis": {
        "filter": {
          "hashtag_filter": {
            "type": "word_delimiter",
            "type_table": [
              "# => ALPHA"
            ]
          }
        },
        "analyzer": {
          "kuromoji_hashtag_analyzer": {
            "char_filter": [
              "icu_normalizer"
            ],
            "type": "custom",
            "tokenizer": "kuromoji_tokenizer",
            "filter": [
              "kuromoji_baseform",
              "kuromoji_part_of_speech",
              "cjk_width",
              "ja_stop",
              "kuromoji_stemmer",
              "lowercase",
              "hashtag_filter"
            ]
          }
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "caption": {
        "type": "text",
        "analyzer": "kuromoji_hashtag_analyzer"
      }
    }
  }
}

Any help here?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.