jerryshao commented on code in PR #63: URL: https://github.com/apache/gravitino-site/pull/63#discussion_r2077407594
########## blog/2025-05-07-gravitino-0-9-0-release-notes.mdx: ########## @@ -0,0 +1,115 @@ +--- +title: Apache Gravitino 0.9.0 - Focus on AI, data governance, and security with multi-dimensional feature upgrade +slug: gravitino-0-9-0-release-notes +authors: [roryqi] +tags: [apache,gravitino,metadata,multicloud,model,security,government] +--- + +Gravitino 0.9.0 focused more on AI, data government, and security. Many features are used in the production environment. The community received much feedback from users in many well-known companies. The AI and security features have raised more and more attention. +In this version, the community optimizes the user experience regarding fileset catalogs and model catalogs. This allows users to manage their unstructured AI data and model data more conveniently. + +Talking about data lineage, the community added a data lineage interface. Users can implement their custom data lineage plugin to adapt to their system. +For security, the community corrects some privilege semantics and fixes many authorization plugin corner cases to make the system more robust. + +## Model Catalog + +Before 0.9.0, the model catalog was immutable, which was not convenient. It can alter models and model versions, and supports adding tags in the new version [#6626](https://github.com/apache/gravitino/issues/6226) [#6222](https://github.com/apache/gravitino/issues/6222). + +## Fileset Catalog + +Gravitino now supports multiple named storage locations within a single fileset and placeholder-based path generation. + +With multiple locations support, users can reference data across different file systems (HDFS, S3, GCS, local, etc.) through a unified fileset interface, each with a unique location name. + +The placeholder feature allows dynamic storage path generation using the `{{placeholder}}` syntax, where placeholders are automatically replaced with corresponding fileset properties. + +These enhancements significantly improve flexibility for multi-cloud environments and complex data organization patterns while maintaining a clean abstraction layer for data assets management [#6681](https://github.com/apache/gravitino/issues/6681). + +## GVFS (Gravitino Virtual File System) + +GVFS has been enhanced to support accessing multiple locations within filesets.Users can now select which location to use through configuration properties, environment variables, or fileset default settings. Review Comment: Add a whitespace before "Users". -- 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]
