Replies: 1 comment 2 replies
-
doris 是有 audit log 的,一般来说如果需要审计 sql 的话,可以利用 doris 的audit log。 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
使用doris一般企业都会有自己的一套DDL管理平台,通过DDL来实现对建表的管控,需要对DDL进行解析,当前doris fe的sqlparse集成太多的东西包含thrift和analysis等等还有一堆业务代码,导致生成AST很不干净,而且没法独立出来使用。
当前我的解决方案使用最新版本的sql_parser.cup和sql_scanner.flex实现的SQL解析,但是后续doris升级维护成本很高。doris可以将sqlparser单独作为服务,然后使用vistor模型进行analysis就好了。
Beta Was this translation helpful? Give feedback.
All reactions