-
Notifications
You must be signed in to change notification settings - Fork 606
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
store history of changes made to hive via http #1637
Conversation
⚪
|
⚪
|
ydb/core/mind/hive/hive_schema.h
Outdated
struct OperationsLog : Table<21> { | ||
struct Timestamp : Column<1, NScheme::NTypeIds::Uint64> {}; | ||
struct User : Column<2, NScheme::NTypeIds::String> {}; | ||
struct Operation : Column<3, NScheme::NTypeIds::String> { using Type = NKikimrHive::TOperation; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you actually need these complex protobuf specs just for logging purposes. And think about migrations and rollbacks - it could became a huge pain...
I think just a free text would be more than enough. (or json if you need some structure to parse)
dd62b54
to
0025c6a
Compare
⚪
|
⚪
|
Changelog entry
You can now view history of changes made to hive settings through http requests (Only works for changes made after the introduction of this feature)
Changelog category
Additional information
...