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

Tracking issues of Reading Iceberg Table Support #11947

Closed
5 tasks done
Xuanwo opened this issue Jul 3, 2023 · 1 comment
Closed
5 tasks done

Tracking issues of Reading Iceberg Table Support #11947

Xuanwo opened this issue Jul 3, 2023 · 1 comment

Comments

@Xuanwo
Copy link
Member

Xuanwo commented Jul 3, 2023

This issue is used to track the progress of reading iceberg table data.

After #11923, databend has the basic functional support for reading iceberg table data. But there are still a lot of work to do.

Powered by icelake

Show time

CREATE CATALOG iceberg_ctl
TYPE=ICEBERG
CONNECTION=(
    URL='s3://testbucket/iceberg_ctl/'
    AWS_KEY_ID='minioadmin'
    AWS_SECRET_KEY='minioadmin'
    ENDPOINT_URL='http://127.0.0.1:9900'
);

SELECT * FROM iceberg_ctl.iceberg_db.iceberg_tbl;

Tasks

Research

Merge parquet reader

Iceberg table now read data via icelake which uses parquet. Databend has three different implementations of parquet read. Maybe we should find a way to merge the implementations of parquet files.

Remove the global context of iceberg tables

Databend doesn't support init a table in async way, which enforce us to store the table info gloablly in context. We should find a way to remove it.

@Xuanwo
Copy link
Member Author

Xuanwo commented Jul 31, 2023

The iceberg is now ready to be read (without optimization). Let's move on to the next stage.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant