You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,18 @@ Java libraries for connecting to ClickHouse and processing data in various forma
13
13
| API |[JDBC](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/)|:white_check_mark:||
14
14
||[R2DBC](https://r2dbc.io/)|:white_check_mark:| supported since 0.4.0 |
15
15
| Query Language | SQL |:white_check_mark:||
16
-
||[PRQL](https://prql-lang.org/)|:x:||
17
-
||[GraphQL](https://graphql.org/)|:x:||
16
+
||[PRQL](https://prql-lang.org/)|:x:|will be available in 0.4.2|
17
+
||[GraphQL](https://graphql.org/)|:x:|will be available in 0.4.2|
18
18
| Protocol |[HTTP](https://clickhouse.com/docs/en/interfaces/http/)|:white_check_mark:| recommended, defaults to `java.net.HttpURLConnection` and it can be changed to `java.net.http.HttpClient`(unstable) or `Apache HTTP Client 5`. Note that the latter was added in 0.4.0 to support custom socket options. |
19
-
||[gRPC](https://clickhouse.com/docs/en/interfaces/grpc/)|:white_check_mark:|still experimental, works with 22.3+, known to has [issue](https://github.com/ClickHouse/ClickHouse/issues/28671#issuecomment-1087049993) when using LZ4 compression |
19
+
||[gRPC](https://clickhouse.com/docs/en/interfaces/grpc/)|:white_check_mark:|:warning: experimental, works with 22.3+, known to has issue with lz4 compression and may cause high memory usage on server |
20
20
||[TCP/Native](https://clickhouse.com/docs/en/interfaces/tcp/)|:white_check_mark:|`clickhouse-cli-client`(wrapper of ClickHouse native command-line client) was added in 0.3.2-patch10, `clickhouse-tcp-client` will be available in 0.5 |
21
21
||[Local/File](https://clickhouse.com/docs/en/operations/utilities/clickhouse-local/)|:x:|`clickhouse-cli-client` will be enhanced to support `clickhouse-local`|
22
22
| Compatibility | Server < 20.7 |:x:| use 0.3.1-patch(or 0.2.6 if you're stuck with JDK 7) |
23
23
|| Server >= 20.7 |:white_check_mark:| use 0.3.2 or above. All [active releases](https://github.com/ClickHouse/ClickHouse/pulls?q=is%3Aopen+is%3Apr+label%3Arelease) are supported. |
0 commit comments