US and Worldwide: +1 (866) 660-7555
+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 17

Thread: Pentaho Data Integration 3.1.0 is Generally Available

  1. #1
    Join Date
    Nov 1999
    Posts
    7,251

    Lightbulb Pentaho Data Integration 3.1.0 is Generally Available

    Dear Kettle friends,

    It's a pleasure and a privilege to be able to announce version 3.1.0 of Pentaho Data Integration (Kettle) on behalf of the complete development team and indeed our entire community.
    Many things have changed, take a look at the What's new in 3.1. overview

    Here are the packages for your downloading and usage pleasure:As you can see from the download list, we have ported our documentation over to the Pentaho Wiki. This will help us to keep the documentation set up to date and also will make it easier to interact with our community (you!) more easily.
    The micro-detailed change-logs are here in JIRA:In short : an impressive 562 bugs, improvements and feature requests got resolved or implemented.

    As a reminder, you still need version 1.5 of the Java Runtime Environment.

    We hope you will find PDI useful and as always we look forward to your feedback.

    Kind regards,

    Matt

    Last edited by MattCasters; 09-30-2008 at 03:26 PM.
    Matt Casters, Chief Data Integration
    Pentaho, Open Source Business Intelligence
    http://www.pentaho.org -- mcasters@pentaho.org

    Author of the upcoming book Pentaho Kettle Solutions by Wiley. Release date: mid-September 2010.

    Join us on IRC server Freenode.net, channel ##pentaho

  2. #2
    Join Date
    Jan 2007
    Posts
    945

    Default

    Hurray! Congrats! 3.1 is a tremendous advance in the world of Kettle.

    Only 562 fixes? Man it seems like we worked on a thousand of them.

  3. #3
    Join Date
    Nov 1999
    Posts
    7,251

    Default

    Some of those items were pretty big like "Refactor the UI" etc :-)
    Matt Casters, Chief Data Integration
    Pentaho, Open Source Business Intelligence
    http://www.pentaho.org -- mcasters@pentaho.org

    Author of the upcoming book Pentaho Kettle Solutions by Wiley. Release date: mid-September 2010.

    Join us on IRC server Freenode.net, channel ##pentaho

  4. #4

    Thumbs up

    Well done Matt & the team, good effort !

    Paul

  5. #5
    Join Date
    Sep 2008
    Posts
    16

    Default

    Great!
    I'll give it a try asap.

  6. #6
    Join Date
    Mar 2007
    Posts
    24

    Default

    Really great! I especially like the checkum step Who came up with the idea? I needed something like that. I did find a workaround already, but that is no longer
    needed anymore.

    For those still interested in a workaround, using the Modified Java Script step:

    var checksum;
    var engine;
    var buffer;
    var input;

    checksum = 0;
    engine = new java.util.zip.CRC32();
    input = new java.lang.String(CRCSTRING); // CRCSTRING is an input field containing all fields that need to be in to checksum, concatenated as a string
    buffer = input.getBytes();

    engine.update(buffer, 0, buffer.length);
    checksum = engine.getValue();
    engine.reset();

  7. #7
    Join Date
    Nov 1999
    Posts
    7,251

    Default

    Samatar Hassan (a.k.a. The Step Factory) wrote it.
    Matt Casters, Chief Data Integration
    Pentaho, Open Source Business Intelligence
    http://www.pentaho.org -- mcasters@pentaho.org

    Author of the upcoming book Pentaho Kettle Solutions by Wiley. Release date: mid-September 2010.

    Join us on IRC server Freenode.net, channel ##pentaho

  8. #8
    Join Date
    May 2007
    Posts
    103

    Default

    Just installed 3.1 - looks great. The UI is much improved - SQL color coding on Table Input is a nice addition as well.

    Good job!

  9. #9
    Join Date
    Nov 1999
    Posts
    7,251

    Default

    Good point, we should probably add that to the "What's new" page. Then again, there is so much it becomes hard to list it all.
    Thanks,
    Matt
    Matt Casters, Chief Data Integration
    Pentaho, Open Source Business Intelligence
    http://www.pentaho.org -- mcasters@pentaho.org

    Author of the upcoming book Pentaho Kettle Solutions by Wiley. Release date: mid-September 2010.

    Join us on IRC server Freenode.net, channel ##pentaho

  10. #10
    Join Date
    Jun 2007
    Posts
    194

    Default Holy cow!

    This is a fantastic leap forward. I am deeply impressed. PDI has really taken a practical and visual step forward as well as usability. The data validation step is really a boon. Brilliant stuff.

    Many many thanks

    The Frog
    Everything should be made as simple as possible, but not simpler - Albert Einstein

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts