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

Add concurrent-ruby dependency. #835

Conversation

theturtle32
Copy link
Contributor

Somewhere between v1.0 and v1.1.0-beta1, a change was committed that uses Concurrent::Map but without adding concurrent-ruby to the dependencies in the gemspec.

The tests pass because activesupport is a development dependency, and they've had concurrent-ruby as one of their dependencies since version 5.0.0.

But without this in the gemspec, any project that doesn't load in activesupport or concurrent-ruby itself won't work with ruby-kafka.

@theturtle32 theturtle32 force-pushed the add-concurrent-ruby-dependency branch from 169f339 to 70d688e Compare June 5, 2020 23:48
@theturtle32
Copy link
Contributor Author

@dasch - It would have been good to get this included in the v1.1.0 release... maybe as a follow-up as v1.1.1?

@dasch
Copy link
Contributor

dasch commented Jun 10, 2020

Hmm, I'd actually rather see if we can get rid of that dependency entirely. One of the principles of ruby-kafka is that it doesn't bring in complex dependencies. activesupport is a soft dependency only.

@theturtle32
Copy link
Contributor Author

I'm not sure what the rationale was for bringing in Concurrent::Map. Maybe it could be replaced with a Hash with mutex-guarded access? Is it necessary at all?

@dasch
Copy link
Contributor

dasch commented Jun 11, 2020

I'm not exactly sure why it is needed – I missed it in my review. If you could do some digging it would be great!

@vvuibert
Copy link
Contributor

vvuibert commented Jun 12, 2020

@lmduc is concurrent needed?
#818

@TJC
Copy link

TJC commented Jun 18, 2020

See related issues #840 and #842

@@ -4,6 +4,7 @@
require "kafka/offset_manager"
require "kafka/fetcher"
require "kafka/pause"
require "concurrent"

Choose a reason for hiding this comment

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

maybe it can be require "concurrent/map" to avoid loading the whole library, only the Map that is the needed one, wdyt?

Copy link
Contributor

Choose a reason for hiding this comment

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

I’d like to get rid of the gem dependency altogether. ruby-kafka should be mostly self-contained.

Choose a reason for hiding this comment

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

if it isn't needed, removal is a way better solution 😉

@dasch
Copy link
Contributor

dasch commented Jun 18, 2020

Looking at the code, I’m not sure why it needs to be thread safe – it doesn’t look like e.g. the fetcher thread accesses the data structure directly?

d1egoaz added a commit to d1egoaz/ruby-kafka that referenced this pull request Jun 24, 2020
It seems it doesn't need to be threadsafe.

Via zendesk#835 (comment)
d1egoaz added a commit to d1egoaz/ruby-kafka that referenced this pull request Jun 24, 2020
From the comment: `It seems it doesn't need to be threadsafe.`
Via zendesk#835 (comment)

I took a quick look and it seems it's safe to use a simple Hash

Fixes: zendesk#842
Fixes: zendesk#840
@d1egoaz
Copy link
Contributor

d1egoaz commented Jun 30, 2020

This was merged #845
Not sure if this PR is still needed, it seems it can be closed

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.

6 participants