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: 6 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T08:53:24.000Z (about 2 years ago)
- Last Synced: 2024-10-08T15:38:16.627Z (7 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.
[](https://hex.pm/packages/bigtable)
[](https://travis-ci.org/bzzt/bigtable)
[](https://codecov.io/gh/bzzt/bigtable)
[](https://codebeat.co/projects/github-com-bzzt-bigtable-master)
[](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