Apache Iceberg
21–30 of 68 posts
Re: Apache Iceberg
#22Does anyone know if Iceberg has plans to support similar use cases?
Re: Apache Iceberg
#23How do you query your iceberg tables? We are looking into moving away from Bigquery and Starrocks [1] looks like a good option. [1] https://www.starrocks.io/
Re: Apache Iceberg
#24Apache Iceberg is one of the emerging Open Table Formats in addition to Delta Lake and Apache Hudi [1]. [1] Open Table Formats: https://www.starburst.io/data-glossary/open-table-formats/
I’d also love to see a good comparison between “regular” Iceberg and AWS’s new S3 Tables.
Re: Apache Iceberg
#25I've been looking at Iceberg for a while, but in the end went with Delta Lake because it doesn't have a dependency on a catalog. It also has good support for reading and writing from it without needing Spark. Does anyone know if Iceberg has plans to support similar use cases?
That said, a catalog (which Delta also can have) helps a lot to keep things tidy. For example, I can write a dataset with Spark, transform it with dbt and a query engine (such as Trino) and consume the resulting dataset with any client that supports Iceberg. If I use a catalog, all happens without having to register the dataset location in each of these components.
Re: Apache Iceberg
#26ClickHouse has a solid Iceberg integration. It has an Iceberg table function[0] and Iceberg table engine[1] for interacting with Iceberg data stored in s3, gcs, azure, hadoop etc. [0] https://clickhouse.com/docs/en/sql-reference/table-functions... [1] https://clickhouse.com/docs/en/engines/table-engines/integra...
Re: Apache Iceberg
#27And yet there's still no straightforward way to write directly to Iceberg tables from Javascript as far as I know.
Re: Apache Iceberg
#28In the other hand, since one of the use cases they created it at Netflix was to consume directly from real time systems, the management of the file creation when updates to the data is less trivial (the CoW vs MoR problem and how to compact small files) which becomes important on multi-petabytes tables with lots of users and frequent updates. This is something I assume not a lot companies put a lot of attention to (heck, not even at Netflix) and have big performance and cost implications.
Re: Apache Iceberg
#29And yet there's still no straightforward way to write directly to Iceberg tables from Javascript as far as I know.