Member since
11-11-2019
610
Posts
33
Kudos Received
25
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1509 | 02-28-2023 09:32 PM | |
2466 | 02-27-2023 03:33 AM | |
25092 | 12-24-2022 05:56 AM | |
2030 | 12-05-2022 06:17 AM | |
5262 | 11-25-2022 07:37 AM |
11-19-2022
12:47 AM
hi @Raed_Faly You need discipline with > 10 gold medals Please use below query and check: select distinct t.discipline, m.team from teams t join medals m on (t.noc=m.team and m.numbergold>10) order by m.team asc limit 5; select distinct t.discipline, m.team from teams t join medals m on (t.noc=m.team and m.numbergold>10) order by m.team desc limit 5; Please "Accept As Solution", if your queries are answered.
... View more
11-19-2022
12:15 AM
@NikoBelic Thanks for the update. The hive metadata indeed is stored on database. You need to take the dump to backup the metadata. Please let me know,if you have nay queries. Please "Accept as Solution" ,if your queries are answered.
... View more
11-16-2022
07:22 PM
@NikoBelic VIEWS are stot=red in TBLS table i.e in Hive metadata. You can create a database dump as a backup. Please follow https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html to create database dump for mysql Please follow https://www.postgresql.org/docs/current/backup-dump.html to create database dump for postgres Please let me know,if you have any queries. Please "Accept As Solution", if your queries are answered.
... View more
11-15-2022
06:09 PM
@NikoBelic Could you please elaborate your issue? Do you want to secure Hive Views using Ranger authorisation? Is this your requirement?
... View more
11-14-2022
09:39 PM
As there are lot many partitions,so DROP command would time out. You must remove the partitions using below command: You need to drop partition manually https://stackoverflow.com/questions/13815179/how-to-update-drop-a-hive-partition Then invoke drop table. Drop command times out owing to lot many partitions.
... View more
11-14-2022
03:44 AM
1 Kudo
@KPG1 I can think of Oracle database ha a feature i.e Oracle RAC,where we give SCAN address as the jdbc string to metastore,so the scan ip wll take care of loadbalancing. You need to check with mysql vendor(Oracle),if they have similar thing as of Oracle database. You can have HMS HA but all the HMS instance point to same database, you can not have 2 HMS instance pointing to a different database. Please let me know,if you have any querties and please "Accept As Solution", if your queries are answered
... View more
11-13-2022
06:52 PM
Run the equivalent query in beeline and share the below if you encounter the error: 1. beeline trace => This should contain queryID and query 2. HS2 logs 3. application log This will help us to analyse
... View more
11-12-2022
07:59 AM
Please set hive.fetch.task.conversion=more, and try the query hive.fetch.task.conversion=none, and try the query
... View more
11-11-2022
03:18 AM
You can set tez.grouping.max-size to 1gb. Please increase below set hive.tez.container.size=10240; set tez.runtime.io.sort.mb=4096; (40% of container size)
... View more