I am successfully saving a complex object (scala.Vector[(Int, Double)]) in an HBase table column by means of serializing it to a byte array (scala.Array[Byte]) with Kryo (com.twitter.chill.KryoInjection).
Now I would like to query this data with Apache Drill and convert it from the serialized byte array to something human readable.
I imagined I would somehow "register" my own converter with Apache Drill and provide it to drill query.
Unfortunately I was unable to find any information on if and how it is possible to accomplish.