Skip to content

Commit 50082e3

Browse files
committed
Releasing zentity-0.1.1-beta.1
1 parent cdb7b49 commit 50082e3

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed

README.md

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
# zentity
44

5-
zentity is an [Elasticsearch](https://www.elastic.co/products/elasticsearch) plugin for real-time entity
6-
resolution. It aims to be:
5+
zentity is an **[Elasticsearch](https://www.elastic.co/products/elasticsearch)** plugin for entity resolution.
6+
7+
zentity aims to be:
78

89
- **Simple** - Entity resolution is hard. zentity makes it easy.
9-
- **Fast** - Get results at interactive speeds. From milliseconds to low seconds.
10+
- **Fast** - Get results in real-time. From milliseconds to low seconds.
1011
- **Generic** - Resolve anything. People, companies, locations, sessions, and more.
1112
- **Transitive** - Resolve over multiple hops. Recursion finds dynamic identities.
1213
- **Multi-source** - Resolve over multiple indices with disparate mappings.
@@ -17,7 +18,40 @@ resolution. It aims to be:
1718

1819
## Documentation
1920

20-
Github Wiki: https://github.com/zentity-io/zentity/wiki
21+
Documentation is hosted on the [Github Wiki](https://github.com/zentity-io/zentity/wiki). Eventually it will be
22+
migrated to [zentity.io](https://zentity.io/).
23+
24+
25+
## Quick start
26+
27+
Once you have installed Elasticsearch, you can install zentity from a remote URL or a local file.
28+
29+
### Install from remote URL
30+
31+
1. Browse the **[releases](https://github.com/zentity-io/zentity/releases)**.
32+
2. Find a release that matches your version of Elasticsearch. Copy the name of the .zip file.
33+
3. Install the plugin using the `elasticsearch-plugin` script that comes with Elasticsearch.
34+
35+
Example:
36+
37+
`elasticsearch-plugin install https://github.com/zentity-io/zentity/releases/download/zentity-0.1.1-beta.1/zentity-0.1.1-beta.1-elasticsearch-6.2.2.zip`
38+
39+
40+
### Install from local file
41+
42+
1. Browse the **[releases](https://github.com/zentity-io/zentity/releases)**.
43+
2. Find a release that matches your version of Elasticsearch. Download the .zip file.
44+
4. Install the plugin using the `elasticsearch-plugin` script that comes with Elasticsearch.
45+
46+
Example:
47+
48+
`elasticsearch-plugin install file:///path/to/zentity-0.1.1-beta.1-elasticsearch-6.2.2.zip`
49+
50+
51+
### Next steps
52+
53+
Read the **[documentation](https://github.com/zentity-io/zentity/wiki/Basic-Usage)** to learn how to create and manage
54+
entity models and how to resolve entities.
2155

2256

2357
## <a name="license">License</a>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<name>zentity</name>
8-
<description>Real-time entity resolution for Elasticsearch.</description>
8+
<description>Entity resolution for Elasticsearch.</description>
99
<groupId>io.zentity</groupId>
1010
<artifactId>zentity</artifactId>
1111
<version>${zentity.version}-elasticsearch-${elasticsearch.version}</version>
@@ -14,7 +14,7 @@
1414
<zentity.author>Dave Moore</zentity.author>
1515
<zentity.classname>org.elasticsearch.plugin.zentity.ZentityPlugin</zentity.classname>
1616
<zentity.website>http://zentity.io</zentity.website>
17-
<zentity.version>0.1.1</zentity.version>
17+
<zentity.version>0.1.1-beta.1</zentity.version>
1818
<!-- dependency versions -->
1919
<elasticsearch.version>6.2.2</elasticsearch.version>
2020
<jackson.version>2.9.4</jackson.version>

0 commit comments

Comments
 (0)