0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

無料版データウェアハウス Vertica Communitiy Editionを構築 VMWare編

Last updated at Posted at 2022-04-15
1 / 3

Vertica Analytics Platform(以降、Vertica)のCommunity Editionを使い、データ分析を実施するためのテスト環境をEnterprise Modeで構築することを目的としております。
Community Editionとは、3ノードクラスター、データサイズ1TBまで無料でお試しいただけるエディションとなります。商用でも利用できますが、テクニカルサポートは利用できない制約があります。

  1. Vertica Community Editionのダウンロード
  2. Vertica Community Editionの起動
  3. データベースの作成と削除
  4. データベースの起動と停止
  5. データベースオブジェクトの作成
  6. データロードとクエリ
  7. データベースデザイナーの実行

クエリの例はこちらです。

hello.sql
create table customer_dimension
(	customer_key            integer         not null primary key,
	customer_type           varchar(16),
	customer_name           varchar(256),
	customer_gender         varchar(8),
	title                   varchar(8),
	household_id            integer,
        customer_address        varchar(256),
	customer_city           varchar(64),
	customer_state          char(2),
	customer_region         varchar(64),
	marital_status          varchar(32),
	customer_age            integer,
	number_of_children      integer,
	annual_income           integer,
	occupation              varchar(64),
	largest_bill_amount     integer,
	store_membership_card   integer,
	customer_since          date,
	deal_stage              varchar(32),
	deal_size               integer,
	last_deal_update        date
);

システム構成は以下の図のようになる。

image.png

image.png
導入環境 テスト環境

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?