ClickHouse/docs/ja/getting-started/playground.md

63 lines
3.0 KiB
Markdown
Raw Normal View History

2020-04-04 09:15:31 +00:00
---
toc_priority: 14
toc_title: Playground
2020-04-04 09:15:31 +00:00
---
# ClickHouse Playground {#clickhouse-playground}
2020-04-04 09:15:31 +00:00
!!! warning "Warning"
This service is deprecated and will be replaced in foreseeable future.
2021-09-22 00:22:57 +00:00
[ClickHouse Playground](https://play.clickhouse.com) では、サーバーやクラスタを設定することなく、即座にクエリを実行して ClickHouse を試すことができます。
いくつかの例のデータセットは、Playground だけでなく、ClickHouse の機能を示すサンプルクエリとして利用可能です. また、 ClickHouse の LTS リリースで試すこともできます。
2020-04-04 09:15:31 +00:00
任意の HTTP クライアントを使用してプレイグラウンドへのクエリを作成することができます。例えば[curl](https://curl.haxx.se)、[wget](https://www.gnu.org/software/wget/)、[JDBC](../interfaces/jdbc.md)または[ODBC](../interfaces/odbc.md)ドライバを使用して接続を設定します。
ClickHouse をサポートするソフトウェア製品の詳細情報は[こちら](../interfaces/index.md)をご覧ください。
2020-04-04 09:15:31 +00:00
## 資格情報 {#credentials}
2020-04-04 09:15:31 +00:00
| パラメータ | 値 |
| :---------------------------- | :-------------------------------------- |
2021-09-22 00:22:57 +00:00
| HTTPS エンドポイント | `https://play-api.clickhouse.com:8443` |
| ネイティブ TCP エンドポイント | `play-api.clickhouse.com:9440` |
| ユーザ名 | `playgrounnd` |
| パスワード | `clickhouse` |
2020-04-04 09:15:31 +00:00
特定のClickHouseのリリースで試すために、追加のエンドポイントがあります。ポートとユーザー/パスワードは上記と同じです)。
2020-04-04 09:15:31 +00:00
2021-09-22 00:22:57 +00:00
- 20.3 LTS: `play-api-v20-3.clickhouse.com`
- 19.14 LTS: `play-api-v19-14.clickhouse.com`
2020-04-04 09:15:31 +00:00
!!! note "備考"
これらのエンドポイントはすべて、安全なTLS接続が必要です。
2020-04-04 09:15:31 +00:00
## 制限事項 {#limitations}
クエリは読み取り専用のユーザとして実行されます。これにはいくつかの制限があります。
- DDL クエリは許可されていません。
- INSERT クエリは許可されていません。
また、以下の設定がなされています。
2020-10-13 17:23:29 +00:00
- [max_result_bytes=10485760](../operations/settings/query_complexity/#max-result-bytes)
- [max_result_rows=2000](../operations/settings/query_complexity/#setting-max_result_rows)
- [result_overflow_mode=break](../operations/settings/query_complexity/#result-overflow-mode)
- [max_execution_time=60000](../operations/settings/query_complexity/#max-execution-time)
## 例 {#examples}
`curl` を用いて HTTPSエンドポイントへ接続する例:
2020-04-04 09:15:31 +00:00
``` bash
2021-09-22 00:22:57 +00:00
curl "https://play-api.clickhouse.com:8443/?query=SELECT+'Play+ClickHouse\!';&user=playground&password=clickhouse&database=datasets"
2020-04-04 09:15:31 +00:00
```
[CLI](../interfaces/cli.md) で TCP エンドポイントへ接続する例:
``` bash
2021-09-22 00:22:57 +00:00
clickhouse client --secure -h play-api.clickhouse.com --port 9440 -u playground --password clickhouse -q "SELECT 'Play ClickHouse\!'"
```