Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HBaseDirectOutputStorageDriver

Diagram

<img src="%ATTACHURLPATH%/HCaOutputStorageDriver.jpg" alt="HCaOutputStorageDriver.jpg" width='791' height='961' />

Image Added

Discussion

As one of the requirements for batch loading data onto HBase all revision must be written with the same revision number to uniquely identify each batch update. Thus we have to add a new field to
OutputJobInfo which allows us to pass implementation specific parameters to the underlying storage driver.

Code Block
titleOutputJobInfo.java
  
  private Map<String,String> properties;

  /**
   * Set/Get Property information to be passed down to *StorageDriver implementation
   * put implementation specific storage driver configurations here
   * @return
   */
  public Map<String,String> getProperties() {
    return properties;
  }

...