CoreWeaveData Console

Getting started

1. Obtain an organization

Ask the MCS platform team for an organization. Provide:

  • the organization name;
  • the owner email address;
  • the users who need Console access.

The platform team creates the organization, assigns a Keeper fleet, and sends the owner login details through the approved credential channel.

2. Sign in

Open the MCS Console and sign in with the organization owner account. A normal organization user sees only services owned by that organization.

3. Create a ClickHouse service

  1. Select New ClickHouse service.
  2. Enter a service name.
  3. Select the supported ClickHouse release.
  4. Select the ClickHouse node count and node size.
  5. Configure ElasticQuery if read-only query compute is required.
  6. Create the service.

Wait until the service status becomes Ready. Opening the status badge shows the ClickHouse and ElasticQuery component states.

An organization may create up to five ClickHouse services.

4. Create tables for ElasticQuery

ElasticQuery only synchronizes opted-in MergeTree-family tables. Add table_disk = true when creating a table that must be queryable through ElasticQuery:

CREATE TABLE default.events
(
    event_time DateTime,
    message String
)
ENGINE = MergeTree
ORDER BY event_time
SETTINGS table_disk = true;

Tables without table_disk = true remain available through ClickHouse and are not synchronized to ElasticQuery.

Next