You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2021/05/18 03:53:05 UTC

[GitHub] [iceberg] jackye1995 commented on issue #2481: Allow snapshotting iceberg table (create new table based on certain Iceberg snapshot)

jackye1995 commented on issue #2481:
URL: https://github.com/apache/iceberg/issues/2481#issuecomment-842804809


   Yeah this is a common case that I also see many people trying to achieve through Iceberg. 
   
   For exposing to Spark and Hive, would view help? We can create "snapshot view" for people to query, for example:
   
   ```sql
   CREATE VIEW my_table_2020 AS SELECT * FROM my_table@1234567890;
   ```
   
   Then dropping the view would not affect anything of the underlying snapshot.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org