Confluent Cloud Demo | Create Apache Kafka Cluster | Connect to Confluent Cloud with Spring Boot

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • This videos explain about creating environments, cluster for Apache Kafka on Confluent Cloud platform. It also exhibits connecting to Kafka cluster created in Confluent Cloud, produce & consume events.
    Like | Subscribe | Share
    I have outlined Spring Kafka related properties used to connect Confluent Cloud platform in the video -
    spring:
    kafka:
    bootstrap-servers: confluent-cloud-broker-url:9092
    properties:
    schema:
    registry:
    url: schema-registry-url
    basic:
    auth:
    credentials:
    source: USER_INFO
    user:
    info: SCHEMA_REGISTRY_API_KEY:SCHEMA_REGISTRY_SECRET
    sasl:
    jaas:
    config: org.apache.kafka.common.security.plain.PlainLoginModule
    required username="KAFKA_API_KEY" password="KAFKA_SCHEMA_REGISTRY";
    mechanism: PLAIN
    security:
    protocol: SASL_SSL
    ssl:
    endpoint:
    identification:
    algorithm: https
    consumer:
    autoOffsetReset: earliest
    group-id: spring-boot-avro-consumer-id
    keyDeserializer: org.apache.kafka.common.serialization.StringDeserializer
    properties:
    specific:
    avro:
    reader: true
    valueDeserializer: io.confluent.kafka.serializers.KafkaAvroDeserializer
    producer:
    keySerializer: org.apache.kafka.common.serialization.StringSerializer
    valueSerializer: io.confluent.kafka.serializers.KafkaAvroSerializer

Комментарии • 15

  • @cheshvikaraj7769
    @cheshvikaraj7769 Год назад +1

    nice explanation, thank you

  • @manikyamsai3667
    @manikyamsai3667 6 месяцев назад +1

    Hi Sir, am not able to see skip payment option. What should i do. Please tell me ?

  • @alejandrasilva8008
    @alejandrasilva8008 4 месяца назад

    💯👏👏👏👏

  • @HenryLeu
    @HenryLeu 9 месяцев назад +1

    Can you also do a video using Confluent Kafka Client Java? My Java application cannot connect to the Confluent Cloud cluster.

  • @RajPatel-co6yz
    @RajPatel-co6yz 10 месяцев назад +1

    Does this works in Android as well consider it is working in IntelliJ?

  • @debjitchattopadhyay7627
    @debjitchattopadhyay7627 Год назад

    Hi, can you please make a tutorial where we are using kafka JSON Schema to consume messages from confluent cloud topic. I am currently stuck with this, a video on this would be really helpful.
    Thanks

  • @sarapallimonisha926
    @sarapallimonisha926 9 месяцев назад

    Can you please help me in setting up confluent center , i want know what changes has to be made in properties file to run control center for cluster in confluent cloud locally
    Your reply means a lot

  • @manideepkumar959
    @manideepkumar959 8 месяцев назад

    vishal now its asking mandatory credit card -its saying error as Forbidden: No credit card on file

  • @yimsotharoth1755
    @yimsotharoth1755 Год назад

    hello sir , can I get your source code for learning purpose only because I am new to both springboot and kafka. I seemed to cannot send the data to the kafka topic

  • @sivashankar801
    @sivashankar801 Год назад

    Can you tell me how can application connect to multiple clusters

    • @adityanjsg99
      @adityanjsg99 7 месяцев назад

      An Application runs inside a single cluster

  • @prateekashtikar8631
    @prateekashtikar8631 4 месяца назад

    Link to source code please?

  • @jasonlee4209
    @jasonlee4209 Год назад

    Can share your spring boot code link?