Skip to content

Commit 3cfd44d

Browse files
committed
v0.35.79
1 parent 80101ac commit 3cfd44d

File tree

2 files changed

+36
-6
lines changed

2 files changed

+36
-6
lines changed

packages/cubejs-pinot-driver/README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,40 @@
77

88
# Cube.js Pinot Database Driver
99

10-
Pure Javascript Presto driver.
10+
Cube.js Pinot driver.
1111

1212
[Learn more](https://github.com/cube-js/cube.js#getting-started)
1313

14+
### Project Status
15+
16+
Project is WIP
17+
18+
### Installation
19+
20+
`npm i @inthememory/pinot-driver`
21+
22+
### Usage
23+
#### For Docker
24+
25+
Build development [docker image](https://github.com/cube-js/cube/blob/master/packages/cubejs-docker/DEVELOPMENT.md).
26+
27+
Assuming the built image is tagged `cubejs/cube:dev`
28+
29+
```
30+
FROM cubejs/cube:dev
31+
RUN npm i @inthememory/pinot-driver
32+
```
33+
34+
```
35+
environment:
36+
- CUBEJS_DB_TYPE=pinot
37+
- CUBEJS_DB_HOST= #broker_host
38+
- CUBEJS_DB_PORT= #broker_port
39+
- CUBEJS_DB_USER= #database user
40+
- CUBEJS_DB_PASS= #database password
41+
- CUBEJS_DEV_MODE=true #if running locally
42+
```
43+
1444
### License
1545

16-
Cube.js Pinot Database Driver is [Apache 2.0 licensed](./LICENSE).
46+
Cube.js Pinot Database Driver is [Apache 2.0 licensed](./LICENSE).

packages/cubejs-pinot-driver/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@inthememory/pinot-driver",
33
"description": "Cube.js Pinot database driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.35.78",
5+
"version": "0.35.79",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -28,11 +28,11 @@
2828
},
2929
"dependencies": {
3030
"@cubejs-backend/base-driver": "^0.35.67",
31-
"@cubejs-backend/shared": "^0.35.67",
3231
"@cubejs-backend/schema-compiler": "^0.35.78",
32+
"@cubejs-backend/shared": "^0.35.67",
33+
"node-fetch": "^2.6.1",
3334
"ramda": "^0.27.0",
34-
"sqlstring": "^2.3.1",
35-
"node-fetch": "^2.6.1"
35+
"sqlstring": "^2.3.1"
3636
},
3737
"license": "Apache-2.0",
3838
"publishConfig": {

0 commit comments

Comments
 (0)