Member since
07-30-2018
23
Posts
2
Kudos Received
4
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3438 | 07-14-2020 08:08 PM | |
3963 | 07-09-2020 09:04 PM | |
1643 | 05-03-2020 11:28 PM | |
1231 | 08-14-2019 08:50 PM |
07-04-2024
12:01 AM
Can i use multiple impala demons in connection string, or is there any way to use multiple impala demons ? CDP 7.1.7
... View more
07-21-2020
01:59 AM
Hello @getschwifty , did you have a chance to test if cross-realm trust works OK between your nodes from different realms? Kind regards: Ferenc
... View more
07-14-2020
08:08 PM
Hi, This isn't meant to be a blog post. Here's the answer: csv file has lots of new line characters. Probably (I'm guessing) from where the devs were writing their queries? Who knows. Either way, it looked like this: Timestamp,Username,"IP Address","Service Name",Operation,Resource,Allowed,Impersonator,sub_operation,entity_id,stored_object_name,additional_info,collection_name,solr_version,operation_params,service,operation_text,url,operation_text,table_name,resource_path,database_name,object_type,Source,Destination,Permissions,"Delegation Token ID","Table Name",Family,Qualifier,"Operation Text","Database Name","Table Name","Object Type","Resource Path","Usage Type","Operation Text","Database Name","Table Name","Object Type","Resource Path","Usage Type","Operation Text","Query ID","Session ID",Status,"Database Name","Table Name","Object Type",Privilege$ 2020-07-01T22:49:13.000Z,user1,::ffff:xx.xx.xx.xx,IMPALA,QUERY,env_db:table_ $ name,true,"hue/host19.fqdn@DOMAIN",,,,,,,,,,,"select * fro$ m table_name",table_name2 etc etc",,, Crazy. New line characters in the middle of words. Found this online: awk 'NR == 1{ printf $0; next }; { printf "%s%s", (/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T[0-9][0-9]:[0-9][0-9]+/? ORS : ""), $0 } END{ print "" }' inputfile.csv > outputfile.csv I am terrible at regex. Can't tell you why it's doing what it's doing. But it works. Check against the timestamp, which each line starts with: 2020-07-08T23:49:13.000Z Strip off the header line first, then run the newline stripper code: sed -i 1d inputfile.csv Testing looks good. Time for lunch.
... View more
07-09-2020
09:04 PM
So the answer is the 'org.apache.hadoop.hive.serde2.OpenCSVSerde' isn't supported in Impala, but it is in Hive.
... View more
05-13-2020
10:15 PM
Thanks @kramalingam !
... View more
05-03-2020
11:28 PM
1 Kudo
Solved it. This works. (|(memberOf:1.2.840.113556.1.4.1941:=CN=hue-users,OU=x,DC=x,DC=x,DC=x)(memberOf:1.2.840.113556.1.4.1941:=CN=service-users,OU=x,DC=x,DC=x,DC=x))
... View more
08-14-2019
08:50 PM
1 Kudo
Hi, Yes, they are. The hbase.quota.enabled property is not displayed in CDH. It must be added via a safety valve snippet under "Hbase Service Advanced Configuration Snippet (Safety Valve) for hbase-site.xml" in the HBase Configuration tab. Name: hbase.quota.enabled Value: true Description: Enable hbase quotas Also note that to then deploy the change requires a restart of multiple services, such as Impala, CDSW etc EDIT: I'm using CDH 6.2 Evan
... View more
08-28-2018
06:01 PM
Brilliant! Thanks so much
... View more