Differences between revisions 2 and 3
Revision 2 as of 2008-05-21 18:17:59
Size: 5595
Editor: FelixFrank
Comment: some more notes
Revision 3 as of 2008-05-22 10:51:03
Size: 6491
Editor: FelixFrank
Comment: more detailed notes on link tables
Deletions are marked like this. Additions are marked like this.
Line 97: Line 97:
 * original linktable was insufficient, further fields were required
  * link table v2 uses 30 bits instead of 15
 * hashing is used for management of DB contents (not a change)
 * choice of OSDs resides in ''osddbuser.c''
Line 100: Line 100:
 * hashing is used for management of DB contents
 * choice of OSDs resides in ''osddbuser.c''
 
== Link tables ==
 * original link table entries consisted of 5 columns of 3 bits each
  * thus, 5 different versions of a file were supported, each with a max. link count of 7
 * AFS+OSD (like MR-AFS) supports more places for one and the same file to live: {{{
 * 2 RW volumes (the 2nd during a move operation)
 * 1 BK volume
 * 13 RO volumes
 * 1 clone during move}}} which amounts to up to 17 places for a file
 * also, there might be as many as 6 versions of a file: {{{
 * 1 RW volume
 * 1 BK volume
 * 1 clone during move
 * 1 RO
 * 1 RO-old during vos release
 * 1 may be an old RO which was not reachable during the last vos release.}}}
 * as at least 6 columns are needed with at least 5 bits per column, a link table row now consists of 32 bits instead of 16
The explanations are from ''vol/namei_ops.c''. The new format is used as ''Linktable version 2'', with the original format still being supported as ''version 1''.

TableOfContents

1. General concepts

1.1. Goodies

  • the threads subcommand lets you know what each thread is currently doing {{{osd threads io

}}}

1.2. Working with an AFS+OSD cell

The following techniques are only useful when using OSD as a frontend for HSM:

  • {{{vos listobj

}}} is useful for finding all objects stored on a given OSD

  • {{{fs prefetch

}}} allows the user to schedule tape restore operations

  • it is useful to have bosserver run a script to wipe objects off the OSDs according to OSD fill rate etc.

These are general techniques:

  • {{{osd addserver

}}} makes an AFS fileserver (!) known to the OSDDB

  • this is required in order to make use of ownerships and locations

This is how a fileserver and OSD server can share one machine:

  • touch the file /vicepx/OnlyRXOSD to forbid the fileserver to use this partition

1.2.1. How to migrate data from an OSD

  1. set a low write priority to stop fileservers from storing data on the OSD in question {{{osd setosd -wrprior 0

}}}

  1. use {{{vos listobj

}}} to identify the files (by fid) that have data on the OSD

  1. use {{{fs replaceosd

}}} to move each file's data to another OSD

1.3. Priorities and choice of storing OSD

  • OSDs are used in a Round Robin fashion
  • priorities add weight to each OSD
  • static priorities can be set by the administrator {{{osd setosd -wrprior ... -rdprior ...

}}}

  • priorities are dynamic
    • ownerships apply a modifier of +/- 10 to the static priority
    • locations apply a modifier of +/- 20
    • the fill percentage plays a role if above 50% or 95% respectively

1.4. Data held in volumes, DBs etc.

  • all metadata belonging to files in a volume are stored in a designated volume special file
  • metadata references OSDs by id

  • OSD id is an index into the OSDDB

    • these IDs are permanent and can never be reused after deletion of an OSDDB entry
    • view the OSDDB using {{{osd l

}}}

  • a file's metadata is found using the metadataindex stored in the file's vnode

    • view the metadata using {{{fs osd <file>

}}}

1.5. How to upgrade a cell to AFS+OSD

  1. set up OSDDB on the database servers
  2. set up pristine AFS+OSD fileservers + OSDs
  3. move volumes to the AFS+OSD fileservers
    • volserver is supposed to be armed with a -convertvolumes switch for that purpose

    • otherwise, set the osdflag by hand {{{vos setfields <volume> -osd 1

}}}

2. Policies

  • policies are going to decide 4 basic things:
    1. whether object storage is to be used for a given file
    2. whether the objects are to be mirrored and how often
    3. how many stripes the file will comprise
    4. the size of the stripes
  • two pieces of information will be used to make decisions:
    1. file size
    2. file name (i.e. prefix and suffix)

2.1. Open questions

  • will inheritance be supported for policy definitions?
    • how many levels of inheritance are permitted (1 or n)?

  • in what way can policies be represented/stored?

3. Technical aspects

3.1. Performance

  • client connections to OSDs are cheap because they are unauthorized
  • clients do connect to each single OSD they have business with
  • osd psread acts as though reading stripes from multiple OSDs

    • i.e. it opens several connections, in this case all targets are the same however
    • each stripe has an altered offset (e.g., normally first n stripes start at offset 0 on each OSD, here it is 0+(i*stripesize) etc.)
    • this is not impossible for access to AFS fileservers, but making connections is more costly

4. Notes on the code (changes)

  • hashing is used for management of DB contents (not a change)
  • choice of OSDs resides in osddbuser.c

  • original link table entries consisted of 5 columns of 3 bits each
    • thus, 5 different versions of a file were supported, each with a max. link count of 7
  • AFS+OSD (like MR-AFS) supports more places for one and the same file to live:

     *      2 RW volumes (the 2nd during a move operation)
     *      1 BK volume
     *     13 RO volumes
     *      1 clone during move
    which amounts to up to 17 places for a file
  • also, there might be as many as 6 versions of a file:

     *      1 RW volume
     *      1 BK volume 
     *      1 clone during move
     *      1 RO
     *      1 RO-old during vos release
     *      1 may be an old RO which was not reachable during the last vos release.
  • as at least 6 columns are needed with at least 5 bits per column, a link table row now consists of 32 bits instead of 16

The explanations are from vol/namei_ops.c. The new format is used as Linktable version 2, with the original format still being supported as version 1.

4.2. Debugging techniques

  • add trace* calls to the code
    • CM_TRACE_WASHERE especially handy
  • use

AfsOsd/Notes (last edited 2009-06-04 10:49:45 by FelixFrank)