Skip to main content

Kafka Streaming Concepts

Pro and Cons​

Kafka provides faster and more reliable streams comparing to GraphQL subscriptions due to the following advantages:

  1. It has lower lattency due to the shorter data pipeline, as GraphQL subscriptions involve custom databases and additional logic to process, filter and format the data
  2. Better reliabilty of the connection protocol compared to WebSocket interface, better optimised for persistent connections
  3. Messages from Kafka topic can be read from the latest offset, it is possible to create consumers that have all messages without gaps and interruption.
  4. Scalability is better as multiple consumers may split the load to consume one topic, automaticlly redistributing load on them

There are some disadvantages however compared to GraphQL subscriptions:

  1. There is no way to consume Kafka streams in browser. You can only use it only on server side.
  2. It is not possible to pre-filter or re-format messages on Kafka streams, as schema is pre-defined, and you need to make all post-processing in your code. Some calculations, as usd value of trade have to be executed on client side as well
  3. IDE does not support Kafka streams yet, debugging the code have to be done on consumer side

Kafka streams contains same set of data as GraphQL subscriptions, and the decision which one to use dependent more on your application type. Consider the following factors when selecting which technology to use.

Consider using GraphQL if:​

  • You are building a prototype and the speed of development is a primary factor for you. Integrating GraphQL is easier, IDE helps to de-bug queries and see the data you receive in application;
  • Your application uses archive and real-time data altogether. GraphQL has a unified interface to query and subscribe the data streams, that makes such application easier to build and maintain;
  • Your application provides different data on web pages, for example show price diagrams for trading. Then GraphQL makes simpler to filter the data and make queries based on page content;
  • There is no server side for your application, or it is minimal. Then GraphQL can be integrated directlty to JS client code;

Consider using Kafka if:​

  • Latency is the most important factor and you building fast scalable application in cloud or on dedicated servers;
  • It is not acceptable to lose any single message from the stream, you need persistent reliability;
  • You have a complex calculations, filtering or formatting of the data that GraphQL does not deliver. Then instead of consuming unfiltered stream from GraphQL consider switch to Kafka.

This decision sometimes not straightforward, consult our sales and support team, we will help you find optimal solution.

Important Notes about Kafka Streams​

  • Stream is not filtered, it contains all the messages with a complete data for every topic. It means you need to have a good throughput network, fast server and code to efficently consume and parse it;
  • Granularity of data message is different in topics, depending on the nature of the data. Topic that
  • It is not guaranteed that the message will come in sequence of the block number, time or any other attribute.
  • Messages in topic may have duplicates. If this makes a problem, your code must have a storage or the cache to remember which messages are already processed to avoid double processing.
  • Large messages can be separated on smaller ones, as Kafka does not allow pass more than 1 Mbyte in one message. For example, first 1200 transaction may come in one message, and the remaining 1000 will follow in another.

Kafka Streams Lattency​

Topics for the same blockchain are not equal by lattency. If you have requirements on lattency, consider to select the proper stream for your application:

  1. Broadcasted topics are available for most blockchains. They can be faster, as the transactions are not waiting till include and commit the block in the chain
  2. Streams are chained while they are parsing, the closer the topic to the original blockchain node, the less is the lattency. Consider selecting the closest topic that you can effectively parse. Every transformation introduces 100-1000 msec latency in the overall topic delay.

The diagram shows the data pipeline of the streams on the way to KAFKA topics. Broadcasted and committed transaction datapipelines are identical:

Topic Data Pipeline

Consuming Messages​

Your application must implement the code:

  • Connect to Kafka server;
  • Subscribe to particular topic(s);
  • Read and parse messages;

Connect to Kafka server​

You need the following to connect:

  1. server list for connection is "kfk0.bitquery.io:9093,kfk1.bitquery.io:9093,kfk2.bitquery.io:9093"
  2. username and password for SASL over SSL authentication, that you will receive from our team
  3. certificate files for SSL ( client.key.pem, client.cer.pem, server.cer.pem ), you receive them from support team.

Example of connection config looks as:

sasl_conf = {
'bootstrap.servers': 'kfk0.bitquery.io:9093,kfk1.bitquery.io:9093,kfk2.bitquery.io:9093',
'security.protocol': 'SASL_SSL',
'sasl.mechanism': 'SCRAM-SHA-512',
'sasl.username': '<YOUR USERNAME HERE>',
'sasl.password': '<YOUR PASSWORD HERE>',
'ssl.key.location': 'client.key.pem',
'ssl.ca.location': 'server.cer.pem',
'ssl.certificate.location': 'client.cer.pem',
'ssl.endpoint.identification.algorithm': 'none'
}

Subscribe to particular topic(s)​

To receive messages you first create consumer and subscribe it to a topic or list of topics. Topic contains messages of the same type, for example:

  • tron.transactions contains messages with transactions, smart contract calls and events in Tron blockchain
  • tron.broadcasted.transactions contains messages from mempool broadcasted channel ( before they included in blocks )
  • tron.dextrades contains trades happen on Tron blockchain
  • solana.dextrades contains trades happen on Solana blockchain
  • and so on...

General pattern of the topic name is:

<BLOCKCHAIN_NAME>.<MESSAGE_TYPE>
<BLOCKCHAIN_NAME>.broadcasted.<MESSAGE_TYPE>

MESSAGE_TYPE is specific on blockchain, most blockchain has topics for:

  • dextrades - events from DEX trading
  • dexorders - events on creation / chaing status of DEX orders
  • dexpools - events on creation / chaing status of DEX pools
  • transactions - events, calls, transactions
  • transfers - token and coin transfers events
  • blocks - new blocks

Contact our support team for the topics that you can connect to for your specific needs.

When subscribing, you also specify some important properties:

  • Configuration for offset management. It is done a bit differently in Kafka libraries, but the idea is that you have a choice of:

    1. receiving only latest messages, the next time you re-connect it will re-wing to the last one. It is controlled by config: autoCommit: false, fromBeginning: false, auto.offset.reset: latest
    2. or you want to consume all messages and do not lose any. Note that in this case when you re-start your server you will have a gap as it starts reading from the last message you received! You have to configure it as: autoCommit: true, fromBeginning: false, auto.offset.reset: latest. Check https://docs.confluent.io/platform/current/clients/consumer.html#offset-management-configuration for more info.
  • Group ID. Group ID you have to specify when creating a consumer. It must start with your username. In most cases you need just one group ID that can be set the same as username. You may need several group IDs in an advanced configuration when you using multiple independent applications consuming same stream.

Note that you can deploy many instances of your application with same Group ID for fault tolerance and better performance. Then only one instance will receive the message from the topic, automatically re-distributing the load across your servers.

Typicaly you need setup of one consumer per one topic, as the message parsing for them anyway will need different code.

Read and parse messages​

Your consumer will read messages from the topic, and you will be able to parse them. Depending on the setting you used to subscribe to topic, you will read the last message, or some message on the past that is the net message to read. If you do not read messages fast enough, the lag will be accumulated, and the latency will grow.

Message in topic is JSON. Parse json code is specific for prgramming language that you use, but should be very simple.

Message contains the list of objects on the top level. Structure of objects corresponds to the topic that you consume. General schema is described in https://github.com/bitquery/streaming_protobuf. The top level element depends on which stream of which blockchain you use. For example, for DEX Trades on Solana you will have JSON structure as:

Documentation References​

Kafka has a lot of documentation in public access, generic and programming-language-specific.

Some links that you may find useful are:

In addition, you may need a reference to Bitquery schema for messages: