-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
BACKLOG-37664 POC to make pentaho server work with vfs metastore #8894
base: metastore-vfsplugin
Are you sure you want to change the base?
BACKLOG-37664 POC to make pentaho server work with vfs metastore #8894
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.
Shocked this is all that's required!
plugins/pur/core/src/main/java/org/pentaho/di/repository/pur/PurRepository.java
Outdated
Show resolved
Hide resolved
plugins/pur/core/src/main/java/org/pentaho/di/repository/pur/PurRepository.java
Outdated
Show resolved
Hide resolved
super(); | ||
initSharedObjectAssemblerMap(); | ||
Collection<MetastoreLocatorOsgi> metastoreLocators = PluginServiceLoader.loadServices( MetastoreLocatorOsgi.class ); |
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.
This is perfectly fine for POC, but did you ran into some problem looking for MetastoreLocator instead
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.
Yes using metastore locator instead of the osgi one required a new dependency that caused problems
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.
Oh yes, I remember now. I was able to look up MetastoreLocator and added dependency for pentaho-metastore-locator-api in pom.xml and it worked fine
No description provided.