...
- Start PDI on your desktop. Once it is running choose 'File' -> 'New' -> 'Transformation' from the menu system or click on the 'New file' icon on the toolbar and choose the 'Transformation' option.
Tip title Speed Tip You can download the Kettle Transform aggregate_mapper.ktr already completed
- Add a Map/Reduce Input Step: You are going to read data into the transformation from MapReduce, so expand the 'Big Data' section of the Design palette and drag a 'Map/Reduce Input' node onto the transformation canvas. Your transformation should look like:
- Edit the Map/Reduce Input Step: Double-click on the 'Map/Reduce Input' node to edit its properties. Enter this information:
- Key Field Type: Enter String
- Value Field Type: Enter String
When you are done your 'Map/Reduce Input' window should look like this:
Click 'OK' to close the window.
- Add a Split Fields Step: You need to split the incoming records on tab to get the individual fields in the record, so expand the 'Transform' section of the Design palette and drag a 'Split Fields' node onto the transformation canvas. Your transformation should look like:
- Connect the Input and Split Fields Steps: Hover the mouse over the 'Map/Reduce Input' node and a tooltip will appear.
Click on the output connector (the green arrow pointing to the right) and drag a connector arrow to the 'Split Fields' node. Your canvas should look like this:
- Edit the Split Fields Step: Double-click on the 'Split Fields' node to edit its properties. Enter this information:
- Field to split: Select 'value'
- Delimiter: Will be a tab character. In a text editing application press tab to create a tab. Copy and paste this into the 'Delimiter' parameter.Enter '$[09]' 09 is the hexadecimal representation of the ASCII tab character.
- Fields: The field list will be the following of with 'Type' set to 'String'
- client_ip
- full_request_date
- day
- month
- month_num
- year
- hour
- minute
- second
- timezone
- http_verb
- uri
- http_status_code
- bytes_returned
- referrer
- user_agent
When you are done your 'Map/Reduce Input' window should look like this:
Click 'OK' to close the window.
- Add a User Defined Java Expression Step: You need to concatenate the client_ip, year, and month together to create the key field, so expand the 'Scripting' section of the Design palette and drag a 'User Defined Java Expression' node onto the transformation canvas. Your transformation should look like:
- Connect the Split Fields and User Defined Java Expression Steps: Hover the mouse over the 'Split Fields' node and a tooltip will appear. Click on the output connector (the green arrow pointing to the right) and drag a connector arrow to the 'User Defined Java Expression' node. Your canvas should look like this:
- Edit the User Defined Java Expression Step: Double-click on the 'User Defined Java Expression' node to edit its properties. Do the following:
- Create a new field 'new_key' with Type 'String' and the following Java expression:
Note the characters between the '' are tabs. You will have to copy and paste tab characters into the Java Expression.Code Block client_ip + ' \t' + year + ' \t' + month_num
- Create a new field 'new_value' with Type 'Integer' and the Java expression '1'.
When you are done your window should look like:
Click 'OK' to close the window.
- Create a new field 'new_key' with Type 'String' and the following Java expression:
- Add a Map/Reduce Output Step: You need to write the new key and new value to the output, so expand the 'Big Data' section of the Design palette and drag a 'Map/Reduce Output' node onto the transformation canvas. Your transformation should look like:
- Connect the Java Expression and Output Steps: Hover the mouse over the 'User Defined Java Expression' node and a tooltip will appear. Click on the output connector (the green arrow pointing to the right) and drag a connector arrow to the 'Map/Reduce Output' node. Your canvas should look like this:
- Edit the Output Step: Double-click on the 'Map/Reduce Output' node to edit its properties. Enter the following information:
- Key field: Select 'new_key'
- Value field: Select 'new_value'
When you are done your window should look like:
Click 'OK' to close the window.
- Save the Transformation: Choose 'File' -> 'Save as...' from the menu system. Save the transformation as 'aggregate_mapper.ktr' into a folder of your choice.
...