Member since
05-20-2020
125
Posts
6
Kudos Received
6
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3184 | 10-25-2021 01:17 AM | |
| 4645 | 10-18-2021 07:13 AM | |
| 6168 | 10-03-2021 11:54 PM | |
| 1682 | 07-11-2021 01:21 PM | |
| 16416 | 04-19-2021 02:50 AM |
10-25-2021
01:17 AM
1 Kudo
Hello @roshanbi JSON is one of the best data exchange format which is lightweight and compact. C/DSV can be used when large dataset, with bandwidth limits are to be sent, but DSV cannot be used where the data is complex and unstructured; there comes in JSON. So, as you said, you are are seeing a better performance with DSV, that is because it does not contain attribute-value pair as in JSON (which makes it structured). To fine tune you application, you can use Compression.
... View more
10-18-2021
07:13 AM
Yes, there has to be a corresponding user in Ranger to authorise, it can not be just a certificate. You can use Kafka SSL Authentication by setting it up for 2 way https://docs.cloudera.com/cdp-private-cloud-base/7.1.6/kafka-securing/topics/kafka-secure-auth-tls-broker.html and if you want Authorisation(via Ranger) add the user https://docs.cloudera.com/runtime/7.2.8/security-ranger-authorization/topics/security-ranger-users-groups-permissions.html The same is also discussed here - https://cwiki.apache.org/confluence/display/KAFKA/KIP-371%3A+Add+a+configuration+to+build+custom+SSL+principal+name Hope this helps.
... View more
10-18-2021
04:05 AM
Hello Is this during Kafka start or Kafka Mirror Maker start? What if you try to pass the values in "Kafka Broker Advanced Configuration Snippet (Safety Valve) for ssl.properties" to pass the properties (ssl.keystore.password, ssl.key.password and ssl.truststore.password. i.e, without .generator)? Kafka MirrorMaker has a known issue: .generator properties do not work for producer configs. This affects CDK 3.X (CDH 6.X contains a fix for this issue from 6.2). - CDH-73094 Which version are you using? Please specify both CM and CDH version. This can cause issue too if they are not compatible. Is this an upgrade cluster or new?
... View more
10-05-2021
09:29 AM
I believe the user "some_user" exists but not the 'OU=Dept,O=Company,C=DE,ST=Germany,CN=some_user' You should configure ssl.principal.mapping.rules to skip these warnings.
... View more
10-03-2021
11:54 PM
Hello @DA-Ka The data might be skewed in one of the disks because some of the heavily used topics/partitions are in that particular disk. You may want to profile the data residing (sort the kafka logs.dir) and reassign them to the other disk using the partition reassignment tool kafka-reassign-partition.sh or manually. du -sh /kafka-logs/*
... View more
08-11-2021
10:18 PM
https://www.youtube.com/watch?v=UrX2RWM2vQQ
... View more
07-11-2021
01:21 PM
Hello, Please refer the document to help you with SSL authentication enabled - https://registry-project.readthedocs.io/en/latest/security.html?highlight=ssl Thanks & Regards, Nandini
... View more
07-06-2021
12:05 AM
I believe this is what you are looking for https://docs.cloudera.com/cdp-private-cloud-base/7.1.6/srm-using/topics/srm-migrating-consumer-groups.html
... View more
04-19-2021
02:50 AM
1 Kudo
Hello @PabloMO , As the Spoiler Error pointed by you,the versions are not matching. You can check it by running "which python" You can override the below two configs in /opt/cloudera/parcels/CDH-<version>/lib/spark/conf/spark-env.sh and restart pyspark. export PYSPARK_PYTHON=<same version of python>
export PYSPARK_DRIVER_PYTHON=<same version of python> Hope it helps. Thanks & Regards, Nandini
... View more
03-16-2021
01:28 AM
Hello @d33play I checked the documents again and found there is an internal jira CDH-72683 which was tracked for CDH versions to support Kafka Storage Handler. Kafka Storage Handler is a part of Hive 3.x version but CDH 6.1.1 comes with Apache Hive 2.1.1 Hence it is not supported in CDH versions but is available with CDP. https://docs.cloudera.com/runtime/7.2.0/release-notes/topics/rt-runtime-component-versions.html https://docs.cloudera.com/cdp-private-cloud-base/7.1.5/runtime-release-notes/topics/rt-pvc-runtime-component-versions.html So, the KafkaStorageHandler package will not work with Hive 2.1.1. Hope this information helps. Thanks and Regards, Nandini
... View more