Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bzzt/bigtable
Elixir client library for Google Bigtable
https://github.com/bzzt/bigtable
bigtable elixir gcp google google-bigtable googlecloud googlecloudplatform grpc rpc
Last synced: 3 months ago
JSON representation
Elixir client library for Google Bigtable
- Host: GitHub
- URL: https://github.com/bzzt/bigtable
- Owner: bzzt
- License: mit
- Created: 2019-01-09T14:38:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T08:53:24.000Z (almost 2 years ago)
- Last Synced: 2024-10-08T15:38:16.627Z (4 months ago)
- Topics: bigtable, elixir, gcp, google, google-bigtable, googlecloud, googlecloudplatform, grpc, rpc
- Language: Elixir
- Homepage:
- Size: 324 KB
- Stars: 17
- Watchers: 4
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bigtable
Elixir client library for Google Bigtable.
[![Hex.pm](https://img.shields.io/hexpm/v/bigtable.svg)](https://hex.pm/packages/bigtable)
[![Build Status](https://travis-ci.org/bzzt/bigtable.svg?branch=master)](https://travis-ci.org/bzzt/bigtable)
[![codecov](https://codecov.io/gh/bzzt/bigtable/branch/master/graph/badge.svg)](https://codecov.io/gh/bzzt/bigtable)
[![codebeat badge](https://codebeat.co/badges/6203650d-db88-4c48-9173-948cc3404145)](https://codebeat.co/projects/github-com-bzzt-bigtable-master)
[![Built with Spacemacs](https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg)](http://spacemacs.org)## Documentation
Documentation available at https://hexdocs.pm/bigtable/
## Installation
The package can be installed as:
```elixir
def deps do
[{:bigtable, "~> 0.7.0"}]
end
```## Warning!
**WORK IN PROGRESS. DOCUMENTATION MAY BE INCORRECT. DO NOT USE IN PRODUCTION.**
## Feature List
### Data API
#### Operations:
- [x] Check And Mutate Row
- [x] Mutate Row
- [x] Mutate Rows
- [x] Read Modify Write Row
- [x] Read Rows
- [x] Sample Row Keys#### Mutations:
- [x] Delete From Column
- [x] Delete From Family
- [x] Delete From Row
- [x] Set Cell#### Row Sets:
- [x] Row Keys
- [x] Row Ranges#### Row Filters:
- [x] Block All
- [x] Cells Per Column Limit
- [x] Cells Per Row Limit
- [x] Cells Per Row Offset
- [x] Chain
- [x] Column Qualifier Regex
- [x] Column Range
- [x] Family Name Regex
- [x] Pass All
- [x] Row Key Regex
- [x] Strip Value Transformer
- [x] Timestamp Range
- [x] Value Regex
- [ ] Apply Label Transformer
- [ ] Condition
- [ ] Interleave
- [ ] Row Sample
- [ ] Value Range### Admin API
#### Table Admin
- [x] Create Table
- [x] Delete Table
- [x] Get Table
- [x] List Tables
- [ ] Check Consistency
- [ ] Drop Row Range
- [ ] Generate Consistency Token
- [ ] Modify Column Families