Member since
06-26-2015
515
Posts
137
Kudos Received
114
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2022 | 09-20-2022 03:33 PM | |
5602 | 09-19-2022 04:47 PM | |
3037 | 09-11-2022 05:01 PM | |
3354 | 09-06-2022 02:23 PM | |
5297 | 09-06-2022 04:30 AM |
02-08-2022
01:02 PM
The flow that you are trying to implement is not very efficient and it's hard to achieve what you want to do in that way. You should try to refactor it using record-based processors, which is much simpler and more efficient to handle a large number of records. Something like this: ExecuteSQLRecord -> QueryRecord -> PutDatabaseRecord ExecuteSQLRecord - Query and stream records from the source database QueryRecord - convert the records from the source to target format. (e.g. SELECT id, value FROM FLOWFILE) PutDatabaseRecord - insert the converted records into the target database. André
... View more
02-07-2022
07:57 PM
@an_dutra My guess is that it's a misconfiguration on your cluster. I just tested this on my Kafka cluster and once the certificate expires, if I try to connect to the cluster with a Kafka client I get the following exception: Caused by: sun.security.validator.ValidatorException: PKIX path validation failed: ... Caused by: java.security.cert.CertPathValidatorException: validity check failed ... Caused by: java.security.cert.CertificateExpiredException: NotAfter: Tue Feb 08 03:45:00 UTC 2022 The Kafka brokers will continue to run, though. However, if they are stopped and I try to start them again, they will fail to start with the same exception as the one above.
... View more
02-07-2022
02:36 PM
What @DigitalPlumber said. Also make sure that Match Requirement is set to "content must contain match", otherwise it won't work.
... View more
02-06-2022
09:11 PM
1 Kudo
You need to find out what's the serializer that's being used to write data to Kafka and use an associated deserializer to read those messages.
... View more
02-06-2022
07:56 PM
Without having more information, it seems to me that the content of your metadata file is not correct. It seems to be a SAML Assertion, rather than a SAML Metadata document.
... View more
02-06-2022
07:45 PM
Hi, Minh, How and where from did you generate the metadata.xml file? André
... View more
02-06-2022
04:18 PM
You can try the following Jolt spec in a JoltTransformRecord processor to change the name of one or more columns: Jolt Transformation DSL: Chain Jolt Specification: [ { "operation": "shift", "spec": { "*": "&", "surname": "lastname" } }, { "operation": "remove", "spec": { "surname": "" } } ]
... View more
02-02-2022
06:35 PM
That's an odd thing to do 🙂 If you need to use another port for some reason, it would be better to change the ports on all hosts consistently, using the "TCP Port" or the "TLS/SSL Port" properties in Cloudera Manager, whether are you connecting without TLS or with it, respectively. It is possible to configure ports on a host-by-host basis, but it makes it harder to maintain and client configuration becomes a little more cumbersome. To change the port for a particular host, go to Kafka > Instances > Click on the broker your want the change the port for > Configuration > Continue Editing Role Instance. Then enter the following in the "Kafka Broker Advanced Configuration Snippet (Safety Valve) for kafka.properties" property: port=9096 listeners=PLAINTEXT://:9096 The PLAINTEXT value will depend on your cluster config: PLAINTEXT: No Kerberos, No TLS SSL: No Kerberos, Using TLS SASL_PLAINTEXT: Using Kerberos, No TLS SASL_SSL: Using Kerberos, Using TLS After that restart the Broker instance that was reconfigured.
... View more
02-01-2022
08:45 PM
Some more examples here: https://github.com/asdaraujo/cdp-examples
... View more
08-16-2019
07:33 AM
1 Kudo
Hi, @hpasumarthi , It seems you missed one installation step. Besides installing the parcel you have to also download the NIFI CSD, copy it to /opt/cloudera/csd and restart the cloudera-scm-server service, as described here: https://docs.hortonworks.com/HDPDocuments/CFM/CFM-1.0.0/installation/content/get-csd.html After you do this, the NiFi service will appear in the list. Regards, André
... View more