ClickHouse/docs/zh/getting_started/playground.md
2020-04-03 16:23:32 +03:00

2.3 KiB

en_copy
true

ClickHouse Playground

ClickHouse Playground allows people to experiment with ClickHouse by running queries instantly, without setting up their server or cluster. Several example datasets are available in the Playground as well as sample queries that show ClickHouse features.

The queries are executed as a read-only user. It implies some limitations:

  • DDL queries are not allowed
  • INSERT queries are not allowed

The following settings are also enforced:

ClickHouse Playground gives the experience of m2.small Managed Service for ClickHouse instance hosted in Yandex.Cloud. More information about cloud providers.

ClickHouse Playground web interface makes requests via ClickHouse HTTP API. The Playground backend is just a ClickHouse cluster without any additional server-side application. ClickHouse HTTPS endpoint is also available as a part of the Playground.

You can make queries to playground using any HTTP client, for example curl or wget, or set up a connection using JDBC or ODBC drivers. More information about software products that support ClickHouse is available here.

Parameter Value
Endpoint https://play-api.clickhouse.tech:8443
User playground
Password clickhouse

Note that this endpoint requires a secure connection.

Example:

curl "https://play-api.clickhouse.tech:8443/?query=SELECT+'Play+ClickHouse!';&user=playground&password=clickhouse&database=datasets"