In order to increase the amount of positive feedback that we get from our communities we are introducing a version checker.
For information on the benefits to the community and to the software of a version checker please read The Case For Positive Feedback
The Pre-Configured Installation (PCI) will be the first package that will include the version checker. Our plan is to add the version checker to the design tools and ETL, OLAP and Reporting engines in upcoming releases.
This is our charter for our version checker:
The version checker can be disabled using the standard configuration system:
The version checker can be removed entirely from the software without causing any degradation of any kind.
The data collected through the version checker will never be used to discriminate against any group, individual, or field of endeavor.
The data sent by the version checker to our server is described below.
The purpose of the version checker is to help focus the efforts of the community on the latest version of the software. This increases the number of contributions that are submitted and helps improve the functionality and stability of the software.
The data from the version checker will provide us with more accurate data during the release cycle when estimating how many people are using the software and how hardened the new features are.
In addition data from the version checker will help us to plan and prioritize platform certifications, testing plans, and localization plans.
The source code for the version checker is available via an http interface into our subversion source code repository. Use these links to view the packages and code:
The source code that integrates the version checker into the Bi platform can be viewed using these links:
The data collected through the version checker will not be used in a manner that violates Pentaho's privacy policy.
The BI Platform Version Checker is a scheduled quartz job that determines if a new version of the platform is available, and if so, writes information to the BI Server log notifying the system administrator. The Version Checker is configured in the pentaho-solutions/system/pentaho.xml as a System Listener:
<version-checker>org.pentaho.plugin.versionchecker.VersionCheckSystemListener</version-checker> |
Also in the pentaho.xml file are version checker configuration items:
<version-check-config> <!-- defines how often --> <repeat-interval-seconds>86400</repeat-interval-seconds> <!-- valid release flags include: Major, Minor, RC, GA, Milestone --> <release-flags>Minor, GA</release-flags> <!-- set to "true" to disable the version checker --> <disable>false</disable> </version-check-config> |
The version check system listener makes calls to the pentaho-commons jar file pentaho-versionchecker.jar. This jar file makes an http request to a webservice at pentaho.com which returns a list of available updates based on the release-flags and your operating system, determined by the java system property "os.name". To avoid repeated update notifications, a properties file is created in the user's home directory under .pentaho/.vercheck, which contains a unique identifier and a list of updates that have already been detected and logged.
The webservice call to pentaho is simply an HTTP GET request with the following GET parameters:
Here is an example parameter string that is sent to the server:
?protocolVer=1.0&depth=152&vi=1142fca564f52589b9bc1b7be48c6321&guid=3b24b273-654d-11dc-9441-d1cf5202d758&prodID=POBS&version=1.6.0.RC3.831 |
There are varying degrees of removing the version checker from the platform: