Skip to content

Commit d30af03

Browse files
committed
set version as 0.0.3
1 parent a3d08c5 commit d30af03

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you are about to use metabase for the first time, install the proper JVM and
1111
2. You'll need to provide the Host/Port. Default localhost and 8123 just work.
1212

1313
## Run Query
14-
Please note, by default Proton's query behavior is streaming SQL, looking for new data in the future and never ends. This can be considered as hang for Metabase. So please use `select .. from .. LIMIT 100` to stop the query at 100 events. Or use a historical query, such as `select .. from table(car_live_data)..`
14+
Please note, with port 8123, by default Proton's query behavior is batch SQL, looking for the past data.
1515

1616
## Build from source
1717
The build process is largely based on https://github.com/databendcloud/metabase-databend-driver. (IMHO, Leiningen provides much better compiling error message than the built-in `clojure -X:build:drivers:build/driver`)
@@ -51,13 +51,13 @@ The build process is largely based on https://github.com/databendcloud/metabase-
5151
mvn deploy:deploy-file -Durl=file:repo -DgroupId=metabase-core -DartifactId=metabase-core -Dversion=1.40 -Dpackaging=jar -Dfile=metabase.jar
5252
```
5353

54-
4. Build the jar
54+
4. Build the jar (key steps to compile *.clj source code)
5555

5656
```shell
5757
LEIN_SNAPSHOTS_IN_RELEASE=true DEBUG=1 lein uberjar
5858
```
5959

60-
5. Let's assume we download `metabase.jar` from the [Metabase jar](https://www.metabase.com/docs/latest/operations-guide/running-the-metabase-jar-file.html) to `~/metabase/` and we built the project above. Copy the built jar(proton.metabase-driver.jar) to the Metabase plugins folder and run Metabase from there!
60+
5. Let's assume we download `metabase.jar` from the [Metabase jar](https://www.metabase.com/docs/latest/operations-guide/running-the-metabase-jar-file.html) to `~/metabase/` and we built the project above. Copy the built jar(target/uberjar/proton.metabase-driver.jar) to the Metabase plugins folder and run Metabase from there!
6161

6262
```shell
6363
cd ~/metabase/

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>metabase</groupId>
55
<artifactId>proton-driver</artifactId>
66
<packaging>jar</packaging>
7-
<version>0.0.2</version>
7+
<version>0.0.3</version>
88
<name>proton-driver</name>
99
<description>Timeplus Proton driver for Metabase</description>
1010
<url>http://github.com/timeplus-io/metabase-proton-driver</url>

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metabase/proton-driver "0.0.2"
1+
(defproject metabase/proton-driver "0.0.3"
22
:description "Timeplus Proton driver for Metabase"
33
:license "Apache License 2.0"
44
:url "http://github.com/timeplus-io/metabase-proton-driver"

resources/metabase-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
info:
22
name: Metabase Proton Driver
3-
version: 0.0.2
3+
version: 0.0.3
44
description: Allows Metabase to connect to Timeplus Proton databases
55
contact-info:
66
name: Jove Zhong

0 commit comments

Comments
 (0)