sql >> Database >  >> RDS >> Mysql

ElasticSearch PutMapping API:MapperParsingException Hoofdtypetoewijzing niet leeg na parseren

Uw type is niet consistent, in de API-aanroep is het type my_type

curl -XPUT http://localhost:9200/my_index/_mapping/my_type

dan wordt het sale_test in het JSON-bericht.

Het hebben van een consistent type lost je probleem op:

curl -XPUT http://localhost:9200/my_index/_mapping/sale_test -d '
    { 
     "sale_test": { 
       "properties": { 
         "Client": {"type": "string", "index": "not_analyzed" }, 
         "OfferRGU": { "type": "long" }, 
         "SaleDate": { "type": "date", "format": "dateOptionalTime" },
         "State": { "type": "string" }
         } 
       } 
    }'

Hier heb je allebei een nieuwe index en een nieuw type :

curl -XGET http://localhost:9200/dgses/sale_test_river/_mapping

Als ik de index en het type corrigeer, krijg ik:

curl -XGET http://localhost:9200/my_index/sale_test/_mapping?pretty
{
  "myindex" : {
    "mappings" : {
      "sale_test" : {
        "properties" : {
          "Client" : {
            "type" : "string",
            "index" : "not_analyzed"
          },
          "OfferRGU" : {
            "type" : "long"
          },
          "SaleDate" : {
            "type" : "date",
            "format" : "dateOptionalTime"
          },
          "State" : {
            "type" : "string"
          }
        }
      }
    }
  }
}



  1. ODP.NET Oracle.ManagedDataAcess willekeurige ORA-12570 fouten

  2. Declareer een variabele in een 'alleen lezen' MySQL-database

  3. 9.6 Engste Patch Toernooi

  4. Jboss Datasource-configuratie voor MySQL - MysqlXADataSource-element