From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8898EC76191 for ; Thu, 18 Jul 2019 13:43:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 19A9120873 for ; Thu, 18 Jul 2019 13:43:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727813AbfGRNnn (ORCPT ); Thu, 18 Jul 2019 09:43:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42572 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726608AbfGRNnn (ORCPT ); Thu, 18 Jul 2019 09:43:43 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3BF2C30860BE; Thu, 18 Jul 2019 13:43:42 +0000 (UTC) Received: from coeurl.usersys.redhat.com (ovpn-120-199.rdu2.redhat.com [10.10.120.199]) by smtp.corp.redhat.com (Postfix) with ESMTP id E7E4319728; Thu, 18 Jul 2019 13:43:41 +0000 (UTC) Received: by coeurl.usersys.redhat.com (Postfix, from userid 1000) id 627EC20A3B; Thu, 18 Jul 2019 09:43:41 -0400 (EDT) Date: Thu, 18 Jul 2019 09:43:41 -0400 From: Scott Mayhew To: Indivar Nair Cc: linux-nfs@vger.kernel.org Subject: Re: rpc.statd dies because of pacemaker monitoring Message-ID: <20190718134341.GF4131@coeurl.usersys.redhat.com> References: <20190711164937.GA4131@coeurl.usersys.redhat.com> <20190712141657.GB4131@coeurl.usersys.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.3 (2019-02-01) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.44]); Thu, 18 Jul 2019 13:43:42 +0000 (UTC) Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org On Wed, 17 Jul 2019, Indivar Nair wrote: > Hi Scott, > > Could you help me out with my query in the earlier email? > I would like to get to the root cause of the issue. > Since it is a storage system that is heavily used, I need to make sure > that the issue does not crop even after fixing the DNS. If you want to verify the root cause of the issue, then before you start making any changes you probably want to collect some more data. A good start would be using tcpdump or wireshark to get a binary packet capture on the NFS server filtering on port 53. That way you can see if you have any DNS queries that are taking a long time. If that doesn't pan out then you'll probably need to either run rpc.statd in the foreground with debug logging enabled (and hope that the logging sheds some light on the issue) or trace the rpc.statd process via strace. In regard to your question on the /etc/hosts file, if all you have in it are entries for localhost, then no that's not going to speed up anything. Any name resolution queries are going to look in that file first, not find anything, and then try your DNS server. If you want to cut the DNS server out of the picture then you'd need to add entries for all your NFS clients to the NFS server's /etc/hosts file. Keep in mind that if you do go this route now you're stuck keeping your /etc/hosts files correct & in-sync on your NFS server nodes (i.e. you're losing out on the centralized management provided by DNS). -Scott > > Thanks. > > Regards, > > > Indivar Nair > > On Sat, Jul 13, 2019 at 8:31 PM Indivar Nair wrote: > > > > Thanks once again, Scott, > > > > The patch seems like a neat solution > > It will declare rpc.statd dead only after checking multiple times. Super. > > I will patch the nfsserver resource file. > > (It should probably be added to the original source code.) > > > > We have a proper entry for 127.0.0.1 in the hosts file and the > > nsswtich.conf file says, "files dns". > > So if it checks the /etc/hosts first, why would the pacemaker's check timeout? > > Shouldn't pacemaker get a quick response? > > > > Localhost entries in the /etc/hosts file - > > ------------------------------------------------------------------------------------------------------------------------------------- > > 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 > > ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 > > ------------------------------------------------------------------------------------------------------------------------------------- > > > > Regards, > > > > > > Indivar Nair > > > > > > > > > > > > > > On Fri, Jul 12, 2019 at 7:47 PM Scott Mayhew wrote: > > > > > > On Fri, 12 Jul 2019, Indivar Nair wrote: > > > > > > > Hi Scott, > > > > > > > > Thanks a lot. > > > > Yes, it is a 10+ year old AD setup, which was migrated to Samba4AD > > > > (samba+named) a few years ago. > > > > It has lot of stale entries, and fwd - rev lookup mismatches. > > > > > > > > Will start cleaning up DNS right away. > > > > > > > > In the meantime, is there any way to increase the rpc ping timeout? > > > > > > You could build the rpcinfo.c program from source (it's in the rpcbind > > > git tree) with a longer timeout. > > > > > > > OR > > > > Is there any way to temporarily disable DNS lookups by lockd? > > > > > > rpc.statd is doing the DNS lookups, and no there's not a way to disable it. > > > Doing so would probably make the reboot notifications less reliable, and > > > clients wouldn't know to reclaim locks, and the risk of data corruption > > > goes up. > > > > > > You could prevent the DNS lookups from occurring by adding entries (properly > > > formatted... see the hosts(5) man page) for all your clients into the > > > /etc/hosts file on your NFS server nodes. That's assuming that your nsswitch > > > configuration has "files" before "dns" for host lookups. Depending on how > > > many clients you have, that might be the easiest option. > > > > > > Another option might be to try adding a simple retry mechanism to the part > > > of the nfsserver resource agent that checks rpc.statd, something like: > > > > > > diff --git a/heartbeat/nfsserver b/heartbeat/nfsserver > > > index bf59da98..c9dcc74e 100755 > > > --- a/heartbeat/nfsserver > > > +++ b/heartbeat/nfsserver > > > @@ -334,8 +334,13 @@ nfsserver_systemd_monitor() > > > fi > > > > > > ocf_log debug "Status: rpc-statd" > > > - rpcinfo -t localhost 100024 > /dev/null 2>&1 > > > - rc=$? > > > + for i in `seq 1 3`; do > > > + rpcinfo -t localhost 100024 >/dev/null 2>&1 > > > + rc=$? > > > + if [ $rc -eq 0 ]; then > > > + break > > > + fi > > > + done > > > if [ "$rc" -ne "0" ]; then > > > ocf_exit_reason "rpc-statd is not running" > > > return $OCF_NOT_RUNNING > > > > > > > > Regards, > > > > > > > > > > > > Indivar Nair > > > > > > > > On Thu, Jul 11, 2019 at 10:19 PM Scott Mayhew wrote: > > > > > > > > > > On Thu, 11 Jul 2019, Indivar Nair wrote: > > > > > > > > > > > Hi ..., > > > > > > > > > > > > I have a 2 node Pacemaker cluster built using CentOS 7.6.1810 > > > > > > It serves files using NFS and Samba. > > > > > > > > > > > > Every 15 - 20 minutes, the rpc.statd service fails, and the whole NFS > > > > > > service is restarted. > > > > > > After investigation, it was found that the service fails after a few > > > > > > rounds of monitoring by Pacemaker. > > > > > > The Pacemaker's script runs the following command to check whether all > > > > > > the services are running - > > > > > > --------------------------------------------------------------------------------------------------------------------------------------- > > > > > > rpcinfo > /dev/null 2>&1 > > > > > > rpcinfo -t localhost 100005 > /dev/null 2>&1 > > > > > > nfs_exec status nfs-idmapd > $fn 2>&1 > > > > > > rpcinfo -t localhost 100024 > /dev/null 2>&1 > > > > > > > > > > I would check to make sure your DNS setup is working properly. > > > > > rpc.statd uses the canonical hostnames for comparison purposes whenever > > > > > it gets an SM_MON or SM_UNMON request from lockd and when it gets an > > > > > SM_NOTIFY from a rebooted NFS client. That involves calls to > > > > > getaddrinfo() and getnameinfo() which in turn could result in requests > > > > > to a DNS server. rpc.statd is single-threaded, so if it's blocked > > > > > waiting for one of those requests, then it's unable to respond to the > > > > > RPC ping (which has a timeout of 10 seconds) generated by the rpcinfo > > > > > program. > > > > > > > > > > I ran into a similar scenario in the past where a client was launching > > > > > multiple instances of rpc.statd. When the client does a v3 mount it > > > > > does a similar RPC ping (with a more aggressive timeout) to see if > > > > > rpc.statd is running... if not then it calls out to > > > > > /usr/sbin/start-statd (which in the past simply called 'exec rpc.statd > > > > > --no-notify' but now has additional checks). Likewise rpc.statd does > > > > > it's own RPC ping to make sure there's not one already running. It > > > > > wound up that the user had a flakey DNS server and requests were taking > > > > > over 30 seconds to time out, thus thwarting all those additional checks, > > > > > and they wound up with multiple copies of rpc.statd running. > > > > > > > > > > You could be running into a similar scenario here and pacemaker could be > > > > > deciding that rpc.statd's not running when it's actually fine. > > > > > > > > > > -Scott > > > > > > > > > > > --------------------------------------------------------------------------------------------------------------------------------------- > > > > > > The script is scheduled to check every 20 seconds. > > > > > > > > > > > > This is the message we get in the logs - > > > > > > ------------------------------------------------------------------------------------------------------------------------------------- > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: check_default: access by > > > > > > 127.0.0.1 ALLOWED > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: Received NULL request > > > > > > from 127.0.0.1 > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: check_default: access by > > > > > > 127.0.0.1 ALLOWED (cached) > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: Received NULL request > > > > > > from 127.0.0.1 > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: check_default: access by > > > > > > 127.0.0.1 ALLOWED (cached) > > > > > > Jul 09 07:33:56 virat-nd01 rpc.mountd[51641]: Received NULL request > > > > > > from 127.0.0.1 > > > > > > ------------------------------------------------------------------------------------------------------------------------------------- > > > > > > > > > > > > After 10 seconds, we get his message - > > > > > > ------------------------------------------------------------------------------------------------------------------------------------- > > > > > > Jul 09 07:34:09 virat-nd01 nfsserver(virat-nfs-daemon)[54087]: ERROR: > > > > > > rpc-statd is not running > > > > > > ------------------------------------------------------------------------------------------------------------------------------------- > > > > > > Once we get this error, the NFS service is automatically restarted. > > > > > > > > > > > > "ERROR: rpc-statd is not running" message is from the pacemaker's > > > > > > monitoring script. > > > > > > I have pasted that part of the script below. > > > > > > > > > > > > I disabled monitoring and everything is working fine, since then. > > > > > > > > > > > > I cant keep the cluster monitoring disabled forever. > > > > > > > > > > > > Kindly help. > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > > Indivar Nair > > > > > > > > > > > > Part of the pacemaker script that does the monitoring > > > > > > (/usr/lib/ocf/resources.d/heartbeat/nfsserver) > > > > > > ======================================================================= > > > > > > nfsserver_systemd_monitor() > > > > > > { > > > > > > local threads_num > > > > > > local rc > > > > > > local fn > > > > > > > > > > > > ocf_log debug "Status: rpcbind" > > > > > > rpcinfo > /dev/null 2>&1 > > > > > > rc=$? > > > > > > if [ "$rc" -ne "0" ]; then > > > > > > ocf_exit_reason "rpcbind is not running" > > > > > > return $OCF_NOT_RUNNING > > > > > > fi > > > > > > > > > > > > ocf_log debug "Status: nfs-mountd" > > > > > > rpcinfo -t localhost 100005 > /dev/null 2>&1 > > > > > > rc=$? > > > > > > if [ "$rc" -ne "0" ]; then > > > > > > ocf_exit_reason "nfs-mountd is not running" > > > > > > return $OCF_NOT_RUNNING > > > > > > fi > > > > > > > > > > > > ocf_log debug "Status: nfs-idmapd" > > > > > > fn=`mktemp` > > > > > > nfs_exec status nfs-idmapd > $fn 2>&1 > > > > > > rc=$? > > > > > > ocf_log debug "$(cat $fn)" > > > > > > rm -f $fn > > > > > > if [ "$rc" -ne "0" ]; then > > > > > > ocf_exit_reason "nfs-idmapd is not running" > > > > > > return $OCF_NOT_RUNNING > > > > > > fi > > > > > > > > > > > > ocf_log debug "Status: rpc-statd" > > > > > > rpcinfo -t localhost 100024 > /dev/null 2>&1 > > > > > > rc=$? > > > > > > if [ "$rc" -ne "0" ]; then > > > > > > ocf_exit_reason "rpc-statd is not running" > > > > > > return $OCF_NOT_RUNNING > > > > > > fi > > > > > > > > > > > > nfs_exec is-active nfs-server > > > > > > rc=$? > > > > > > > > > > > > # Now systemctl is-active can't detect the failure of kernel > > > > > > process like nfsd. > > > > > > # So, if the return value of systemctl is-active is 0, check the > > > > > > threads number > > > > > > # to make sure the process is running really. > > > > > > # /proc/fs/nfsd/threads has the numbers of the nfsd threads. > > > > > > if [ $rc -eq 0 ]; then > > > > > > threads_num=`cat /proc/fs/nfsd/threads 2>/dev/null` > > > > > > if [ $? -eq 0 ]; then > > > > > > if [ $threads_num -gt 0 ]; then > > > > > > return $OCF_SUCCESS > > > > > > else > > > > > > return 3 > > > > > > fi > > > > > > else > > > > > > return $OCF_ERR_GENERIC > > > > > > fi > > > > > > fi > > > > > > > > > > > > return $rc > > > > > > } > > > > > > =======================================================================