[Lustre-devel] SOM questions

Vitaly Fertman Vitaly.Fertman at Sun.COM
Mon Jan 11 06:10:19 PST 2010


On Jan 5, 2010, at 9:01 PM, Eric Barton wrote:

> Vitaly,
>
> 1. Clients must replay opens on the MDS if "done writing" is still
>   pending to notify the new MDS that this file is volatile.  Does it
>   matter whether the client already sent "close" to the previous MDS
>   instance?  Does it have to send "close" again?

the idea was to get rid of these long chains of requests on replay
(open-close-DW-setattr), DW and setattr are replayed independently
not requiring committed open to be replayed.

due to 3633, we do not even replay committed open if close is already  
sent.
requiring open to be replayed due to pending DW will bring this  
problem back.

MDS in its turn just ignores DW and setattr for not re-opened files and
relies on synchronisation with OSTs -- once file is closed, data are
under extent lock and under control here. thus we can invalidate SOM
attributes on MDS by llog record and the following SOM recovery will
ensure in some way data are flushed and committed on OST (alternatively
we can just ask the clients to flush and OST to commit before the
synchronisation).

SOM recovery may try to happen late enough so that data would be already
committed on OST with some checks they are really committed; or will  
have
to take conflicting extent lock and wait for commit by itself.

> 2. I assume "done writing" is only sent after stripe updates have been
>   committed, not just executed so that cached SOM attributes are not
>   dependent on the client still being around to participate in
>   recovery if an OST fails.  Is this correct?


it is correct, DW can be postponed until commit.

however, as we cannot get the proper attribute update (in particular
i_blocks) right in DW, there was an idea to separate SOM invalidation
from SOM revalidation mechanism, i.e. to not try to rebuild the SOM
cache on MDS immediately once the file has been modified.

In this case DW can just indicate that this client is not going to
modify the file anymore and probably we do not have to wait until  
commit,
the revalidation will occur late enough so that the commit would have
occured (again with some checks it really occured).

In the case of OST failure, while OST is down or not re-synchronised  
with
MDS, SOM is disabled; the SOM re-validation will occur late enough after
MDS-OST synchronisation completes...

--
Vitaly



More information about the lustre-devel mailing list