xloya commented on issue #5226:
URL: https://github.com/apache/gravitino/issues/5226#issuecomment-2434141741

   > It's useful to add this feature, but I have reservations about using the 
name `fileset` as it not a format.
   
   So what do you think of this name, we combine the actual file format name 
with fileset, so that we can distinguish it from the default implementation of 
other file formats and identify the file format used by Fileset:
   ```
   // Dataframe API
   val df = sparkSession
     .read
     **.format("tfrecord-fileset")**
     .load("gvfs://fileset/fileset_catalog/tmp/test_fileset")
     .where("date=20241021")
   
   // SQL API
   SELECT * FROM 
**`tfrecord-fileset`**.`gvfs://fileset/fileset_catalog/tmp/test_fileset` WHERE 
date = 20241022
   ```


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

Reply via email to