-
Notifications
You must be signed in to change notification settings - Fork 117
service[zookeeper] cannot be found in the resource collection. #186
Comments
@eyalzek hmm… seems some refactor of the actions for The technical reason for the error is because For now, you can get things up & running by omitting the I’d welcome some help with this, as I likely won’t have much time to devote to this for a while. |
I took a look at it and as you said, it seems like it requires a refactor more than a minor 2-line change. I might be able to help if you point me in the right direction. |
@eyalzek thanks! If you check out
Taking a cue from actions :enable, :disable, :start, :stop, :restart, :reload In fact, now that I think about it, it might be sensible to just use |
I took a crack at using poise-service to create the zookeeper_service resource. So far I've only implemented it with upstart(and poorly at that) and wanted to get your thoughts before putting much more time into this. |
@cullenmcdermott oh nice! That looks pretty good so far. If you want to open a pull request with that work, we can try to get it fully fleshed out together. Two notes:
|
Hey sorry, its been a crazy week so far. I'll try to get a PR submitted tonight or tomorrow. Something with what I had committed so far wasn't working so I refactored it a bit and have it working better now. |
@jeffbyrnes I just created #191 |
Hi, any chance this will be merged? We have a large cluster and need an ability to restart the service on config change when new servers added/removed. |
@heaven I wager you mean #191? tl;dr, probably not anytime soon. I’ve had very few cycles to put towards this, especially since I no longer use ZK (job change, no need for it at the new gig). However, I caution: this would not handle restarts gracefully (i.e., rolling restart), and thus the potential for data loss exists. In the past, I’ve solved that with Exhibitor, but that project has seen some ups & downs since it’s departure from Netflix, so I recommend taking a hard look at it. We’ve a cookbook that used to play nicely with this one for managing all of that, but again, maintenance has been minimal lately. Moving forward, the ZooKeeper team is focused on providing dynamic configuration, including resizing of the cluster. It’s available starting in v3.5.0, and here are the latest docs for v3.5.3-beta. I realize using software that’s yet to be marked stable may not be an option, and this cookbook doesn’t even properly support v3.5.x, so that may not be optimal, but perhaps you can pick up #199 and finish up the v3.5.x support, and use that. Sorry I’m not able to offer more support, and since I’m not the owner of this, I can’t exactly hand off maintenance (though I do still possess admin, so I can grant contributor if you want to step in). |
@heaven so I did manage to squeeze in some work and get the Fixing this is a much larger refactor, where the And as I said, it might be good to get #199 finished up. |
I am trying to create a simple wrapper cookbook for
zookeeper-cookbook
, here's my configuration:The line
notifies :restart, 'service[zookeeper]', :delayed
is obviously what fails me here. I tried usinginclude_recipe 'zookeeper::service
even though it's pretty much identical from what I understood reading the code, and the results are the same:I realize I might be doing something wrong here, but considering I want to install, configure and create a service, but also that the service would restart on a configuration change, how should I go at it?
The text was updated successfully, but these errors were encountered: