Skip to content
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

To support linux better, replace operation queue with dispatch queue in BatchingFutureOperationQueue #31

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

OmSaran
Copy link

@OmSaran OmSaran commented Jun 28, 2022

The operation queue implementation is replaced

@OmSaran OmSaran requested a review from dmbryson as a code owner June 28, 2022 15:29
@OmSaran OmSaran requested a review from vlm June 28, 2022 15:29
@OmSaran OmSaran force-pushed the batch-dispatchq branch 2 times, most recently from 3e16d1f to d4b5e97 Compare July 27, 2022 23:46
@OmSaran OmSaran requested a review from weissi July 27, 2022 23:50
self.group = group
self.operationQueue = OperationQueue(tsf_withName: name, maxConcurrentOperationCount: maxOpCount)
self.operationQueue.qualityOfService = qualityOfService
self.dispatchQueue = DispatchQueue(label: name, qos: dispatchQoS, attributes: .concurrent)
Copy link
Member

@weissi weissi Jul 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, .concurrent DispatchQueues are not recommended for a number of years now. Additionally, they're really quite slow to spawn new threads on Linux (can introduce a latency of up to 100 ms).

I'm not quite sure why we need the DispatchQueue at all?

[please ping me personally about the removed code here which doesn't make sense for this repo]

@OmSaran OmSaran requested a review from weissi August 2, 2022 04:41
return self.concurrencyLimiter.withReplenishableLimit(eventLoop: group.any()) { eventLoop in
let promise = eventLoop.makePromise(of: T.self)

DispatchQueue(label: self.name, qos: self.qos).async {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here you don't need to dispatch off. The body returns a future and therefore will be non-blocking.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, ideally that should be the case, but if I understand correctly, a rogue body could still do blocking operations? Executing in a dispatch queue would keep us more aligned with the previous implementation where we do not block the event loop in such a case.

For e.g.,

batchFutOpQ.execute {
  someBlockingCall()
  return elg.makeSucceededFuture(())
}

(Note that this still blocks if there is a blocking call inside flatMap like return elg.makeSucceededFuture(()).flatMap{ someBlockingCall() }. But this would be the same behavior in previous implementation)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's true. But a rogue body could also just crash the program or worse. We shouldn't write overly defensive code and if we find such a rogue body, we should fix it instead. Every dispatch to another thread (and back) costs us performance so we should avoid it as much as possible.

Copy link
Author

@OmSaran OmSaran Aug 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood now, makes sense. While I do agree we need to fix that, I think it is a non trivial task (pls correct me if I'm wrong here) to find and fix all usages. So I think it is better to do that as an enhancement as a different task since the objective of the task is to only get rid of using OperationQueue. Does that sound fair?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you seen any code that uses this which is blocking and returns a future? There shouldn't really be any such code (of course there might but I'd hope it's not widespread).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Discussed this on DM

@OmSaran OmSaran requested a review from weissi August 9, 2022 16:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants