https://flink.apache.org/ logo
Join Slack
Powered by
# random
  • g

    George Leonard

    12/07/2025, 12:27 PM
    for my paimon catalog i'm using a jdbc catalog interface backed by postgresql. I have a source table, which is postgresql based, as a cdc source, that I want to record into a catalog, what catalog are you guys using, don't want to use HMS, trying to simplify the stack.
  • g

    George Leonard

    12/07/2025, 3:31 PM
    to expand. my Flink sql, this would of course be applicable to any external source table (PostgreSQL, MySQL, MongoDB, REDIS ... etc).
    Copy code
    -- Inbound from PostgreSQL via CDC Process
    CREATE CATALOG postgres_catalog WITH 
        ('type'='generic_in_memory'); 
    
    CREATE DATABASE IF NOT EXISTS postgres_catalog.demog;
    In which I then create the below. I'd like to rather use a better catalog option, that includes persistence.
    Copy code
    CREATE OR REPLACE TABLE postgres_catalog.demog.accountholders (
         _id                BIGINT                  NOT NULL
        ,nationalid         VARCHAR(16)             NOT NULL
        ,firstname          VARCHAR(100)
        ,lastname           VARCHAR(100)
        ,dob                VARCHAR(10) 
        ,gender             VARCHAR(10)
        ,children           INT
        ,address            STRING
        ,accounts           STRING
        ,emailaddress       VARCHAR(100)
        ,mobilephonenumber  VARCHAR(20)
        ,created_at         TIMESTAMP_LTZ(3)
        ,WATERMARK          FOR created_at AS created_at - INTERVAL '15' SECOND
        ,PRIMARY KEY (_id) NOT ENFORCED
    ) WITH (
         'connector'                           = 'postgres-cdc'
        ,'hostname'                            = 'postgrescdc'
        ,'port'                                = '5432'
        ,'username'                            = 'dbadmin'
        ,'password'                            = 'dbpassword'
        ,'database-name'                       = 'demog'
        ,'schema-name'                         = 'public'
        ,'table-name'                          = 'accountholders'
        ,'slot.name'                           = 'accountholders0'
        -- experimental feature: incremental snapshot (default off)
        ,'scan.incremental.snapshot.enabled'   = 'true'               -- experimental feature: incremental snapshot (default off)
        ,'scan.startup.mode'                   = 'initial'            -- <https://nightlies.apache.org/flink/flink-cdc-docs-release-3.1/docs/connectors/flink-sources/postgres-cdc/#startup-reading-position>     ,'decoding.plugin.name'                = 'pgoutput'
        ,'decoding.plugin.name'                = 'pgoutput'
    );
    👋 1
  • y

    Young

    12/10/2025, 11:53 AM
    If you’re evaluating systems for large-scale JSON analytics, such as Apache Doris(https://doris.apache.org/), Snowflake, ClickHouse, Elasticsearch, or more, start with this list of questions: 1️⃣ Can it handle 1K, 5K, 10K JSON fields without dropping performance? 2️⃣ Does it support type evolution without breaking ingestion? 3️⃣ Can you apply indexes selectively to the fields that matter? 4️⃣ Does query performance degrade after schema expansion? Apache Doris check these boxes ✅, thanks to the VARIANT data type. With Apache Doris VARIANT data type, you can: - Store raw JSON as a VARIANT column - Automatically extract JSON fields into sub-columns during ingestion - Define schema templates to control data types for groups of fields - Add indexes (inverted, bloomfilter, minmax, vector) to specific JSON patterns - Scale to 1K–10K+ JSON fields while keeping queries fast 🔗 Watch the full webinar for more info on Variant in Apache Doris (contains demo: querying 1 billion rows of JSON data in seconds): https://lnkd.in/g6JKcx4w
  • u

    오찬해

    12/11/2025, 11:49 AM
    Hello! I have a question. 🙂 I have a question about JIRA registration. I requested to join the Flink JIRA some time ago with the email, but I haven't received a confirmation yet. Does anyone know where I could follow up on this request?
  • a

    Anatoliy Samsonov

    12/11/2025, 12:43 PM
    Hello guys! Could someone advise which channel is appropriate for raising a Flink issue? I'd like to start a thread but want to make sure it's the right place.
    a
    • 2
    • 2
  • a

    Alexey

    12/15/2025, 9:07 AM
    Hi there, could someone share a link on Paimon Slack channel if any?
  • g

    George Leonard

    12/15/2025, 1:10 PM
    ok, just going to ask as i'm loosing my cool/marbles/sanity here, trying to get this jar "pie" build. anyone have a docker compose for 1.20.1 or 1.20.2 that includes the following. iceberg 1.9.1 catalog on jdbc -> postgres, chosen as it can handle both apace iceberg and apache paimon Iceberg storage on Minion/S3 file format will be parquet. flink cdc 3.5.0
    m
    • 2
    • 4
  • y

    Young

    12/15/2025, 2:58 PM
    ⏰ Last Call: Don’t miss our webinar on Hybrid Search & Context Engineering with Apache Doris 4.0 🎟️ RSVP: https://lnkd.in/gvczv4zi AI models won't work well without the right context. But retrieving the right context at scale (think datasets in the billions) is a real challenge. Join us to learn how Apache Doris 4.0 solves this with Hybrid Search, bringing together: 1️⃣ Vector search for semantic relevance 2️⃣ Full-text search (BM25 + inverted index) 3️⃣ High-performance structured analytics All in one unified SQL engine Come and see real use cases of how data teams are using Doris 4.0 to build accurate and cost efficient their AI application.
  • g

    George Leonard

    12/17/2025, 4:49 AM
    Got it working Busy writing up the docs. Will share as soon as published Apache Flink, with Apache iceberg, using a jdbc based catalog, with postgresql for catalog persistence. Object storage using MinIO. And Apache paimon, also using jdbc for catalog.
  • g

    George Leonard

    12/17/2025, 12:02 PM
    https://medium.com/@georgelza/apache-iceberg-and-apache-paimon-utilizing-jdbc-base[…]stgresql-for-persistence-8008ace4d794?postPublishedType=initial
    🙌 2
  • g

    George Leonard

    12/17/2025, 1:47 PM
    guys, how / where do we log a feature request, other projects allow you to raise a issue, and then tag it as a feature request.
    a
    • 2
    • 1
  • g

    George Leonard

    12/18/2025, 4:05 PM
    Apache Polaris Catalog (includes the Polaris tools Console/UI) for Apache Iceberg, with Apache Flink in the middle... Storage on MinIO. https://medium.com/@georgelza/apache-iceberg-with-apache-polaris-as-catalog-with-p[…]istence-minio-object-store-dd7003d99723?postPublishedType=repub
  • g

    George Leonard

    12/20/2025, 2:27 PM
    guys, are there a UI for the JDBC based catalogs, that expose the catalogs, databases and tables and then the associated metadata etc down the stack...
  • u

    徐科

    12/29/2025, 11:19 AM
    May I ask if there is a minimum version requirement for Kubernetes when deploying Flink on it?
  • g

    George Leonard

    12/31/2025, 6:10 PM
    happy happy new year guys. wishing you all an amazing 2026
    👍 1
    r
    • 2
    • 1
  • c

    Chiara

    01/02/2026, 7:40 PM
    🔥*Open Lakehouse & AI meetup in Chicago on Jan 22* Folks interested and/or using ClickHouse®, Apache Iceberg, lakehouse performance, or AI agents, this event is for you. Talks include: • Building a Foundation for AI with ClickHouse® + Iceberg — compute/storage separation, real perf results, roadmap, and how to get started (Robert Hodges, Altinity) • High-Performance Analytics on Iceberg — real bottlenecks and how modern engines fix them at scale (Chelsea Wang, CelerData) • Iceberg for Agents — turning lakehouse data into AI-ready context, structured RAG, and a live open-source demo (Andrew Madson, Fivetran) Expect real code and architecture and demos. 👉 https://luma.com/699ffm7v
  • j

    Jan Siekierski

    02/15/2026, 10:14 AM
    I've been getting into Claude lately and didn't find any Flink skills available: https://skills.sh/?q=flink anyone thought making one? I might when I have some capacity but lack of anything available was a surprise. On another hand, I found Claude doing really well on FlinkSQL tasks but it did run into some repeatable issues that could have been avoided. If you don't know what skills are in Claude (and probably other coding agents as well) - lazily loaded, procedural instructions on how to achieve given goals. For reference: the most popular Kafka skill: https://skills.sh/404kidwiz/claude-supercode-skills/kafka-engineer
    m
    r
    • 3
    • 3
  • s

    Slackbot

    02/25/2026, 5:56 PM
    @Sreeja Govardhana joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    02/27/2026, 7:51 PM
    @Mohamed Motaz joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    03/03/2026, 2:18 PM
    @Munindra Naik joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    03/07/2026, 1:58 AM
    @Janakan Siva joined #random. They’re also new to Apache Flink.
  • m

    Michael Goodnow

    03/17/2026, 1:42 PM
    Question, who is in charge of building a released version of flink-connector-mongodb ...need that awesome work Rahul Teke did to contribute the Flink 2 update
  • s

    Shaun Wanford

    03/19/2026, 10:24 PM
    @Shaun Wanford has left the channel
  • s

    Slackbot

    03/21/2026, 12:50 AM
    @Jared Yu joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    03/24/2026, 6:34 PM
    @Ale joined #random. They’re also new to Apache Flink.
  • a

    Ale

    03/24/2026, 8:11 PM
    Hello team! I am looking around on flink project, to start make a contributions. I am new on apache organization I register for ICLA already but my request to jira board is pending apache by email. Is there someone, that I can contact , in order to see if everything is ok? Thanks!
  • s

    Slackbot

    03/25/2026, 6:20 AM
    @Hao Li joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    03/25/2026, 9:10 AM
    @김상진 joined #random. They’re also new to Apache Flink.
  • s

    Slackbot

    03/27/2026, 1:15 PM
    @Allyson Martins joined #random. They’re also new to Apache Flink.
  • a

    Adam Bell

    05/29/2026, 11:55 AM
    Hi Just wondering if anyone had read (or wants to read) this article about comparing Flink and Spark Real-Time Mode (RTM). It makes an extremely bold claim that
    Spark can now process events in milliseconds; up to 92% faster than Flink
    . Very wishful thinking I think and I'm guessing there is a hint of bias given that the article was written by Databricks. I've been reading up on their process for comparing the two (I've never used Spark so I don't understand aspects of the code), but on the face of it, it looks like: • Flink Job (parallelism = 1) | Spark Job (parallelism = 40 - i think this is what
    spark.sql.shuffle.partitions
    does) • Flink Job (runs on AWS Managed Apache Flink 1.18 - limits optimisation) | Spark Job (runs on Databricks cluster - could be optimised) Doesn't seem like a fair fight to me (although I'm happy to be told otherwise if it is). Here is the article and Github repo for reference if anyone wants to have a look and share their thoughts. I'd love to hear them Article: https://www.databricks.com/blog/real-time-mode-ultra-low-latency-streaming-spark-apis-without-second-engine Github Repo: https://github.com/databricks-solutions/latency-benchmarks/tree/main
    d
    • 2
    • 3