Member since
11-22-2016
10
Posts
22
Kudos Received
0
Solutions
06-26-2020
08:27 AM
@Kapardjh, As this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question.
... View more
03-09-2018
03:34 AM
1 Kudo
@Constantin Stanca Command worked. I have some bad blocks, but it is not a big deal. This is my sandbox environment. Lesson learned to take a cold backup. Thank you so much!
... View more
03-16-2017
05:11 PM
@Constantin Stanca Grrrr... Not good. Thanks.
... View more
12-18-2016
09:51 PM
6 Kudos
@Andi Sonde You will use Kafka clients when you are a developer, you want to connect an application to Kafka and can modify the code of the application, and you want to push data into Kafka or pull data from Kafka. You will use Connect to connect Kafka to datastores that you did not write and can’t or won’t modify their code. For data stores where a connector already exists, Connect can be used by non-developers who will only need to configure the connectors. If you need to connect Kafka to a data store and a connector does not exist yet, you can choose between writing an app using the Kafka clients or the Connect APIs. Connect is recommended because it provides out of the box features like configuration management, offset storage, parallelization, error handling, support for different data types and standard management REST API. Writing a small app that connects Kafka to a data store sounds simple, but there are many little details you will need to handle around data types and configuration that make the task non-trivial - Kafka connect handles most of this for you, allowing you to focus on transporting data to and from the external stores. I realize that is a bit out of scope, but I'd like to recommend Apache NiFi as an alternative to Kafka Connect. See: https://nifi.apache.org/ NiFi is a good alternative to Flume too. NiFi provide an advanced data management capability covering easily Kafka producer or Kafka consumer needs with no coding, visually, at most, some regular expressions.
... View more