Skip to content

Instantly share code, notes, and snippets.

@sritchie
Created February 5, 2011 04:56
Show Gist options
  • Select an option

  • Save sritchie/812216 to your computer and use it in GitHub Desktop.

Select an option

Save sritchie/812216 to your computer and use it in GitHub Desktop.
<!-- 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>
@sritchie
Copy link
Copy Markdown
Author

sritchie commented Feb 5, 2011

(The values don't support whitespace.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment