I know it's possible to query data managed by Hive with HAWQ, and HCatalog, I have installed Hortonworks ambari that installs all the tools needed. To query the hive i schema followed pivotal instructions where it says to enter PostgreSQL and do the command SET pxf_service_address TO "localhost:51200", but I always get the error unrecognized configuration parameter "pxf_service_address". Does anyone have this problem before?
Related Questions in POSTGRESQL
- Only the first SQL script gets executed inside Docker Postgres container
- Compare fields in two tables
- Hibernate ClobJdbcType bindings: what are the diferences?
- Postgres && statement Error in Mybatis Mapper?
- Can this query be optimized? (Choosing a random row to insert, that excludes previously inserted Rows)
- Connection terminated unexpectedly while performing multi row insert using pg-promise
- Processing multiple forms in nodejs and postgresql
- How to copy data from SQLite to postgreSQL?
- PGAdmin4 configured behind a reverse proxy but unable to connect to Postgresql server
- Updates to pgsodium encrypted values don't use specified key_id
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
- Django Arrayfield migration to cloud sql (Postgresql) not creating the column
- Get list of matching keywords for each post
- docker-compose can't reset postgresql database
Related Questions in AMBARI
- Apache Ambari installation issue
- How to Add a Service to Ambari managed cluster (bigtop 3.2.1) , example : sqoop / sentry / kudu
- Compile Apache Ambari Error Could not resolve dependencies for project org.apache.ambari:ambari-metrics-assembly
- Integration of keycloak with Apache knox
- Why yarn resource manager not consume the max cores from node manager machines
- Ambari 2.8.0 failed install bigtop 3.2.0 when installing bigtop-select
- "IF NOT EXISTS" Unrecognized when I init hive-metastore
- failed to add host/datanode in ambari 2.7.5
- NiFi using memory more than allocated
- Ambari 2.7.7 Build Failure
- Ubuntu 22.04 docker install HDP 2.6.5 with error "failed to get D-BUS connection: No such file or directory
- Enabling Hadoop Namenode HA in Apache ambari using Bigtop
- HDFS showing heartbeat lost for nodes
- Install Spark 3.* on HDP with Ambari
- Ambari UI not showing versions in cluster installation
Related Questions in HCATALOG
- Store Pig result into Hive table using Hcat - ClassNotFoundException: org.datanucleus.NucleusContext
- Better process or tools to deploy large number of Hive tables
- EMR - Sqoop import using hcatalog failing on EMR
- Sqoop Export from hive table to teradata table
- Merge two bag and get all the field from first bag in pig
- is there a Hive/hcat property to export partitioned tables to a single file instead of a directory?
- How to decide the MySQL capacity for Hive Metastore DB?
- When Spark call Hive from oozie, exception raised "java.lang.ClassNotFoundException: org.apache.hadoop.hive.ql.metadata.HiveException"
- java.lang.NoSuchMethodError: org.apache.hive.common.util.ShutdownHookManager.addShutdownHook
- How to use Hive Metastore standalone?
- Sqoop export from Hcatalog to MySQL with different col names assign
- Is there are way to load partial table from hive to pig relation?
- sqoop action with hcatalog in oozie workflow has problem
- Creating s3 external table in amazon EMR with remote metastore
- Permission issue encountered during sqoop import using Hcatalog
Related Questions in HAWQ
- Compile error when I install HAWQ on Centos7:
- what are the Hadoop requirements for hawq 2.4
- why HAWQ Initialization error sync hawq-site.xml failed
- HAWQ PostgreSQL - Increment row based on previous row
- Greenplum's pg_dump cannot support lock statement
- HAWQ installation error
- verify whether an id passes through all stages
- Is it possible to collocate similar data on the same segment in Greenplum?
- HAWQ - Error while querying external HDFS table (PXF)
- HAWQ - how to choose a node to install segments
- Error when installing "hawq init cluster" on Docker, ,"internal_load_library","dfmgr.c",208
- Not able to Install HAWQ DB successfully in Centos 7.x version
- GPDB : SSH permission denied (public key)
- GPDB:Out of memory at segment
- How to connect spark from HAWQ via JDBC/ODBC driver?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Your version() output indicates you are connecting to a PostgreSQL instance and this is NOT HAWQ.
The default port for both PostgreSQL and HAWQ is 5432 so on a single node, one has to be changed. I think it is a bug that Hortonworks has decided to change the HAWQ port instead of the PostgreSQL port. So if you want to give some feedback to Hortonworks, tell them to change the PostreSQL port to something other than 5432.
Find hawq_master_address_port in your /usr/local/hawq/etc/hawq-site.xml file. The value will be something other than 5432. You should also look at the hawq_master_address_host value and make sure you are on the Master host. So ssh to your master host to connect via psql.
Now, armed with your HAWQ port and logged in as gpadmin on the Master host, edit your .bashrc file. Add:
Substitute hawq_master_address_port with the value from hawq-site.xml.
Now source your .bashrc file and then run:
I'm also guessing you don't have a gpadmin database so create it.
Now you can just run "psql" and connect to HAWQ.