Giter VIP home page Giter VIP logo

Comments (5)

richardwilly98 avatar richardwilly98 commented on July 19, 2024

Related to elastic/elasticsearch-mapper-attachments#44

from elasticsearch-langdetect.

jprante avatar jprante commented on July 19, 2024

2.0.1 support base64 encoded UTF-8 texts.

Example added to README how to use langdetect with attachment mapper plugin.

from elasticsearch-langdetect.

richardwilly98 avatar richardwilly98 commented on July 19, 2024

@jprante that's perfect.

One more request I would need to store the language code using "store": "yes":

PUT my_index
{
  "mappings" : {
    "docs" : {
      "properties" : {
        "file" : {
          "type" : "attachment",
          "fields" : {
            "file" : {
              "type" : "multi_field",
              "fields" : {
                "file" : {
                  "type" : "string", 
                  "store": "yes"
                },
                "language" : {
                  "type" : "langdetect",
                  "store": "yes"
                }
              }
            }
          }
        }
      }
    }
  }
}

Resulting mapping does not show store: true:

{
   "docs": {
      "properties": {
         "file": {
            "type": "attachment",
            "path": "full",
            "fields": {
               "file": {
                  "type": "multi_field",
                  "fields": {
                     "file": {
                        "type": "string",
                        "store": true
                     },
                     "language": {
                        "type": "langdetect",
                        "fields": {
                           "language": {
                              "type": "string"
                           },
                           "lang": {
                              "type": "string"
                           }
                        }
                     }
                  }
               },

Is that possible?

from elasticsearch-langdetect.

jprante avatar jprante commented on July 19, 2024

Sure. You have to treat the langdetect type like a multifield.

Like this:

curl -XPUT 'localhost:9200/test'  -d '
{
  "mappings" : {
    "_default_" : {
      "properties" : {
        "content" : {
          "type" : "attachment",
          "fields" : {
            "content" : {
              "type" : "multi_field",
              "fields" : {
                "content" : { "type" : "string" },
                "language" : { 
                   "type" : "langdetect",
                   "fields" : {
                      "language" : { "type" : "string", "store" : true },
                      "lang" : { "type" : "string", "store" : true }
                   }
                }
              }  
            }
          }
        }
      }
    }
  }
}
'

from elasticsearch-langdetect.

richardwilly98 avatar richardwilly98 commented on July 19, 2024

Great! Thank you.

from elasticsearch-langdetect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.