diff --git a/gpdb-doc/dita/ref_guide/data_types.xml b/gpdb-doc/dita/ref_guide/data_types.xml index 1565f50c15e96aeca4cd13fec06f6ea43c231aab..06def22a71a88c88eed6d010ca94a76ec8e69abb 100644 --- a/gpdb-doc/dita/ref_guide/data_types.xml +++ b/gpdb-doc/dita/ref_guide/data_types.xml @@ -2,7 +2,7 @@ - Greenplum Database Data Types + Data Types

Greenplum Database has a rich set of native data types available to users. Users may also define new data types using the CREATE TYPE command. This reference shows diff --git a/gpdb-doc/dita/ref_guide/env_var_ref.xml b/gpdb-doc/dita/ref_guide/env_var_ref.xml deleted file mode 100644 index 71cf73c3907d7dfbf3f979f6f4df2d8065bebcf4..0000000000000000000000000000000000000000 --- a/gpdb-doc/dita/ref_guide/env_var_ref.xml +++ /dev/null @@ -1,208 +0,0 @@ - - - - Greenplum Environment Variables - -

This reference lists and describes the environment variables to set for Greenplum - Database. Set these in your user's startup shell profile (such as ~/.bashrc or ~/.bash_profile), or in /etc/profile if you want to set them for all users.

- - - - Required Environment Variables - - GPHOME, PATH and - LD_LIBRARY_PATH can be set by - sourcing the greenplum_path.sh file from your Greenplum Database - installation directory - - - GPHOME - -

This is the installed location of your Greenplum Database software. For - example:

- GPHOME=/usr/local/greenplum-db-<version> -export GPHOME - -
- - PATH - -

Your PATH environment variable - should point to the location of the Greenplum Database bin directory. For example:

- PATH=$GPHOME/bin:$PATH -export PATH - -
- - LD_LIBRARY_PATH - -

The LD_LIBRARY_PATH environment - variable should point to the location of the Greenplum Database/PostgreSQL - library files. For example:

- LD_LIBRARY_PATH=$GPHOME/lib -export LD_LIBRARY_PATH - -
- - MASTER_DATA_DIRECTORY - -

This should point to the directory created by the gpinitsystem utility in the - master data directory location. For example:

- MASTER_DATA_DIRECTORY=/data/master/gpseg-1 -export MASTER_DATA_DIRECTORY - -
-
- - Optional Environment Variables - -

The following are standard PostgreSQL environment variables, which are also - recognized in Greenplum Database. You may want to add the connection-related - environment variables to your profile for convenience, so you do not have to type so - many options on the command line for client connections. Note that these environment - variables should be set on the Greenplum Database master host only.

- - - PGAPPNAME - -

The name of the application that is usually set by an application when it - connects to the server. This name is displayed in the activity view and in log - entries. The PGAPPNAME - environmental variable behaves the same as the application_name connection parameter. The default - value for application_name is - psql. The name cannot be longer than 63 - characters.

- -
- - PGDATABASE - -

The name of the default database to use when connecting.

- -
- - PGHOST - -

The Greenplum Database master host name.

- -
- - PGHOSTADDR - -

The numeric IP address of the master host. This can be set instead of or in - addition to PGHOST to avoid DNS - lookup overhead.

- -
- - PGPASSWORD - -

The password used if the server demands password authentication. Use of this - environment variable is not recommended for security reasons (some operating - systems allow non-root users to see process environment variables via ps). Instead consider using the - ~/.pgpass file.

- -
- - PGPASSFILE - -

The name of the password file to use for lookups. If not set, it defaults to - ~/.pgpass. See the topic - about The Password File in the PostgreSQL documentation for more - information.

- -
- - PGOPTIONS - -

Sets additional configuration parameters for the Greenplum Database master - server.

- -
- - PGPORT - -

The port number of the Greenplum Database server on the master host. The default - port is 5432.

- -
- - PGUSER - -

The Greenplum Database user name used to connect.

- -
- - PGDATESTYLE - -

Sets the default style of date/time representation for a session. (Equivalent to - SET datestyle TO...)

- -
- - PGTZ - -

Sets the default time zone for a session. (Equivalent to SET timezone TO...)

- -
- - PGCLIENTENCODING - -

Sets the default client character set encoding for a session. (Equivalent to - SET client_encoding - TO...)

- -
-
-
diff --git a/gpdb-doc/dita/ref_guide/extensions/bgworker.xml b/gpdb-doc/dita/ref_guide/extensions/bgworker.xml index 8278c64b9b4df554ab64a75e856879d511812bae..83b8ebb297795e18419a9d6b99eeb32801de3ef5 100644 --- a/gpdb-doc/dita/ref_guide/extensions/bgworker.xml +++ b/gpdb-doc/dita/ref_guide/extensions/bgworker.xml @@ -2,7 +2,7 @@ - Background Worker Processes + Developing a Background Worker Process

Greenplum Database can be extended to run user-supplied code in separate processes. Such processes are started, stopped, and monitored by postgres, which permits them to diff --git a/gpdb-doc/dita/ref_guide/extensions/extensions.ditamap b/gpdb-doc/dita/ref_guide/extensions/extensions.ditamap new file mode 100644 index 0000000000000000000000000000000000000000..c1d5da5d0bf5e83ac4b6058cd9fa13e548ed8194 --- /dev/null +++ b/gpdb-doc/dita/ref_guide/extensions/extensions.ditamap @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/gpdb-doc/dita/ref_guide/extensions/intro.xml b/gpdb-doc/dita/ref_guide/extensions/intro.xml new file mode 100644 index 0000000000000000000000000000000000000000..4ec45f51612fd68dbf6ceb979a5084c4d21ad484 --- /dev/null +++ b/gpdb-doc/dita/ref_guide/extensions/intro.xml @@ -0,0 +1,30 @@ + + + + Procedural Languages and Analytics Extensions + +

This section describes the procedural languages and analytics extensions available + with Greenplum Database.

+

Procedural languages are typically + packaged as extensions. You register a language in a database using the + CREATE EXTENSION + command. You remove a language from a database with DROP EXTENSION.

+

The Greenplum Database distribution supports the following procedural + languages; refer to the linked language documentation for installation + and usage instructions:

+ +

You can use the following analytics extensions with Greenplum Database; refer + to the linked documentation for installation and usage instructions:

+ + +
diff --git a/gpdb-doc/dita/ref_guide/extensions/madlib.xml b/gpdb-doc/dita/ref_guide/extensions/madlib.xml index e0faf2ab2f0bbf00c2ab05167e4202c38adce051..8bc6113e569fb1d8b4fc70f537acf238ec9254f8 100644 --- a/gpdb-doc/dita/ref_guide/extensions/madlib.xml +++ b/gpdb-doc/dita/ref_guide/extensions/madlib.xml @@ -2,7 +2,7 @@ - Greenplum MADlib Extension for Analytics + MADlib Extension for Analytics

This chapter includes the following information: