Apache Kafka – Consumer Group Example
Consumer group is a multi-threaded or multi-machine consumption from Kafka topics. Here we will discuss about Consumer Group Example of apache kafka. Consumer Group Consumers can join a group by…
Consumer group is a multi-threaded or multi-machine consumption from Kafka topics. Here we will discuss about Consumer Group Example of apache kafka. Consumer Group Consumers can join a group by…
Here we will discuss about Simple Producer Example of apache kafka. Let us create an application for publishing and consuming messages using a Java client. Kafka producer client consists of…
Now that we have our source code in the Git repository and all of our initial code works on the build server, it is time to create a project in…
Updating Documents using cURL You can update a document in CouchDB by sending an HTTP request to the server using PUT method through cURL utility. Following is the syntax to…
First let us start implementing single node-single broker configuration and we will then migrate our setup to single node-multiple brokers configuration. Here we will discuss about basic operations of apache kafka. Hopefully…
This chapter discusses the date/time functions available in Teradata. Date Storage Dates are stored as integer internally using the following formula. ((YEAR - 1900) * 10000) + (MONTH * 100)…
The next key aspect is to ensure our baseline code is checked into our source code repository management server which is Git. To do this, we need to follow these…
Teradata provides several functions to manipulate the strings. These functions are compatible with ANSI standard. Sr.NoString Function & Description1||Concatenates strings together2SUBSTRExtracts a portion of a string (Teradata extension)3SUBSTRINGExtracts a portion…
Documents are CouchDB’s central data structure. Contents of the database will be stored in the form of Documents instead of tables. You can create these documents using cURL utility provided…
SET operators combine results from multiple SELECT statement. This may look similar to Joins, but joins combines columns from multiple tables whereas SET operators combines rows from multiple rows. Rules…