I am reading a HBase table via Phoenix in spark-scala, I am able to read a column without a peroid/dot(.)
But when I try to read a column with dot ex: column name "first.name", it throws below error. but I can read data from phoenix shell without issues.
How can I read HBase table in spark via phoenix with column name having "dot" i.e. first.name, last.name etc
Error: Exception in thread "main" org.apache.phoenix.schema.ColumnFamilyNotFoundException: ERROR 1001 (42I01): Undefined column family. familyName=xyz
Any help is greatly appreciated.
Thanks!