Member since
12-21-2020
91
Posts
8
Kudos Received
13
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1905 | 08-12-2021 05:16 AM | |
2140 | 06-29-2021 06:21 AM | |
2573 | 06-16-2021 07:15 AM | |
1805 | 06-14-2021 12:08 AM | |
6060 | 05-14-2021 06:03 AM |
08-25-2022
05:48 AM
Added required dependencies to the repository: glibc-2.17-326.el7_9.i686 --> this was missing and that was why it tried to install 2.17-324 krb5-devel-1.15.1-50.el7.x86_64 openssl-devel-1.0.2k-21.el7_9.x86_64
... View more
03-13-2022
05:45 PM
hive.default.fileformat.managed = ORC hive.default.fileformat = TextFile we tried to change hive.default.fileformat.managed to TextFile, still it doesn't work. Could you please check how it works for you.
... View more
08-18-2021
09:57 AM
Thanks @willx for you support!
... View more
08-12-2021
05:10 AM
@vidanimegh, Sure. Thanks for your response, will wait for your update.
... View more
07-22-2021
05:50 AM
Hi @Anyy , What is the from table in the second query? 1st query can work as is. Thanks, Megh
... View more
06-29-2021
06:21 AM
Hi @Shifu , So supplying these config properties at runtime didn't work but changing the service configuration to modify the below parameters did the job for me: set tez.runtime.io.sort.mb=3072; set tez.task.resource.memory.mb=8192; set tez.am.resource.memory.mb=8192; set tez.am.launch.cmd-opts=-Xmx6553m; Not sure why that might be the case, but the issue seems to have been fixed. Thanks, Megh
... View more
06-28-2021
02:59 AM
Hi @Fawze , This is happening for ANALYZE TABLE commands, which I think are map only. I've tried the heap space options you have mentioned and they're not helping. Thanks, Megh
... View more
06-17-2021
11:38 PM
@dmharshit , When you run this query, does a YARN application ID get generated? Or the query fails before triggering the YARN application? In case YARN application is triggered, please get the logs of that particular YARN application and check for errors. yarn logs -applicationId your_application_id > your_application_id.log 2>&1 Check and see if you're able to get any detailed errors in this log file and share. Thanks, Megh
... View more
06-16-2021
07:15 AM
Managed to get it working. Since my environment is Kerberized, I need to give a jaas.conf file while running a command which potentially modifies any collection configuration. This jaas.conf file should include the solr principal configuration. In my case, the jaas.conf file looks like this. Client {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
keyTab="/solr/keytab/path/solr.keytab"
storeKey=true
useTicketCache=false
principal="solr/<fully.qualified.domain.name>@<REALM_NAME>";
}; and ran the command like this: solrctl --jaas /jaas/file/path/jaas.conf instancedir --update ranger_audits /tmp/ranger_audits
solrctl --jaas /jaas/file/path/jaas.conf collection --reload ranger_audits And it was successful! This documentation article also helped. Thanks, Megh
... View more