Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ Frames currently supports the following backend types:
<!-- [FRAMES-STREAMING-NO-SUPPORT]
-->
- `tsdb` &mdash; a time-series database (TSDB).
- `csv` &mdash; a comma-separated-value (CSV) file.
This backend type is used only for testing purposes.

<a id="client-methods"></a>
#### `Client` Methods
Expand Down Expand Up @@ -185,7 +183,7 @@ All client methods receive the following common parameters; additional, method-s

- **Type:** `str`
- **Requirement:** Required
- **Valid Values:** `"nosql"` | `"stream"` | `"tsdb"` | `"csv"` (for testing)
- **Valid Values:** `"nosql"` | `"stream"` | `"tsdb"`

- <a id="client-method-param-table"></a>**table** &mdash; The relative path to a data collection of the specified backend type in the target data container (as configured for the client object).
For example, `"mytable"` or `"/examples/tsdb/my_metrics"`.
Expand Down
1 change: 0 additions & 1 deletion _scripts/py_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
data = json.load(fp)

for bench in data['benchmarks']:
# test_read[http-csv]
match = re.match(r'test_(\w+)\[([a-z]+)', bench['name'])
if not match:
raise SystemExit('error: bad test name - {}'.format(bench['name']))
Expand Down
1 change: 0 additions & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import (
"github.com/v3io/frames"
"github.com/v3io/frames/backends"
// Load backends (make sure they register)
_ "github.com/v3io/frames/backends/csv"
_ "github.com/v3io/frames/backends/kv"
_ "github.com/v3io/frames/backends/stream"
_ "github.com/v3io/frames/backends/tsdb"
Expand Down
Loading