Details
-
Improvement
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
Description
In the following documentation: http://tajo.apache.org/docs/current/storage_plugins/postgresql.html
The storage-site.json is written as following:
{ "spaces": { "pgsql_db1": { "uri": "jdbc:postgresql://hostname:port/db1" "configs": { "mapped_database": "tajo_db1" "connection_properties": { "user": "tajo", "password": "xxxx" } } } } }
But it should be written as following:
{ "spaces": { "pgsql_db1": { "uri": "jdbc:postgresql://hostname:port/db1", "configs": { "mapped_database": "tajo_db1", "connection_properties": { "user": "tajo", "password": "xxxx" } } } } }