Clarify log deletion configuration options in server.properties (for 0.8.1)#27
Clarify log deletion configuration options in server.properties (for 0.8.1)#27MarkRose wants to merge 1 commit into
Conversation
update comments
…ta-tolerant Don't override HighWaterMarks on bad metadata
|
I think #28 is sufficient, would you mind closing this PR? |
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
|
Will do! |
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
|
Refer to this link for build results (access rights to CI server needed): |
apache#27) In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage.
apache#27) In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage.
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
…sult (apache#27) TICKET = LI_DESCRIPTION = In large clusters with large metadata size the UpdateMetadataRequest::toString can generate really large strings. If there are n/w issue these strings are logged resulting in lots of these string to be generated and cause high memory usage. EXIT_CRITERIA = MANUAL ["Occurs on large clusters only hence limiting this to LinkedIn branch only"]
- Add new admin api findCoordinator - When create mirror topic it should find the coordinator first then send the create topic request ``` ./bin/kafka-topics.sh --createMirror --topic test --bootstrap-server localhost:9094 --remote-bootstrap-server localhost:9092 --topic-id RI3uACW1QM2Exahq-CATrA --link my-link The findCoordinator response is: FindCoordinatorResponseData(throttleTimeMs=0, errorCode=0, errorMessage='', nodeId=0, host='', port=0, coordinators=[Coordinator(key='my-link', nodeId=1, host='localhost', port=9094, errorCode=0, errorMessage='')]) Found coordinator 1 for link my-link. Node info: localhost:9094 (id: 1 rack: null isFenced: false) Creating topic test using bootstrap server localhost:9094. Created topic test. ```
I spent a bit of time tracking down why files were being deleted before they reached log.retention.hours of age. It turns out that the time and size log retention schemes function independently, and not as the original comment "The minimum age of a log file to be eligible for deletion" might indicate to a new user.