[FLINK-35579] update frocksdb version to v8.10.0#25253
Conversation
|
@flinkbot run azure |
|
Is the CI failure related with compilation or release of the frocksdb? |
@Zakelly The compilation looks fine And another is UT I'll try to reproduce it on my local machine and figure out how to fix it |
|
|
This is because when run e2e test, the directory of rocksdb log will be specified as |
f7b337d to
2b39c27
Compare
|
@flinkbot run azure |
|
@Zakelly the CI can pass now , I've two minor changes , please take a look |
| # this would make e2e tests' artifacts containing too many log files. | ||
| # As RocksDB's log would not help much in e2e tests, move the location back to its own folder. | ||
| set_config_key "state.backend.rocksdb.log.dir" "/dev/null" | ||
| set_config_key "state.backend.rocksdb.log.dir" "/tmp" |
There was a problem hiding this comment.
I'm a little worried that this would lead to many files in "/tmp" and disk space run out in CI machine. Is there any way we disable the log?
There was a problem hiding this comment.
I think we can set state.backend.rocksdb.log.level to HEADER_LEVEL, in that case RocksDB Log file will be very small
There was a problem hiding this comment.
But it still creates the log file, right? So /tmp will still accumulate trash log files. How about setting log level to header and keeping them in Flink's log directory?
There was a problem hiding this comment.
But it still creates the log file, right? So
/tmpwill still accumulate trash log files. How about setting log level toheaderand keeping them in Flink's log directory?
yeah, that's what I mean !
There was a problem hiding this comment.
@Zakelly I've updated the PR and the CI has passed now, can you take a look
Zakelly
left a comment
There was a problem hiding this comment.
LGTM, thanks for the effort!
What is the purpose of the change
(For example: This pull request makes task deployment go through the blob server, rather than through RPC. That way we avoid re-transferring them on each deployment (during recovery).)
Brief change log
(for example:)
Verifying this change
Please make sure both new and modified tests in this PR follow the conventions for tests defined in our code quality guide.
(Please pick either of the following options)
This change is a trivial rework / code cleanup without any test coverage.
(or)
This change is already covered by existing tests, such as (please describe tests).
(or)
This change added tests and can be verified as follows:
(example:)
Does this pull request potentially affect one of the following parts:
@Public(Evolving): (yes / no)Documentation