Jacobo Calderon
07/22/2025, 9:54 PMTal Sofer
07/23/2025, 6:14 AMIn the Open Source questions, is there a way to manage multiple workspaces or user access to Repos/branches?There is no built-in support for access control in the open source. You have the option of building and maintaining an ACL server. as for working with Delta tables over lakeFS - absolutely. You have two options: 1. Importing tables into lakeFS (without copying table data) 2. Writing delta tables directly to lakeFS You may want to check out our delta lake integration docs
Jacobo Calderon
07/23/2025, 10:59 AMCREATE OR REPLACE TABLE [table_name]
USING delta
LOCATION `/path/to/delta_log`
Can we do something similar to point to the parquet files and create a logical table around it? So when I query:
select * from [repo].[branch].[table]
I can actually query all partitioned tables (current and incremental)Tal Sofer
07/23/2025, 12:17 PMTal Sofer
07/23/2025, 12:18 PMJacobo Calderon
07/23/2025, 12:22 PMTal Sofer
07/23/2025, 12:37 PMJacobo Calderon
07/23/2025, 12:38 PMTal Sofer
07/23/2025, 12:38 PMJacobo Calderon
07/23/2025, 12:39 PMTal Sofer
07/23/2025, 12:41 PM