ClickHouse/docs/en/getting-started/playground.md
Ivan Blinkov 6497ba09ed
[docs] update playground.md (#35219)
* Update playground.md

* Update playground.md

* Update playground.md

* Update playground.md
2022-03-11 23:46:16 +03:00

2.6 KiB
Raw Blame History

toc_priority toc_title
14 Playground

ClickHouse Playground

!!! warning "Warning" This service is deprecated and will be replaced in foreseeable future.

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 Playground as well as sample queries that show ClickHouse features. Theres also a selection of ClickHouse LTS releases to experiment with.

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.

Credentials

Parameter Value
HTTPS endpoint https://play-api.clickhouse.com:8443
Native TCP endpoint play-api.clickhouse.com:9440
User playground
Password clickhouse

There are additional endpoints with specific ClickHouse releases to experiment with their differences (ports and user/password are the same as above):

  • 20.3 LTS: play-api-v20-3.clickhouse.com
  • 19.14 LTS: play-api-v19-14.clickhouse.com

!!! note "Note" All these endpoints require a secure TLS connection.

Limitations

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:

Examples

HTTPS endpoint example with curl:

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

TCP endpoint example with CLI:

clickhouse client --secure -h play-api.clickhouse.com --port 9440 -u playground --password clickhouse -q "SELECT 'Play ClickHouse\!'"