Member since
08-10-2022
71
Posts
0
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
196 | 01-18-2023 08:14 PM | |
262 | 01-15-2023 11:36 PM | |
210 | 10-30-2022 10:31 PM |
03-10-2023
06:02 AM
@Tushar17 Have the packages been installed successfully? Please share the below output #rpm -qa |grep cloudera #service cloudera-scm-server restart check the /var/log/messages for any relevant errors when you execute the restart command. Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-08-2023
01:40 AM
Any update on above error issue #clouera #avro..
... View more
02-08-2023
03:22 AM
Was able to get this fixed. We ultimately identified there were some permissions for child objects not given yet. We got on a call with AD team and asked for a screen share to validate the permissions and then found it is not assigned yet. Thanks
... View more
01-15-2023
11:36 PM
Hello @prakodi, For CDH 6.3, you can review this article https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_bdr_hive_replication.html Hope this helps, Tarun Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs-up button.
... View more
01-10-2023
10:46 PM
Hello @baabdullah , The error indicates that your DataNode is down. Could you please confirm if that's the scenario? Error: could only be written to 0 of the 1 minReplication nodes. There are 0 datanode(s) running and 0 node(s) are excluded in this operation. Could you please check the data node logs to identify the exact issue? Maybe you need to check the heap size (one of the many possible reasons). Hope this helps, Tarun Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs-up button.
... View more
11-03-2022
08:18 AM
I learned that I needed to follow a series of steps to essentially enable the admin (root username) account. The Maria_Dev and Raj_Ops accounts they provided did not have privileges to access or edit those files apparently. I logged into the CLI as root with the default password of hadoop, then went through the mandatory password change procedure and the account was enabled. With Root enabled I was able to access and edit the files via a connection through WinSCP. I didn't try Ambari, though I'm certain that option would have worked as well. When I initially tried accessing the directory under Ambari the etc folder and many others were not showing at all, like they were hidden. I think that was due to the limited privileges of the other two accounts.
... View more
10-07-2022
05:11 AM
Hello @sseoju , You may get the required information in Impala as shown below: [node1:21000] default> CREATE EXTERNAL TABLE IF NOT EXISTS test_table > ( > `id` string comment 'id', > `name` string comment 'name', > `area` struct<`country`: string comment "test country", `address`:string comment 'test address'> comment 'test struct' > ); Query: CREATE EXTERNAL TABLE IF NOT EXISTS test_table ( `id` string comment 'id', `name` string comment 'name', `area` struct<`country`: string comment "test country", `address`:string comment 'test address'> comment 'test struct' ) +-------------------------+ | summary | +-------------------------+ | Table has been created. | +-------------------------+ Fetched 1 row(s) in 0.26s [node1:21000] default> desc test_table; Query: describe test_table +------+------------------------------------------+-------------+ | name | type | comment | +------+------------------------------------------+-------------+ | id | string | id | | name | string | name | | area | struct< | test struct | | | country:string comment 'test country', | | | | address:string comment 'test address' | | | | > | | +------+------------------------------------------+-------------+ Fetched 3 row(s) in 0.28s This is also mentioned here https://impala.apache.org/docs/build/html/topics/impala_describe.html Let me know if this helps. Cheers!
... View more