AEM Forms submit to HBase | Community
Skip to main content
patrick_corriga
September 26, 2016
Solved

AEM Forms submit to HBase

  • September 26, 2016
  • 1 reply
  • 1183 views

Has anyone used AEM Forms to submit the XML from the form to HBase via the HBase APIs on the submit action?

 

If so any advice on how to do this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ifconfig

Hi Patrick,

I am  not sure if anyone is using  HBase specifically as their data store. IMO essentially what you can leverage is the client SDK which Hbase provides which is available for languages like java, scala etc and integrate the same with AEM. 

You can write a custom submit action which would make a connection to HBase the write the payload there.  If you want to make the solution more generic,  you can create a bundle for CRUD operations  for a given Hbase table.  The submit action invokes some service from this bundle and performs the action of ingesting data.

Please have a look at https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/package-summary.html or google Hbase client java to get some examples. 

1 reply

ifconfigAdobe EmployeeAccepted solution
Adobe Employee
September 26, 2016

Hi Patrick,

I am  not sure if anyone is using  HBase specifically as their data store. IMO essentially what you can leverage is the client SDK which Hbase provides which is available for languages like java, scala etc and integrate the same with AEM. 

You can write a custom submit action which would make a connection to HBase the write the payload there.  If you want to make the solution more generic,  you can create a bundle for CRUD operations  for a given Hbase table.  The submit action invokes some service from this bundle and performs the action of ingesting data.

Please have a look at https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/package-summary.html or google Hbase client java to get some examples.