Feature/lucene search engine#2892
Open
yanlibert wants to merge 95 commits intoMarquezProject:mainfrom
Open
Conversation
Signed-off-by: wslulciuc <willy@datakin.com>
Signed-off-by: wslulciuc <willy@datakin.com>
Signed-off-by: wslulciuc <willy@datakin.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
Signed-off-by: Yannick Libert <yannick.libert@gmail.com>
✅ Deploy Preview for peppy-sprite-186812 canceled.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2892 +/- ##
=========================================
Coverage 83.25% 83.25%
Complexity 1476 1476
=========================================
Files 259 259
Lines 6785 6785
Branches 313 313
=========================================
Hits 5649 5649
Misses 981 981
Partials 155 155 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
👋 Thanks for opening a [pull request]
Currently, the new version of Marquez uses OpenSearch as a backend for the new search feature.
This might be overkill because not only it introduces an external dependency but also only the search and indexing features of OpenSearch are used.
Solution !! Warning: Currently a WiP !!
This is a small implementation of Lucene to perform only indexing and search of a dataset and a job index. This is done in a form of a subproject that can be run alongside marquez api and marquez-web.
It 's designed as a drop-in replacement of OpenSearch, so it's easy to switch between this implementation or a full-fledge OpenSearch.
It uses a ByteBuffersDirectory so all documents are stored in memory. The datasets and jobs are reloaded in the background at startup from the lineage_events table using the Marquez DAO.