-
Notifications
You must be signed in to change notification settings - Fork 392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug report] 'ndbinfo','performance_schema','FEDERATED' engines are not supported in Gravitino MySQL catalog #5100
Comments
Starting from MySQL 5.5, the FEDERATED engine is installed by default but is not enabled, so you need to enable the |
Is this still an issue, @yuqi1129 can you please confirm this and close the issue accordingly? |
Okay, I believe we may need to refine the documents, according tog the details from MySQL documents, there may be different behavior depending on the MySQL version, detailed configuration, and the installed plugin. |
…type of MySQL catalog (#6209) ### What changes were proposed in this pull request? Add more details about the usage of engine type for MySQL catalog. ### Why are the changes needed? The value of engine type may be influenced by many factors like MySQL version, configurations and so on, we need to clarify it. Fix: #5100 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? N/A
…type of MySQL catalog (#6209) ### What changes were proposed in this pull request? Add more details about the usage of engine type for MySQL catalog. ### Why are the changes needed? The value of engine type may be influenced by many factors like MySQL version, configurations and so on, we need to clarify it. Fix: #5100 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? N/A
…type of MySQL catalog (#6213) ### What changes were proposed in this pull request? Add more details about the usage of engine type for MySQL catalog. ### Why are the changes needed? The value of engine type may be influenced by many factors like MySQL version, configurations and so on, we need to clarify it. Fix: #5100 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? N/A Co-authored-by: Qi Yu <[email protected]>
…ngine type of MySQL catalog (apache#6209) ### What changes were proposed in this pull request? Add more details about the usage of engine type for MySQL catalog. ### Why are the changes needed? The value of engine type may be influenced by many factors like MySQL version, configurations and so on, we need to clarify it. Fix: apache#5100 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? N/A
Version
main branch
Describe what's wrong
Some engines listed in the table are not support
https://gravitino.apache.org/docs/0.6.0-incubating/jdbc-mysql-catalog#table-properties
Error message and/or stacktrace
'''
"org.apache.gravitino.exceptions.GravitinoRuntimeException: Unknown storage engine 'FEDERATED'",
"\tat org.apache.gravitino.catalog.mysql.converter.MysqlExceptionConverter.toGravitinoException(MysqlExceptionConverter.java:47)",
"\tat org.apache.gravitino.catalog.jdbc.operation.JdbcTableOperations.create(JdbcTableOperations.java:109)",
"\tat org.apache.gravitino.catalog.jdbc.JdbcCatalogOperations.createTable(JdbcCatalogOperations.java:455)",
"\tat org.apache.gravitino.catalog.TableOperationDispatcher.lambda$internalCreateTable$23(TableOperationDispatcher.java:463)",
"\tat org.apache.gravitino.catalog.CatalogManager$CatalogWrapper.lambda$doWithTableOps$1(CatalogManager.java:132)",
'''
'''
[
"org.apache.gravitino.exceptions.GravitinoRuntimeException: Invalid performance_schema usage.",
"\tat org.apache.gravitino.catalog.mysql.converter.MysqlExceptionConverter.toGravitinoException(MysqlExceptionConverter.java:47)",
"\tat org.apache.gravitino.catalog.jdbc.operation.JdbcTableOperations.create(JdbcTableOperations.java:109)",
"\tat org.apache.gravitino.catalog.jdbc.JdbcCatalogOperations.createTable(JdbcCatalogOperations.java:455)",
"\tat org.apache.gravitino.catalog.TableOperationDispatcher.lambda$internalCreateTable$23(TableOperationDispatcher.java:463)",
"\tat org.apache.gravitino.catalog.CatalogManager$CatalogWrapper.lambda$doWithTableOps$1(CatalogManager.java:132)",
"\tat org.apache.gravitino.utils.IsolatedClassLoader.withClassLoader(IsolatedClassLoader.java:86)",
"\tat org.apache.gravitino.catalog.CatalogManager$CatalogWrapper.doWithTableOps(CatalogManager.java:127)",
"\tat org.apache.gravitino.catalog.TableOperationDispatcher.lambda$internalCreateTable$24(TableOperationDispatcher.java:461)",
"\tat org.apache.gravitino.
'''
'''
[
"org.apache.gravitino.exceptions.GravitinoRuntimeException: Unknown storage engine 'FEDERATED'",
"\tat org.apache.gravitino.catalog.mysql.converter.MysqlExceptionConverter.toGravitinoException(MysqlExceptionConverter.java:47)",
"\tat org.apache.gravitino.catalog.jdbc.operation.JdbcTableOperations.create(JdbcTableOperations.java:109)",
"\tat org.apache.gravitino.catalog.jdbc.JdbcCatalogOperations.createTable(JdbcCatalogOperations.java:455)",
"\tat org.apache.gravitino.catalog.TableOperationDispatcher.lambda$internalCreateTable$23(TableOperationDispatcher.java:463)",
"\tat org.apache.gravitino.catalog.CatalogManager$CatalogWrapper.lambda$doWithTableOps$1(CatalogManager.java:132)",
"\tat org.apache.gravitino.utils.IsolatedClassLoader.withClassLoader(IsolatedClassLoader.java:86)",
"\tat org.apache.gravitino.catalog.CatalogManager$CatalogWrapper.doWithTableOps(CatalogManager.java:127)",
"\tat org.apache.gravitino.catalog.TableOperationDispatcher.lambda$internalCreateTable$24(TableOperationDispatcher.java:461)",
"\tat org.apache.gravitino.catalog.OperationDispatcher.doWithCatalog(OperationDispatcher.java:117)",
'''
How to reproduce
N/A
Additional context
No response
The text was updated successfully, but these errors were encountered: