Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Query service process record repeatedly #4379

Open
2 tasks done
Shadowell opened this issue Oct 25, 2024 · 1 comment
Open
2 tasks done

[Bug] Query service process record repeatedly #4379

Shadowell opened this issue Oct 25, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@Shadowell
Copy link
Contributor

Shadowell commented Oct 25, 2024

Search before asking

  • I searched in the issues and found nothing similar.

Paimon version

Paimon 0.9

Compute Engine

Flink 1.18

Minimal reproduce step

  1. Create paimon catelog
    CREATE CATALOG paimon WITH ( 'type'='paimon', 'warehouse'='file:/tmp/paimon' );
    USE CATALOG paimon;
  2. Create table and insert one record
    CREATE TABLE DIM (k INT, v STRING, PRIMARY KEY(k) NOT ENFORCED) WITH ('bucket' = '1', 'deletion-vectors.enabled' = 'true');
    INSERT INTO DIM VALUES (1, 'a');
  3. Call Query Service
    CALL sys.query_service('default.DIM', 1);
    image
    image

image

  1. Insert another record
    INSERT INTO DIM VALUES (2, 'b');
    It shows records sent 4
    image

What doesn't meet your expectations?

Records sent should consistent with table record count

Anything else?

No response

Are you willing to submit a PR?

  • I'm willing to submit a PR!
@Shadowell Shadowell added the bug Something isn't working label Oct 25, 2024
@liyubin117
Copy link
Contributor

Is there any progress?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants