GitHub user dvdvardanyan deleted a comment on the discussion: Need help running embedded Hop pipelines with Springboot
For the error "Hop configuration file not found, not serializing: /Users/User/Desktop/SampleHopApp/config/hop-config.json" there is a "hop-config.json" file that comes with the hop binaries download zip, located under "apache-hop-client-2.11.0.zip/hop/config/hop-config.json". It should be copied into the Java project under "samplehopspringboot/config/hop-config.json" or whichever path the error message mentions. Some very limited details about it can be found here https://hop.apache.org/manual/latest/projects/advanced.html. Also, inside said JSON configuration should be changed under projectsConfig/projectConfigurations path to include the projects that are executed from the Java project. For "Error loading the pipeline run configuration 'local'", try explicitly creating a new "Pipeline Run Configuration" and using it in every pipeline instead of the "local", as "local" does not have configuration in project metadata. However, I wasn't able to find any maven repository that would import all the plugins from https://github.com/apache/hop/tree/main/plugins required to run the workflows or pipelines (which, for some reason are not included in hop-core and hop-engine repositories), and need to be imported separately like: "hop-action-pipeline", "hop-transform-sql", "hop-transform-pipelineexecutor", etc, and if any is missed - will get the missing plugin error without properly describing which exact plugin is missing and will have to guess based on the exception which is not always obvious. So, did I miss somewhere any maven repository which would import all the necessary plugins? Whatever is described here https://hop.apache.org/dev-manual/latest/porting-kettle-plugins.html doesn't seem to be solving the problem, and I'm not sure if this page is even up to date. GitHub link: https://github.com/apache/hop/discussions/4887#discussioncomment-12243330 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
