Cassandra and binary files

1.4k Views Asked by At

I'm working in a software files manager in Java with Cassandra DB. My database is working, and I did successfull queries using Kundera.

But now, I search for upload binary files (blob, or just files ?) in Cassandra. I tried this methods :

  • Create an var in my entity in type : File, but its not working.
  • Convert File into Byte[] and put an Byte[] in my entity but still not working, my Byte[] return is null !!

Do you have an idea for up small files in Cassandra database?

I hope my english is understandable...
Regards

2

There are 2 best solutions below

2
On BEST ANSWER

Please have a look at http://www.datastax.com/dev/blog/bulk-loading.

Not sure, but converting a file into byte[] may not work as you might need to open an byte stream to process it successfully.

0
On

byte[] as datatype is supported in Kundera post release 2.0.7. You can convert your file to byte[] and set to entity attribute just like premitives and wrappers. An example test case is here: https://github.com/impetus-opensource/Kundera/blob/trunk/kundera-tests/src/test/java/com/impetus/kundera/tests/file/dao/ProfilePictureDaoTest.java