May 2017
Beginner to intermediate
596 pages
15h 2m
English
Oozie requires a metastore to store information for Oozie jobs, workflows and coordinators, hence we will need to create a metastore database. As done earlier for other technologies in regards to metastore,we will create and configure this metastore in PostgreSQL Follow the steps below to configure PostgreSQL as our metastore database:
psql -U postgres
CREATE ROLE oozie LOGIN ENCRYPTED PASSWORD 'oozie' NOSUPERUSER INHERIT CREATEDB NOCREATEROLE;
CREATE DATABASE "oozie" WITH OWNER = oozieENCODING = 'UTF8'TABLESPACE = pg_default ...