Re: SIGTERM and osd close

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Jul 1, 2016 at 4:44 AM, Somnath Roy <Somnath.Roy@xxxxxxxxxxx> wrote:
> You need to call it from BlueStore::umount() I guess for cleanup work..
>
> -----Original Message-----
> From: ceph-devel-owner@xxxxxxxxxxxxxxx [mailto:ceph-devel-owner@xxxxxxxxxxxxxxx] On Behalf Of Ramesh Chander
> Sent: Thursday, June 30, 2016 8:46 AM
> To: ceph-devel@xxxxxxxxxxxxxxx
> Subject: SIGTERM and osd close
>
> Hi All,
>
> When I use stop.sh without any argument, I suppose it calls pkill with SIGTERM on osds as well as other processes.

616   // install signal handlers
617   init_async_signal_handler();
618   register_async_signal_handler(SIGHUP, sighup_handler);
619   register_async_signal_handler_oneshot(SIGINT, handle_osd_signal);
620   register_async_signal_handler_oneshot(SIGTERM, handle_osd_signal);

 65 void handle_osd_signal(int signum)
 66 {
 67   if (osd)
 68     osd->handle_signal(signum);
 69 }

1735 void OSD::handle_signal(int signum)
1736 {
1737   assert(signum == SIGINT || signum == SIGTERM);
1738   derr << "*** Got signal " << sig_str(signum) << " ***" << dendl;
1739   shutdown();
1740 }

2598 int OSD::shutdown()
2599 {

OSD::shutdown() in src/osd/OSD.cc is quite a large function that
performs quite a bit of clean up such as
draining and shutting down thread pool work queues, shutting down
messenger instances, un-registering
admin commands, shutting down the PGs, flushing outstanding ops,
updating the superblock and unmounting
the filestore (as Somnath mentioned this might be where you want to
look), shutting down the MON client and
clearing the peering work queue, in no particular order.

So there is no doubt the OSD (and other daemons such as MON and MDS)
intercepts this signal and performs
a graceful shutdown including many housekeeping tasks.

HTH,
Brad

>
> Does osd handle this signal and take care of closing all components?
>
> I am specifically interested in if it closes objectstore -> keyvaluedb .
>
> I don't see my code of keyvaluedb shutdown/close being called when I do ./stop.sh
>
> Any argument or way to force this?
>
> -Ramesh
> PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Cheers,
Brad
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [CEPH Users]     [Ceph Large]     [Information on CEPH]     [Linux BTRFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]
  Powered by Linux