NoahKusaba opened a new issue, #2861:
URL: https://github.com/apache/iceberg-rust/issues/2861

   ### Is your feature request related to a problem or challenge?
   
   Currently table scans are pinned to current snapshot for catalog backed 
providers
   `
           Ok(Arc::new(IcebergTableScan::new(
               table,
               None, // Always use current snapshot for catalog-backed provider
               self.schema.clone(),
               projection,
               filters,
               limit,
           )))
   `
   This is fine for single-node reads, but for a distributed engine, each 
remote node must read against the same snapshot_id the coordinator planned 
against. Otherwise a concurrent write during reads can result in worker nodes 
reading incorrect versions of the catalog.
   
   related to https://github.com/apache/iceberg-rust/pull/2613
   
   ### Describe the solution you'd like
   
   _No response_
   
   ### Willingness to contribute
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to