Skip to content

in-cal/incal-access-elastic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InCal Access ElasticSearch version License Build Status

This is a convenient repo-like access layer for Elastic Search based on Elastic4S library.

Installation

All you need is Scala 2.11 or 2.12. To pull the library you have to add the following dependency to build.sbt

"org.in-cal" %% "incal-access-elastic" % "0.3.0"

or to pom.xml (if you use maven)

<dependency>
    <groupId>org.in-cal</groupId>
    <artifactId>incal-access-elastic_2.11</artifactId>
    <version>0.3.0</version>
</dependency>

respectively for Scala 2.12 as

<dependency>
    <groupId>org.in-cal</groupId>
    <artifactId>incal-access-elastic_2.12</artifactId>
    <version>0.3.0</version>
</dependency>

DB

Elastic Search 5.6.10 is required. Any other version might not work correctly. The release for Debian-like Linux distributions can be installed as:

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.10.deb
sudo dpkg -i elasticsearch-5.6.10.deb
sudo systemctl enable elasticsearch.service
sudo service elasticsearch start