-
Notifications
You must be signed in to change notification settings - Fork 29
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
Question: Drop support for rbczmq
due to maintainability?
#259
Comments
Hi @neumanrq Thank you for your suggestion. In short I agree to stop supporting rbczmq. Details Around 2016, the current owner of IRuby @mrkn, suggested replacing rbczmq with cztop because rbczmq and ffi-rzmq were not well maintained. And @kou added cztop support (#106). @mrkn tried using pycall and pyzmq, but this attempt is not complete (#221) . @kozo2 suggested using meta-kernel at sciruby-slack(JP). But no one actually tried to implement it. Currently, ffi-rzmq is the first choice because it works very well. But It was not what I expected from the start. Recently, there is a proposal to register iruby in conda-forge by @BoPeng (#235) with a related plan that ffi-rzmq should be added to rutime_dependency. (#248) So I can not predict which libraries will continue to be maintained . But I think support for ping @mrkn |
@neumanrq Thank you for your suggestion. I guess we will drop rbczmq support in the near future if the current situation of rbczmq is remaining. I want to do it but, the timing is not comming. By the way, why you've tried to install rbczmq? |
Hi @kojix2 & @mrkn - thanks for providing all the background thoughts, which are very interesting! @mrkn My initial goal was to learn how So first I wanted to run the test suite and play with the code. But If it's ok for you I'm going to try working on a sorted removal of references to |
@neumanrq Could you try |
@mrkn Good tip! Unfortunately, by running |
As initial creator of rbczmq, I have not had cycles and bandwidth the last few years to maintain it and the divergence between current API and czmq (more so) and libzmq (less so) means a significant time investment is required just for parity. I have ongoing business and family obligations that does not allow me to dedicate time to rbczmq. About methodmissing/rbczmq#70 , I have no objection to redirecting my Github project to https://github.com/Seluxit/rbczmq , but allowing gem pushes to I looked at the ruby bindings ecosystem and would agree it's not looking good given most are not maintained anymore. Which in itself is fine too because they came to life as OSS and were pinned to someone's free time at a given window of time. I do however still feel and agree that wrapping the czmq API makes the most sense as it covers some edge cases with the raw libzmq API natively. |
This has been done recently, see also #260 |
Hi
iruby
-Team, I have a question - please excuse me if this question already has been discussed with a final statement - I just want to solve a practical issue.Currently,
iruby
does supportrbczmq
, but I have the feeling that the project rbczmq is not maintained actively anymore.Practically for my situation with iruby, there is a prioblem when I try to bundle
iruby
on macOS Mojave. It fails becauserbczmq
fails to build its native extension. I did some research on the problem and checked out zeromq/czmq as well as methodmissing/rbczmq.I noticed that the latter contains
czmq
as a git submodule - but in a quite outdated (last commit from 2013) state. So the projectczmq
looks actively maintained, but not updated withinrbczmq
.Also I noticed, that there are still open problems like methodmissing/rbczmq#41 which cause problems for iruby, too, see discussiom around #250
It's very hard to fix all the issues we need for
iruby
aroundmethodmissing/rbczmq
by ourselves - So my question to you is: Wouldn't it be a rational decision to drop support for it? Here's where I do not have deep knowledge, so please correct me if this question is more dumb. But since iruby supports multiple session adapters, I think the question is quite valid.However, I know that such questions could be complicated. What consequences would it have, if
iruby
drops support for it? On the other side: What are consequences ifrbczmq
stays quite unmaintained for the next years?Don't get me wrong, I do not want to offend the developers backing https://github.com/methodmissing/rbczmq, I know by myself how hard it is to find spare time to support such projects. It's really just about a practical decision. That's why I wanted to bring up the question.
Thanks for your patience, and I'm very curious about your thoughts!
edit: I've created a branch removing all references of
rbczmq
(just for myself as experiment)The text was updated successfully, but these errors were encountered: