1.

Explain Abount Postgresql Storage Handler?

Answer»

Tajo SUPPORTS POSTGRESQL STORAGE handler. It enables user queries to access database OBJECTS in PostgreSQL. It is the default storage handler in Tajo so you can easily configure it.

{

"spaces": {

"postgre": {

"uri": "jdbc:postgresql://hostname:port/database1"

"configs": {

"mapped_database": “sampledb”

"connection_properties": {

"user":“tajo", "password": "pwd"

}

}

}

}

}

Here, “database1” refers to the postgreSQL database which is mapped to the database “sampledb” in Tajo.

Tajo supports PostgreSQL storage handler. It enables user queries to access database objects in PostgreSQL. It is the default storage handler in Tajo so you can easily configure it.

{

"spaces": {

"postgre": {

"uri": "jdbc:postgresql://hostname:port/database1"

"configs": {

"mapped_database": “sampledb”

"connection_properties": {

"user":“tajo", "password": "pwd"

}

}

}

}

}

Here, “database1” refers to the postgreSQL database which is mapped to the database “sampledb” in Tajo.



Discussion

No Comment Found