I'm working with cassandra + spark + spark-sql. I'n not using Hive. I'd like to create my custom aggregation function, like:
select percentile(column, 0.95) from cassandra_table
spark-sql support avg(), min(), etc.: I want to implement others like percentile, but I cannot find documentation on this.
Can someone point me to to any doc or class to start with?
Thanks!