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

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

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

Connect to HBase

The article describes possible ways to connect to HBase. You can use HBase shell, Phoenix, native and external HBase API. Additionally, it is possible to utilize a web interface to interact with HBase. See HBase UI overview.

HBase shell

HBase shell is a JRuby console available on each node of the HBase cluster. For more information, see Quick start with HBase shell and HBase shell commands articles.

Native API

HBase has a Java native API that provides programmatic access to Data Manipulation Language (DML). It allows you to perform CRUD operations on HBase tables. The article Use native Java API to connect HBase contains a code example. For full API member list, refer to the following link: User API Reference.

External API

You can access Apache HBase through non-Java languages and custom protocols in the same way as the native HBase version. ADH also includes HBase REST Server and HBase Thrift2 Server that can be added to a cluster as service components. For more information, see Use external API to connect HBase.

Phoenix

Apache Phoenix is a SQL query engine for Apache HBase. It is accessed as a JDBC driver, and allows you to query and manage HBase tables using SQL. For more information, see Connect to Phoenix.

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