Pentaho Data Integration (PDI) 9.4 Marketplace missing, how to install Plugin now? - plugins

I've just installed Pentaho Data Integration (PDI) version 9.4 (Community Edtition). I'm following this guide to install the new Plugin. The problem is I don't have "Marketplace" in "Tools -> Marketplace" like the guide said (the Show plugin information isn't the thing I need).
I read on the internet that I can download the Zip file, extract and put it in the Plugin folder. But it doesn't work too (maybe because of the wrong structure). For example, if I want to install this Big-data-plugin from Git Hub, I don't know what to do. My final goal is to have some Plugins to connect Pentaho with HDFS, and Hbase,...

In PDI 9.4 (CE), you can install the big data plugin and marketplace by copying and pasting files from "pdi-ce-<version>-<build>-hadoop-addon.zip" to your PDI's data-integration folder. You can follow the steps to install from here

Turn out you have to download a full version of PDI on this link (1gb zip file)
I accidentally downloaded a separated version which doesn't have big-data-plugin available. After downloading the full version everything is already there, marketplace and big-data-plugin

Related

How to offline install of Spring Boot Tools Plugin into Eclipse IDE?

I need to install Spring Tools 4 Plugin into my Eclipse IDE. The Problem is, that I dont have any Internet access on this machine. My other Plugins like SonarLint, MoreUnit I installed via zip archive available on official sites or github.
Install New Software -> add archive.
I cant find any zip archives for Spring Boot Tools 4. Is there a way to get it or another way to install that plugin offline?
I tried to download and install everything on another machine and copy it, but its forbidden to connect bigger usb drives to the machine. For the plugin itsef it will be ok.
Here is the archived update site for STS 4.4.2 for Eclipse 2019-09:
https://dist.springsource.com/release/TOOLS/sts4/update/4.4.2.RELEASE/e4.13/sts4-4.4.2.RELEASE-e4.13.0-updatesite.zip
It contains all the STS4 pieces and a bunch of additional plugins from Eclipse, we haven't really tested a full offline installation using purely this update site. Usually the install procedure contains other update sites while installing a feature in order to find missing dependencies. So in case you don't have internet access and the STS4 install requires a dependency that usually comes from the main Eclipse p2 repo, you might run into this. In that case, please open a bug at https://github.com/spring-projects/sts4/issues and we will fix that.
Hope this helps!

Pentaho Marketplace Install Saiku Chart Plus Plugin Failed

I currently have Pentaho 5.0.1-stable Bi server. I already installed:
Community Dashboards Framework,
Community Data Access,Community Dashboard Editor,
Community Graphics Generator,
Saiku Analytics.
But I also need to install Saiku Chart Plus Plugin. But I cannot download it.
Here is what the log says:
I noticed the errors says that the Plugin did not contain ID.
Please help on installing the plugin. Thanks!
Check the downloaded ZIP file - it usually means that the Marketplace got some kind of redirect response and ZIP contains html file with an address to plugin.
When you download zipped plugin, extract it in /pentaho-solutions/system folder and restart the server

Error when importing Grinder to Eclipse: No marketplace entries found to handle clojure-maven-plugin

I want to import the Grinder(java load testing tool)into eclipse as a new project.
These are my environment:
Win7 64bit
JDK 1.6 32bit
eclipse-java-luna-SR2-win32
These are my steps:
Eclipse--import from git uri ,I used the git link that provided by official
Eclipse--File--Import--Maven--Existing Maven Projects,I use the directory which contain the source files that just downloaded by git
Then Eclipse started to build and handle the dependency,when the process is over,Eclipse gave the error info:
” No marketplace entries found to handle clojure-maven-plugin:1.3.15”
I don’t modify the pom file ,and use the default maven plugin of Eclipse:m2e.I don’t install the maven and other library.
I try to delete “C:\Users\g.m2\repository”,and redo these steps ,however,it doesn't work.
Plz help me,thanks!
Not sure what is the purpose. Are you planning to develop/enhance the grinder tool. If yes, then probably you should connect to its developers in the grinder site.
And if you are planning to use the tool and trying to configure eclipse for the scripting purpose, your should try Grinderstone. Note that it is outdated and works only with the specific version of software. Otherway, you can use pydev in the eclispe for scripting but you can't run there.
Hope it helps..

How do I set up derby in eclipse on Ubuntu?

The question basically says it all. I'm trying setup up JavaDB on my virtualbox running Ubuntu 9.10.
I have the package downloaded and installed through the package manager, which I believe is the right to go about it. I have also installed the Eclipse's Data Platform Tools. I've been following this tutorial here: http://www.vogella.de/articles/EclipseDataToolsPlatform/article.html.
I'm stuck at the driver definition step. When I select the driver template from the Name/Type tab and the jar file in the Jar List tab, the OK button is never enabled. At the top of the New Driver Definition dialog it says 'Unable to locate Jar/zip in the file system as specified by the driver definition: derby.jar.' I assume this is the problem. Any help or links to a better tutorial would be much appreciated.
I think my problem was that I had forgotten to initially install derby as an eclipse plugin. I should have thought of this earlier, but Apache actually has a good tutorial for installing derby, integrating it with eclipse and building a sample project.
The link is here: http://db.apache.org/derby/integrate/derby_plugin.html.
Download the latest Derby version from the Apache website http://db.apache.org/derby/. Choose the binary distribution. Unzip the file to the Eclipse installation directory. The zip file will unpack to create a new subdirectory under the plugins directory of the Eclipse installation.
Source: http://db.apache.org/derby/integrate/derby_plugin.html#Install
You can also add a folder "lib" to your project then copy the file derby.jar from your Derby download into this folder.
Derby tutorial: http://www.vogella.com/articles/EclipseDataToolsPlatform/article.html

How to install a custom plug-in in Eclipse Ganymede?

We have a custom plug-in. That is, the company where I'm working developed it in house.
I would like to install it as an available plug-in in Eclipse Ganymede. How do I do that?
From what I can figure out, the Eclipse software install only supports installation from Eclipse software update sites.
I went to Help -> Install New Software... -> Add -> Local...
to browse to a folder containing the plug-in. Although the dialog lets me add the directory as an update site, it doesn't work. It expects that directory to be a local Eclipse update site (I think). I get the error
No repository found at file:/G:/TOOLS/...
Next I just copied the plug-in into the plug-in directory under my Eclipse installation. That didn't work either. I also tried copying it into the dropins directory. No dice.
Can anyone enlighten me how to install a plug-in that's not on an "update" site?
Thanks in advance....
Usually an Eclipse plug-in packaged as zip file is install by extracting it into the Eclipse installation directory (or the plugins directory depending on how it is packaged, as it can also extract files in features directory).
Next restart Eclipse with the --clean option.
Did you check the Eclipse error log? Maybe the bundle is failing to deploy for some reason.
Otherwise, create a Feature and Update Site for your plugin as described here. An update site can either be a remote http server (SVN even), or a local directory. The nice thing is that you'll get versioning and the ability to upgrade and uninstall from inside Eclipse. It also makes things easier once your plugin grows into several plugins because they can be bundled together into a single, versioned feature.