Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 53 Next »

Contents)

  • Cluster Outline
  • User's Guide
    1. User setup
    2. Running RAMCloud
    3. Development and enhancement
  • Performance result:
    • clusterperf.py
    • TBD) recovery.py
  • System administrator's guide
    1. Adding user with dedicated script.
    2. Hardware maintenance
    3. Security solution
    4. Stanford's ATOM Cluster - configuration, etc
      1. System photograph
      2. Server module specification
      3. Network connection

Cluster Outline)

Basically the procedure is the similar to rccluster except that:

  1. NOTE)  I have created a repository for test in /home/satoshi/ramcloud-dpdk.git  and tested.  You can clone the latest ramcloud on ATOM for testing. Please try it. The instruction is written below.

  2. The cluster has 132 ATOM servers ( Total : 1,056 cores, 4.1TB DRAM, 16.5 TB SSD) connected to dedicated management server 'mmatom.scs.stanford.edu', which is directly connected to the Internet. Please take a look at System configuration below for detail.
  3. Unstable server can be disconnected with management tool, and the continuous IP-address/hostname given. IP-address and hostname is always associated. You will find the details in System-Administrator's guide:Hardware maintenance.

User's Guide)

User setup)

  1. ssh login to management server 'mmatom.scs.stanford.edu' with public key authentification and the special SSH port.
  2. Install your 'key pair for the cluster-login' to ~/.ssh .  For existing RAMCloud users, it is already copied from your home directory.
    • Add the cluster-login-public key to ~/.ssh/authrized_keys .
      Note) 
      - Your home is shared with all the ATOM servers with NFS, so you can login to all atom servers with public key authentification.
      - Do not copy your private key for mmatom login. Please create different key pair to ssh to AROM cluster from mmatom.
      - keypair can be generated with the command such as: 
               $ ssh-keygen -t rsa -b 2048
  3. Initialize known_host:
    1. You can use /usr/local/scripts/knownhost_init.sh
      1. Usage)  /usr/local/scripts/knownhost_init.sh <ServerNumberFrom> <ServerNumberTo>
        If the host is already initialized result of 'hostname' on remote machine is displayed, otherwise you are prompted whether you will add the host to known_host database, where you should type 'yes'.
      2. Example)
        $ knownhost_init.sh 1 20
            atom001
            atom002
                : 
    2. Note) You may see the following error:
      • Permission denied (publickey). 
        Sometimes it happens because the remote user information is not created on atomXXX because we do not use NIS or LDAP so far. You need ask your administrator to setup remote user on atomXXX. See : 'System administrator's guide' below.

Compile RAMCloud on the host 'mmatom' )

  1. Git clone from local RAMCloud repository, which is pre-tested for the ATOM cluster. Directory structure is almost the same as Stanford RAMCloud.
      • $ git clone /var/git/ramcloud-dpdk.git

      • $ git clone /home/satoshi/ramcloud-dpdk.git        // my local repository debugged.

      • $ cd ramcloud-dpdk
      • $ git submodule update --init
      • Note) DO NOT add '--recursive' option to git because git creates the following entry in 'logcabin/.git/config' to refer an obsolete repository and results timeout.
        >   [submodule "gtest"] 
        >        url = git://fiz.stanford.edu/git/gtest.git 
  2. Compile RAMCloud as typing make without any argument.
      • $ make
      • Note)

        1. Following make options are now default and specified in GNUmakefile.
          1. Debug=no
          2. ARCH=atom 
        2. CC, CXX, AR is directly specified in order to use '/usr/bin/gcc (4.4.7)' instead of  '/usr/local/bin/gcc (4.9.1)'  for compiling RAMCloud.

Run clusterperf.py from 'mmatom' on the atomXXX in the cluseter)

  1. You need to have RAMCloud  compiled.
  2. Reserve ( Lease ) ATOM servers with /usr/local/bin/mmres
    1. mmres has been ported from rcres. It manages resources for RAMCloud, eg. backup file, and DPDK resource file, etc. The backup replica is preserved until the mmres lease expires, so you can reuse the backup in different program while the lease continues.
    2. Check usage with: $ mmres --help
         Example) 
      • $ mmres ls -l
      • $ mmres ls -l atom10-35  or $ mmres ls -l 10-35      // print range
      • $ mmres lease 14:00 atom10-35 -m 'Comment here!!'
  3. Edit config.py for your servers reserved. (Default is 1..12)
  4. Run clusterperf.py :
      default parameter is equivalent to rccluster, which is replica=3, server=4, backup=1 except that it currently runs only the basic test.
      • $ scripts/clusterperf.py
      Note) Limitation... A lot of DPDK debug message starting with "EAL or PMD" is shown in stdout. Now fixing..
      Quick Hack: call through /usr/local/bin/mmfilter
        $ mmfilter clusterperf.py basic

       

  5. Run clientSample : It is a simple clientSample code.
      • cd clientSample
      • $ make
      • $ make run
      Note) Limitation original code repeat overwriting 1M times, however, it hangs after 104,000 iteration. It could be a log cleaning problem. Currently the test success after 100,000 iteration.
  6. Benchmarks/samples to be done..
    1. Working: clusterperf.py to run all the default tests. Now test failes at "readDistRandom" after "multiWrite_oneMaster"
    2. TBD: recovery.py
  7. NOTE)
    1. The scripts/config.py is customized for the ATOM Cluster so that we can run RAMCloud tests  with default option
    2. Limitations)
      1.  DPDK debug messages is printed to stdout at first. We are working to suppress the messages to make the result more readable.
      2. mmres does not refers your TZ variable. Please check use localtime where the cluster is located. We would like to modify mmres to refere 'export TZ=xxx' like 'date' command.

Performance result)

Clusterperf.py

Note) We are now trying to move the disturbing DPDK log from standard out to some logfile.

Measured on Wed 25 Feb 2015 12:31:42 PM PST :

basic.read100        13.456 us  read single 100B object (30B key) median
basic.read100.min 12.423 us  read single 100B object (30B key) minimum
basic.read100.9     13.837 us  read single 100B object (30B key) 90%
basic.read100.99   17.698 us  read single 100B object (30B key) 99%
basic.read100.999  24.356 us  read single 100B object (30B key) 99.9%
basic.readBw100    4.7 MB/s   bandwidth reading 100B object (30B key)

basic.read1K 20.425 us read single 1KB object (30B key) median
basic.read1K.min 19.593 us read single 1KB object (30B key) minimum
basic.read1K.9 20.786 us read single 1KB object (30B key) 90%
basic.read1K.99 24.306 us read single 1KB object (30B key) 99%
basic.read1K.999 36.569 us read single 1KB object (30B key) 99.9%
basic.readBw1K 33.4 MB/s bandwidth reading 1KB object (30B key)
basic.read10K 52.461 us read single 10KB object (30B key) median
basic.readBw10K 125.6 MB/s bandwidth reading 10KB object (30B key)
basic.read100K 358.567 us read single 100KB object (30B key) median
basic.readBw100K 187.6 MB/s bandwidth reading 100KB object (30B key)
basic.read1M 3.449 ms read single 1MB object (30B key) median
basic.readBw1M 212.1 MB/s bandwidth reading 1MB object (30B key)

basic.write100         43.307 us write single 100B object (30B key) median
basic.write100.min  41.031 us write single 100B object (30B key) minimum
basic.write100.9      47.528 us write single 100B object (30B key) 90%
basic.write100.99    86.543 us write single 100B object (30B key) 99%
basic.write100.999  38.363 ms write single 100B object (30B key) 99.9%
basic.writeBw100     542.6 KB/s bandwidth writing 100B object (30B key)

basic.write1K 63.481 us write single 1KB object (30B key) median
basic.write1K.min 60.453 us write single 1KB object (30B key) minimum
basic.write1K.9 66.720 us write single 1KB object (30B key) 90%
basic.write1K.99 126.391 us write single 1KB object (30B key) 99%
basic.write1K.999 41.500 ms write single 1KB object (30B key) 99.9%
basic.writeBw1K 4.9 MB/s bandwidth writing 1KB object (30B key)
basic.write10K 199.648 us write single 10KB object (30B key) median
basic.writeBw10K 12.0 MB/s bandwidth writing 10KB object (30B key)
basic.write100K 1.508 ms write single 100KB object (30B key) median
basic.writeBw100K 17.8 MB/s bandwidth writing 100KB object (30B key)
basic.write1M 41.949 ms write single 1MB object (30B key) median
basic.writeBw1M 21.8 MB/s bandwidth writing 1MB object (30B key)

# RAMCloud multiRead performance for 100 B objects with 30 byte keys
# located on a single master.
# Generated by 'clusterperf.py multiRead_oneMaster'
#
# Num Objs Num Masters Objs/Master Latency (us) Latency/Obj (us)
#----------------------------------------------------------------------------

1        1     1         23.0         22.99
2        1     2         28.3         14.15
3        1     3         33.2         11.07

9         1    9          49.5         5.50

50        1    50      168.7        3.37
60        1    60       235.5       3.93
70        1    70       209.1       2.99

Recovery.py

System administrator's guide)

Adding User)

 So far we do not use NIS/LDAP for account management. Please use a script to setup new users.

  User setup procedure) Still debugging the tool, please wait to use it.....

  • /usr/local/mmutils/mmuser/mmuser.sh  <UserName>
     The account on mmatom is copied to all the atomXXX. 

Hardware maintenance)

  1. Getting module's slot/chassis information and Mac address for a hostname or IP address.
    1. You will find the information in mmatom: /etc/hosts  :

          IPaddress           hostname              Mac Address                                   Installed slot and host port connected.
       
    2. For atomXXX(Y),  XXX is always corresponds to final digit of IP address:
       eg.  atom100  ==  192.168.3.100,     atom110a ==  192.168.4.110 

Security solution)

  1. SSH into management server
  2. Job spawning to cluster servers from management server
  3. Cluster management
    1. Server console
    2. IPMI to CMM, BMC
    3. USB connection to ONS from front panel

Stanford's ATOM Cluster - configuration, etc)
1. system photograph)

2. ATOM server module specification)

  1. 3 chassis are installed (The rack in above picture contains 16 chassis.)
  2. Installed ATOM modules are with C2730 (1.7GHz, 8 core/8 threads, 12 W)

3. Network connection)

  1. Due to historical reason and considering future experiment, VLAN configuration is different in chassis
  2. Management server is directly connect to the internet, the cluster is isolated from other Stanford servers.
    1. Management server works as firewall, login server, firewall, NIS server, DHCP server, and PXE server for reconfiguring ATOM servers.

 

Reference:
  • No labels