Member since
09-15-2020
211
Posts
18
Kudos Received
6
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
722 | 02-22-2024 02:53 AM | |
375 | 02-21-2024 06:55 AM | |
766 | 02-20-2024 09:20 AM | |
430 | 02-15-2024 08:05 AM | |
1274 | 02-13-2024 11:19 AM |
11-13-2024
01:42 PM
1 Kudo
@repealp Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
04-11-2024
09:23 PM
I got the reason. When enter the LDAP information I had to use port 3268 For example ldap://ad.server.host:3268 instead of ldap://ad.server.host:389
... View more
04-04-2024
10:35 PM
1 Kudo
@felix_ Did the response assist in resolving your query? If it did, kindly mark the relevant reply as the solution, as it will aid others in locating the answer more easily in the future.
... View more
04-03-2024
09:30 AM
Hi @s198, You do not need to have hadoop file system or datanode role on the remote server. You just need to set up some hdfs gateway on the remote server and pull it using distcp. If you are using HDP or CDP, you can add the remote server as a gateway and perform distcp in the remote server. Another option is to share one of the directories in the remote server, mount it in hadoop cluster node, and perform distcp to that mounted directory.
... View more
04-03-2024
06:55 AM
hi @jAnshula thanks for message but at the time of the error, it was related to a configuration in cloudera manager regarding supported encryption types 😁
... View more
04-03-2024
02:08 AM
Hi @drgenious First, please test your script outside of Oozie. If it is working outside of Oozie, then it should work from Oozie as well. As for error "No module named impala.dbapi" it could be that there is some version dependency issue with impyla and its related libraries refer ---> https://github.com/cloudera/impyla/issues/227
... View more
03-20-2024
08:10 AM
Hi @MrBeasr Please check the status of job via Oozie Database: # select count(*) from WF_JOBS where id like '%0043858-220322202819429-oozie-oozi-W%'; If require you may set the status of the job in Database itself: # update wf_jobs set status='FAILED' where id like '%0043858-220322202819429-oozie-oozi-W%';
... View more
02-29-2024
07:59 AM
Hi @mohammad_shamim You need to check DB logs and see if you are able to find any error. Else reach-out to your DB team, they should be best point of contact to help you with DB related problem
... View more
02-29-2024
07:53 AM
HI @kerbero can you provide us the full error trace. It could be due to some dependency issue when using spark2.x
... View more
02-29-2024
07:47 AM
Hi @JoshiRamesh In your query the Question Mark (?) symbol is this a value for deliveryconstructuid. Can you put it in double quotes and check if it works for you Example SELECT * FROM my_table WHERE array_contains(my_array_col, "value1") This query will return all rows from “my_table” where “my_array_col” contains “value1”
... View more