brianmhess / cassandra-loader

Delimited file loader for Cassandra
Apache License 2.0
197 stars 93 forks source link

unloading a columnfamily containing blob column yields stringified HeapByteBuffer object #15

Closed GooseYArd closed 9 years ago

GooseYArd commented 9 years ago

When dumping a table having a blob column, I noticed that the column in the output corresponding to the blob contains values like:

"java.nio.HeapByteBuffer[pos=0 lim=6211 cap=6211]"

rather than the content of the blob. Is it possible to have the unloader include the actual blob bytes? I'm guessing I may need to invoke the tool differently, but didn't see anything obvious in the docs.

Thanks btw, this tool is a lifesaver!

brianmhess commented 9 years ago

How about BLOBs being Base64 encoded? That is what I'm checking in for 0.0.16 (to be seen soon :) )

GooseYArd commented 9 years ago

That would be perfect

brianmhess commented 9 years ago

Try v0.0.16 :-)