I'm currently working on accessing HBase using python3. The way I'm doing is using py4j to call JAVA APIs that I'm writing to access HBase.
I've a question related to creating a Put object which takes a qualifier and value.
I want to pass a dictionary to a JAVA class which expects a hashmap. Is it possible through py4j.
I don't want to call Put for every column qualifier iteratively. I want to pass the dict to py4j and it should be received as HashMap on JAVA side.
Could you please some hints/pointers to how can this be done...