Конференция Arenadata
Новое время — новый Greenplum
Мы приглашаем вас принять участие в конференции, посвященной будущему Open-Source Greenplum 19 сентября в 18:00:00 UTC +3. Встреча будет проходить в гибридном формате — и офлайн, и онлайн. Онлайн-трансляция будет доступна для всех желающих.
Внезапное закрытие Greenplum его владельцем — компанией Broadcom - стало неприятным сюрпризом для всех, кто использует или планирует начать использовать решения на базе этой технологии. Многие ожидают выхода стабильной версии Greenplum 7 и надеются на её дальнейшее активное развитие.
Arenadata не могла допустить, чтобы разрабатываемый годами Open-Source проект Greenplum прекратил своё существование, поэтому 19 сентября мы представим наш ответ на данное решение Broadcom, а участники сообщества получат исчерпывающие разъяснения на все вопросы о дальнейшей судьбе этой технологии.

На конференции вас ждёт обсуждение следующих тем:

  • План возрождения Greenplum;
  • Дорожная карта;
  • Экспертное обсуждение и консультации.
Осталось до события

Coordination systems

For data replication and execution of distributed DDL queries (ON CLUSTER), ADQM requires you to configure and enable one of the coordination services for a cluster:

  • Apache ZooKeeper — well-known open-source service for synchronization and coordination of distributed systems.

    ZooKeeper is implemented in Java and has a simple and powerful data model. The ZAB (ZooKeeper Atomic Broadcast) coordination algorithm used in ZooKeeper provides linearizable writes, but does not guarantee linearizability for reads, since each ZooKeeper node performs reads locally.

  • ClickHouse Keeper — alternative coordination service that provides a ZooKeeper-compatible client-server protocol.

    ClickHouse Keeper is implemented in C++ and has the same data model as ZooKeeper.The used RAFT algorithm provides better consistency guarantees compared to ZooKeeper — optionally allows linearizable reads. ClickHouse Keeper can be used as a standalone replacement for ZooKeeper (when it is installed on separate servers) or as an internal part of a ClickHouse server.

General recommendations for choosing a coordination service depending on system requirements:

  • For test or small clusters, you can use the integrated ClickHouse Keeper installed on the same servers as ClickHouse.

  • For production environments, it is recommended to install ClickHouse Keeper or ZooKeeper on separate servers.

  • If you already have an external ZooKeeper cluster configured, you can use it for an ADQM cluster.

IMPORTANT
  • Since the format of ClickHouse Keeper snapshots and logs is incompatible with ZooKeeper, you should convert and copy data manually when migrating an ADQM cluster from ZooKeeper to ClickHouse Keeper.

  • The interserver protocol in ClickHouse Keeper is also incompatible with ZooKeeper, so you cannot create a mixed cluster that uses both ZooKeeper and ClickHouse Keeper at the same time.

Found a mistake? Seleсt text and press Ctrl+Enter to report it