Created
February 5, 2011 04:56
-
-
Save sritchie/812216 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- this one fails. --> | |
| <?xml version="1.0"?> | |
| <!-- core-site.xml --> | |
| <configuration> | |
| <property> | |
| <name>io.serializations</name> | |
| <value>cascading.tuple.hadoop.BytesSerialization</value> | |
| </property> | |
| </configuration> | |
| <!-- this one works! --> | |
| <?xml version="1.0"?> | |
| <!-- core-site.xml --> | |
| <configuration> | |
| <property> | |
| <name>io.serializations</name> | |
| <value>cascading.tuple.hadoop.BytesSerialization,cascading.tuple.hadoop.TupleSerialization,org.apache.hadoop.io.serializer.WritableSerialization</value> | |
| </property> | |
| </configuration> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(The values don't support whitespace.)