default is the cluster name.
ON CLUSTER default automatically creates tables on all hosts.
<table structure> - describe every column and its data type according to ClickHouse documentation .
Create a distributed table player_ratings-A_distributed with Distributed engine :
In this case, instead of explicitly describing the table structure, you can use AS examples.player_ratings-A to copy the structure of the initial table you created earlier.
Distributed table health check
To check the availability of the distributed table you created, run a test query for a number of rows in the table:
SELECTcount() FROM examples.player_ratings-A_distributed
You should receive a number as a response to this query.