How to access Aerospike Set from Hive Query

Hi,

I’m able to read aerospike set using spark-sql and I’m looking a similar way to read from Hive QL. Can you please let me know how to do it?

Spark-sql Working:

CREATE TEMPORARY TABLE aero USING com.aerospike.spark.sql OPTIONS ( “aerospike.seedhost”=“10.180.16.255”, “aerospike.port”=“3000”, “aerospike.namespace”=“test”, “aerospike.set”=“one_million”);

SELECT column1, column2, intcolumn1 FROM aero;

HiveQL:

??

Please let me know.

Thanks Prabhu