Skip to content

Releases: flipkart-incubator/hbase-orm

v1.3

11 Jun 09:31
Compare
Choose a tag to compare
  • [Enhancement] Provide your own "codec" for customizing serialization and deserialization (for backward compatibility, default codec will be Jackson)
  • [Enhancement] Migrated to Hadoop v2.6 and HBase v0.98 (corresponding to Hortonworks Data Platform v2.2). Migrated getRow() and other methods to CellUtil methods
  • [Improvement] Map of references to methods of HBase's Bytes class now maintained in a static fields instead of instance ones
  • [Improvement] Improved test case coverage. Current status: branch coverage=83%, line coverage=85%
  • [Improvement] Improved Javadoc and examples in README
  • [Change] Handled bean-like objects and their fields as Serializable instead of Object
  • [Change] Renamed fetchFieldValuesVersioned methods to fetchFieldValues for consistency (as another overloaded method)

v1.2

12 Apr 14:34
Compare
Choose a tag to compare
  • Multi-version support for both 'object mapping' and 'data access object' use cases [MAJOR]
  • Extended exception handling
  • Extended test cases. Test coverage: 86% (line coverage), 88% (method coverage)
  • Additional way of test execution: An actual (local) HBase cluster

v1.1

05 Jun 12:04
Compare
Choose a tag to compare
  • Handle nested/complex data types (like array, custom classes etc)
  • Range scan for rows
    • fetch entire records
    • fetch single column
  • Improved null handling, improved test cases

v1.0.4

16 May 17:04
Compare
Choose a tag to compare
  • Feature to delete row (by key, by object reference)
  • Feature to fetch column by field name
  • Better class validation
  • Better test coverage and improved exception handling

v1.0.3

02 May 13:08
Compare
Choose a tag to compare
  • Constructor doesn't need braces now
  • Sample code snippets and API signatures
  • Made project releasable in OSSRH (Added project name, project URL and scm url etc)

v1.0.2

05 Jun 12:00
Compare
Choose a tag to compare
  • Map/Reduce test cases
  • Improved Javadoc

v1.0.1

05 Jun 11:59
Compare
Choose a tag to compare

Better test cases. Refactoring. Shell script to push to Flipkart's artifactory

v1.0

16 May 16:54
Compare
Choose a tag to compare

First cut of HBase Object Mapper.

Features:

  • Maps an object with HBase row and vice-versa
  • DAO to fetch row(s) from HBase table