Skip to content

keerthanvasist/ElasticSearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Indexing for ElasticSearch

About This system is designed to index documents into ElasticSearch. The objective of the system is to be able to index documents from different data sources (csv file, tsv file, mongoDB, mysql etc). For now, the system will only take one source (csv file). However, it can be extended to other data sources by incrementally adding classes that extend the Input.java abstract class.

The design of the project is simple. We just have one Input abstract class, which can be extended by different types of input child classes like CSVInput, TSVInput etc. The input object has methods that read input from file, convert it to a json/map and another method to index input.

The program reads in the required config parameters from the property file "config.properties". Logs are written with the help of log4j2 API. The logs can be configured in the log4j2.xml file. The dependencies are managed in the pom.xml using Maven as build tool.


Classes

Input.java

This abstract class represents any form of data that is available as input.

CSVInput.java

This class extends Input.java and provides functionality to read data specifically from '.csv' files.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages