Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/novicell/novicell.examine.elasticsearch
Elasticsearch provider for Examine in Umbraco v8
https://github.com/novicell/novicell.examine.elasticsearch
elasticsearch hacktoberfest
Last synced: 2 days ago
JSON representation
Elasticsearch provider for Examine in Umbraco v8
- Host: GitHub
- URL: https://github.com/novicell/novicell.examine.elasticsearch
- Owner: Novicell
- License: mit
- Created: 2019-09-16T11:24:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T08:52:35.000Z (10 months ago)
- Last Synced: 2024-02-26T04:45:42.684Z (9 months ago)
- Topics: elasticsearch, hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 15.6 MB
- Stars: 12
- Watchers: 12
- Forks: 5
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Novicell.Examine.ElasticSearch
[![Build status](https://ci.appveyor.com/api/projects/status/qrkvmx8jnxg8n2up/branch/master?svg=true)](https://ci.appveyor.com/project/bielu/novicell-examine-elasticsearch/branch/master)
| Nuget Package | Status | Version |
| -------------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Novicell.Examine.ElasticSearch | Release | Soon |
| | Pre-release | [![Build status](https://img.shields.io/nuget/vpre/Novicell.Examine.ElasticSearch)](https://www.nuget.org/packages/Novicell.Examine.ElasticSearch/) |
| Novicell.Examine.ElasticSearch.Umbraco | Release | Soon |
| | Pre-release | || Umbraco Package | Version |
| --------------- | ------- |
| Release | soon |
| Pre-release | soon |# Introduction:
Umbraco comes with Examine. This is an abstraction around Lucene.net and it makes indexing and searching with Lucene alot easier. However there are limitations:
Umbraco 7 uses Lucene.net 2.9.4 and Umbraco 8 uses Lucene.net 3.0.1 both released before 2012
Examine does not have ability to support replication for resiliance. Elastic does.
Examine indexes more specifically these older lucene.net indexes cannot currently be put into blob storage (there is unsupported azure provider). This can cause issues when trying to load balance sites as you have to have separate index for each site
You need zero downtime during rebuild. Examine when rebuilding will delete the index then rebuild, this means there is a catch up time during which documents will be missing from the index. Elastic has concept of aliases to allow zero downtime on rebuilds.
Do you require additional media indexing eg word / powerpoint / excel? Currenty there is for v8 pdf indexer this uses pdfsharp, pdfsharp cannot handle all encoding and sometimes you can end up with junk in your index.
The lucene version of current examine cannot handle CJK (chinese, japanese and korean) languages very well. There is better multilingual support in lucene >4.8 (35+analysers including morphological analysis)
Want latest version of Lucene. The java version of lucene is currently at 8.2.0 and latest elastic uses lucene > 7
Keeping in mind the above, we needed something to index into elastic using examine. Hence the creation of this provider.# Basic Information:
Dependencies:
Umbraco 8.4.0Elasticsearch 7.4.1
Nest 7.4.1
Demo solution:
Umbraco Site:
https://umbracoelasticsearchdemo.novicell.london/user: [email protected]
pass: Au3%!vRJ$IKibana:
https://kibana.novicell.london/app/kibana#/dev_tools/console?_g=()# Installation:
Prerequiments:
Installed Umbraco v8 in versionInstance of ElasticSearch
Instruction of instalation and configuration is available on wiki:
[Instalation Instruction](https://github.com/Novicell/Novicell.Examine.ElasticSearch/wiki/Installation)# Features:
- 0 downtime reindexing