LiebingYu commented on issue #846:
URL: https://github.com/apache/fluss/issues/846#issuecomment-3345166542
@luoyuxia If no one is working on it, I’m willing to take it on.
I plan to add a new interface in `LakeCatalog`. Thus each lake plugin can
impement their own logic and in `CoordinatorService` we can check if the exist
`TableDescriptor` of lake table is compatible with the Fluss table's
`TableDescriptor`.
```java
@PublicEvolving
public interface LakeCatalog extends AutoCloseable {
/**
* Get a table in lake.
*
* @param tablePath path of the table to be created
* @throws TableNotExistException if the table not exists
*/
TableDescriptor getTable(TablePath tablePath) throws
TableNotExistException;
}
```
--
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]