Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

elasticsearch-javaee

Getting Started

ElasticSearch

cd ${elasticsearch.home}/bin
./elasticsearch

The default mapping for the supplier.name is not enough so we need to set the french analyzer.

If the index is already generated, just DELETE it :

curl -XDELETE 'http://localhost:9200/financial'

Then execute the command below :

curl -XPUT 'http://localhost:9200/financial/invoice/_mapping?pretty' -d '{ 
  "properties" : { 
    "supplier.name" : { 
      "type" : "string", 
      "analyzer" : "french" 
    } 
  } 
}'

Run with Arquillian

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages