A Project in which Apache Tikka is integrated with ElasticSearch + Kibana
- To Get The Document And File Data From filesystem
- To Query and visualize the data
Method :
Sender.send(document-type-mapper ,
document-type ,
path-of-documents-folder,
index-name,
type-name,
extensions to index )
-
document-type-mapper Type of mapper strategy to use (e.g WordMapper , ImageMapper)
-
document-type Type of document to index (e.g WordDocument , ImageDocument)
-
index-name Your elastic index name
-
type-name Your index type name
-
extensions to index Specific extensions to index (e.g if you are using WordMapper with WordDocument , then you have to write docs or odt or both or any number of extensions you want ( its an array of extensions ;) ) )
Sender.sendData(new WordMapper(),
new WordDocument(),
"/home/bilalam/Documents/",
"word-docs",
"odt", "doc", "docx");