Package

unicorn

bigtable

Permalink

package bigtable

Visibility
  1. Public
  2. All

Type Members

  1. trait Appendable extends AnyRef

    Permalink

    If BigTable supports appending to a cell.

  2. trait BigTable extends AutoCloseable

    Permalink

    Abstraction of wide columnar data table.

  3. case class Cell(row: ByteArray, family: String, qualifier: ByteArray, value: ByteArray, timestamp: Long = 0) extends Product with Serializable

    Permalink

    Cell in wide columnar table

  4. case class CellKey(row: ByteArray, family: String, qualifier: ByteArray, timestamp: Long) extends Product with Serializable

    Permalink

    Key of Cell

  5. trait CellLevelSecurity extends AnyRef

    Permalink

    If BigTable supports cell level security.

  6. trait CheckAndPut extends AnyRef

    Permalink

    Check and put.

    Check and put. Put a row only if the given column doesn't exist.

  7. case class Column(qualifier: ByteArray, value: ByteArray, timestamp: Long = 0) extends Product with Serializable

    Permalink

    A column of a column family

  8. case class ColumnFamily(family: String, columns: Seq[Column]) extends Product with Serializable

    Permalink

    A column family

  9. trait Counter extends AnyRef

    Permalink

    If BigTable supports counter data type.

  10. trait Database[+T <: BigTable] extends AutoCloseable

    Permalink

    A BigTable database.

  11. trait FilterScan extends RowScan

    Permalink

    If BigTable supports filter.

  12. trait IntraRowScan extends AnyRef

    Permalink

    If BigTable supports intra-row scan.

  13. trait IntraRowScanner extends Iterator[Column]

    Permalink

    Intra-row scan iterator

  14. trait Rollback extends AnyRef

    Permalink

    If BigTable supports rollback to previous version of a cell.

  15. case class Row(key: ByteArray, families: Seq[ColumnFamily]) extends Product with Serializable

    Permalink

    A Row

  16. trait RowScan extends AnyRef

    Permalink

    If BigTable supports row scan.

  17. trait RowScanner extends Iterator[Row]

    Permalink

    Row scan iterator

  18. trait TimeTravel extends AnyRef

    Permalink

    Get a row at a given time point.

Value Members

  1. object ScanFilter

    Permalink

Ungrouped