-
-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Parseable
as the main interface
#1143
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small comment otherwise LGTM
// use the id that was generated/found in the staging and | ||
// generate the path for the object store | ||
let path = ingestor_metadata_path(None); | ||
let path = meta.file_path(); | ||
|
||
// we are considering that we can always get from object store | ||
if let Some(mut store_data) = storage_ingestor_metadata { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test initialising multiple ingestors setup / delete ingestor for distributed
Co-authored-by: Nikhil Sinha <[email protected]> Signed-off-by: Devdutt Shenoi <[email protected]>
Co-authored-by: Nikhil Sinha <[email protected]> Signed-off-by: Devdutt Shenoi <[email protected]>
Fixes #XXXX.
Description
Refactors code to share a
Parseable
object that is the interface to perform all operations in parseable, instead of having distinct interfaces such asCONFIG
,StreamInfo
, etc.This PR has: