تقليل إعادة تشغيل الخدمة من إعلامات الشيف؟

StackOverflow https://stackoverflow.com//questions/21066591

  •  26-12-2019
  •  | 
  •  

سؤال

حاليا وصفتي مع سمات مهيومة مثل هذا:

giveacodicetagpre.

عن طريق القيام بذلك، نضمن أن البداية الأولية للخدمة لها ملفات التكوين، أثناء كل تشغيل الخدمة قيد التشغيل لكتلة التنفيذ الثانية، وإذا تغير أي ملفات التكوين، فإننا أعد تشغيل الخدمة لالتقاط التغييرات وبعد

ومع ذلك، إذا حدث تشغيل الطهاة حيث يتم إيقاف الحالة الأولية للخدمة، (مثل التشغيل الأول أو إذا حدث شيء سيء)، فقد تغيرت ملفات التكوين (لا سيما على المدى الأول، ولكن ممكن للأخرى Runs)، سيتسبب في بدء تشغيل خدمة التنفيذ الأول في بدء تشغيل ملفات التكوين الصحيحة الموجودة بالفعل، ثم في نهاية التشغيل، سيتم إعادة تشغيل الخدمة دون داع. (افترض بالطبع أن الموارد بعد البداية الأولية لا تسبب إعادة تشغيل الخدمة)

تغيير الإجراء المستهدف للإخطارات لا يبدو أن الإخطارات الفورية ستظل فورا، ثم لا تزال الإخطارات المتأخرة تحدث)، وإلى جانب ذلك لن يكون صحيحا.

أيضا لا يمكننا الاشتراك في التنفيذ الثاني إلى بدء تشغيل الخدمة منذ ذلك الحين إذا كان قيد التشغيل بالفعل، فنحن ننتهي بعدم تنفيذها.

من الصعب إرضاءه، ولكن هل هناك نمط أفضل يمكن اتباعه لتقليل إعادة تشغيل الخدمة للتشغيل الأولي؟ أو آلية لإلغاء الإخطارات المتأخرة عند اتخاذ إجراء معين؟

هل كانت مفيدة؟

المحلول

استخدمت ملف العلم لتحقيق ذلك.

لا يتم تنفيذ

مثل "تحديث APT-Get" مرة واحدة.

giveacodicetagpre.

نصائح أخرى

Chef is designed to express configuration policy (system state), which is a slightly different thing than expressing a sequence of tasks to perform.

Fortunately since the DSL is ruby-based, resources can be redefined at runtime.

template "configfile1" do
  notifies :create, "ruby_block[restart_service1]", :immediately
end

template "configfile2" do
  notifies :create, "ruby_block[restart_service1]", :immediately
end

service "service1" do
  action [:enable, :start]
end

ruby_block "restart_service1" do
  block do

    r = resources(:service => "service1")
    a = Array.new(r.action)

    a << :restart unless a.include?(:restart)
    a.delete(:start) if a.include?(:restart)

    r.action(a)

  end
  action :nothing
end

This will rewrite the service resource to have "action [:enable, :restart]" instead of "action [:enable, :start]", if any of the template resources change state this run. So the ordering stays the same, and you only get one call through the service resource, instead of potentially three.

I am not sure, if will solve your problems with restarting the service too many times, but this structure seems more logical to me.

#Prepare everything to start the service
package 'packagename' do
  ...
end

template 'configfile1'
  notifies :restart, 'service[myservice]'
end
...
template 'configfileN'
  notifies :restart, 'service[myservice]'
end

execute "a command from package which generates and enables the init script" do
  notifies :restart, 'service[myservice]'
end

#Start the service
service 'myservice' do
  action :start
  supports :status => true, :start => true, :stop => true, :restart => true
end

#At this point service is surely running
execute "a command that should run once every time, that requires service to be running"

Every resource that changes the configuration file(s), should notify the service to restart.

I guess Chef is clever enough not to restart the service it just started. (I didn't pay attention to that before, but it seems to me that I would have, if there were unnecessary restarts)

Chef will only execute an action per resource, regardless of the number of times it's notified. It is, however, specific to each action. So if you send it a action :restart and also a action :start notification, then both will be executed in the order in which Chef encountered them. So what you are seeing with your code example is the initial :start notification from the execute block, followed by the template :restart notifications.

You should be able to avoid this by restructuring your recipe a bit and using subscribes if I'm following correctly.

package 'packagename' do
  ...
end

execute "a command from package which generates and enables the init script" do
  not_if File.exists?('/etc/init.d/myservice_script')
end

template 'configfile1'
  notifies :restart, 'service[myservice]'
end
...
template 'configfileN'
  notifies :restart, 'service[myservice]'
end

service 'myservice' do
  supports :status => true, :start => true, :stop => true, :restart => true
  subscribes :run, 'execute[a command from package which generates and enables the init script]', :immediately
  action :start
end

execute "a command that should run once every time, that requires service to be running"

First, we move the service resource to the bottom of the recipe so that it is only called once all other resources have been evaluated. Then we change the execute resource to subscribe to the :start action of the service[myservice] resource so that it will only ever execute this command when the :start action is called. We also add a bit of idempotency in there to make sure it doesn't just re-create the init script every run.

Finally, we add in all the templates with the normal notifications for service[myservice].

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top