Skip to content

Commit 600c0b7

Browse files
committed
timeplusing, take 3
1 parent eae8bc0 commit 600c0b7

File tree

1 file changed

+19
-23
lines changed

1 file changed

+19
-23
lines changed

README.md

+19-23
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
1-
ClickHouse Native JDBC
1+
Timeplus Native JDBC
22
===
33

4-
[![Build Status](https://github.com/housepower/ClickHouse-Native-JDBC/workflows/build/badge.svg?branch=master)](https://github.com/housepower/ClickHouse-Native-JDBC/actions?query=workflow%3Abuild+branch%3Amaster)
5-
[![codecov.io](https://codecov.io/github/housepower/ClickHouse-Native-JDBC/coverage.svg?branch=master)](https://codecov.io/github/housepower/ClickHouse-Native-JDBC?branch=master)
6-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.housepower/clickhouse-native-jdbc-parent/badge.svg)](https://search.maven.org/search?q=com.github.housepower)
7-
[![Total alerts](https://img.shields.io/lgtm/alerts/g/housepower/ClickHouse-Native-JDBC.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/housepower/ClickHouse-Native-JDBC/alerts/)
8-
[![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/housepower/ClickHouse-Native-JDBC.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/housepower/ClickHouse-Native-JDBC/context:java)
9-
[![License](https://img.shields.io/github/license/housepower/ClickHouse-Native-JDBC)](https://github.com/housepower/ClickHouse-Native-JDBC/blob/master/LICENSE)
4+
[![Build Status](https://github.com/timeplus-io/timeplus-native-jdbc/workflows/build/badge.svg?branch=master)](https://github.com/timeplus-io/timeplus-native-jdbc/actions?query=workflow%3Abuild+branch%3Amaster)
5+
[![codecov.io](https://codecov.io/github/timeplus-io/timepllus-native-jdbc/coverage.svg?branch=master)](https://codecov.io/github/timeplus-io/timeplus-native-jdbc?branch=master)
6+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.timeplus-io/timeplus-native-jdbc-parent/badge.svg)](https://search.maven.org/search?q=com.github.timeplus)
7+
[![Total alerts](https://img.shields.io/lgtm/alerts/g/timeplus-io/timeplus-native-jdbc.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/timeplus-io/timeplus-native-jdbc/alerts/)
8+
[![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/timeplus-io/timeplus-native-jdbc.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/timeplus-io/timeplus-native-jdbc/context:java)
9+
[![License](https://img.shields.io/github/license/timeplus-io/timeplus-native-jdbc)](https://github.com/timeplus-io/timeplus-native-jdbc/blob/master/LICENSE)
1010

1111
English | [简体中文](README_zh.md)
1212

13-
## [Home Page](https://housepower.github.io/ClickHouse-Native-JDBC/) | [GitHub](https://github.com/housepower/ClickHouse-Native-JDBC) | [Gitee](https://gitee.com/housepower/ClickHouse-Native-JDBC)
13+
## [Home Page](https://timeplus.github.io/timeplus-native-jdbc/) | [GitHub](https://github.com/timeplus-io/timeplus-native-jdbc) | [Gitee](https://gitee.com/timeplus-io/timeplus-native-jdbc)
1414

15-
A Native JDBC library for accessing [ClickHouse](https://clickhouse.yandex/) in Java, also provide a library for
15+
A Native JDBC library for accessing [Timeplus](https://timeplus.com/) in Java, also provide a library for
1616
integrating with [Apache Spark](https://github.com/apache/spark/).
1717

1818
## CONTRIBUTE
1919

2020
We welcome anyone that wants to help out in any way, whether that includes reporting problems, helping with documentations, or contributing code changes to fix bugs, add tests, or implement new features. Please follow [Contributing Guide](CONTRIBUTE.md).
2121

22-
Supported by [JetBrains Open Source License](https://www.jetbrains.com/?from=ClickHouse-Native-JDBC) 2020-2021.
23-
2422
## JDBC Driver
2523

2624
### Requirements
@@ -29,8 +27,6 @@ Supported by [JetBrains Open Source License](https://www.jetbrains.com/?from=Cli
2927

3028
**Notes:** We only do test with Java LTS versions.
3129

32-
### Differences from [yandex/clickhouse-jdbc](https://github.com/yandex/clickhouse-jdbc)
33-
3430
* Data is organized and compressed by columns.
3531
* Implemented in the TCP Protocol, with higher performance than HTTP, here is the [benchmark report](docs/dev/benchmark.md).
3632

@@ -45,10 +41,10 @@ Supported by [JetBrains Open Source License](https://www.jetbrains.com/?from=Cli
4541
- Gradle
4642
```groovy
4743
// (recommended) shaded version, available since 2.3-stable
48-
compile "com.github.housepower:clickhouse-native-jdbc-shaded:${clickhouse_native_jdbc_version}"
44+
compile "com.github.timeplus:timeplus-native-jdbc-shaded:${timeplus_native_jdbc_version}"
4945
5046
// normal version
51-
compile "com.github.housepower:clickhouse-native-jdbc:${clickhouse_native_jdbc_version}"
47+
compile "com.github.timeplus:timeplus-native-jdbc:${timeplus_native_jdbc_version}"
5248
```
5349

5450
- Maven
@@ -57,15 +53,15 @@ compile "com.github.housepower:clickhouse-native-jdbc:${clickhouse_native_jdbc_v
5753
<!-- (recommended) shaded version, available since 2.3-stable -->
5854
<dependency>
5955
<groupId>com.github.timeplus</groupId>
60-
<artifactId>clickhouse-native-jdbc-shaded</artifactId>
61-
<version>${clickhouse-native-jdbc.version}</version>
56+
<artifactId>timeplus-native-jdbc-shaded</artifactId>
57+
<version>${timeplus-native-jdbc.version}</version>
6258
</dependency>
6359

6460
<!-- normal version -->
6561
<dependency>
6662
<groupId>com.github.timeplus</groupId>
67-
<artifactId>clickhouse-native-jdbc</artifactId>
68-
<version>${clickhouse-native-jdbc.version}</version>
63+
<artifactId>timeplus-native-jdbc</artifactId>
64+
<version>${timeplus-native-jdbc.version}</version>
6965
</dependency>
7066
```
7167

@@ -76,7 +72,7 @@ compile "com.github.housepower:clickhouse-native-jdbc:${clickhouse_native_jdbc_v
7672
- Java 8, Scala 2.11/2.12, Spark 2.4
7773
- Or Java 8/11, Scala 2.12, Spark 3.0/3.1
7874

79-
For Spark 3.2, [Spark ClickHouse Connector](https://github.com/housepower/spark-clickhouse-connector) is recommended.
75+
For Spark 3.2, [Spark Timeplus Connector](https://github.com/timeplus-io/spark-timeplus-connector) is recommended.
8076

8177
**Notes:** Spark 2.3.x(EOL) should also work fine. Actually we do test on both Java 8 and Java 11,
8278
but Spark official support on Java 11 since 3.0.0.
@@ -87,7 +83,7 @@ but Spark official support on Java 11 since 3.0.0.
8783

8884
```groovy
8985
// available since 2.4.0
90-
compile "com.github.housepower:clickhouse-integration-spark_2.11:${clickhouse_native_jdbc_version}"
86+
compile "com.github.timeplus:timeplus-integration-spark_2.11:${timeplus_native_jdbc_version}"
9187
```
9288

9389
- Maven
@@ -96,8 +92,8 @@ compile "com.github.housepower:clickhouse-integration-spark_2.11:${clickhouse_na
9692
<!-- available since 2.4.0 -->
9793
<dependency>
9894
<groupId>com.github.timeplus</groupId>
99-
<artifactId>clickhouse-integration-spark_2.11</artifactId>
100-
<version>${clickhouse-native-jdbc.version}</version>
95+
<artifactId>timeplus-integration-spark_2.11</artifactId>
96+
<version>${timeplus-native-jdbc.version}</version>
10197
</dependency>
10298
```
10399

0 commit comments

Comments
 (0)