Changes between Version 4 and Version 5 of HyperTable/HowToInstall


Ignore:
Timestamp:
Mar 19, 2008, 3:17:49 PM (16 years ago)
Author:
sunny
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HyperTable/HowToInstall

    v4 v5  
    353353-- Installing /home/sunny/hypertable/0.9.0.5/bin/localBroker
    354354}}}
     355 * RUN REGRESSION TESTS
     356  * Enable the extended attributes on the partition that holds the installation
     357   * NOTE. mac os, hadoop(HDFS), kosmos(KFS) 不需要再修改 extended attributes
     358{{{
     359$ sudo vim /etc/fstab
     360/dev/sda1 ext3 defaults,errors=remount-ro 0 1 => /dev/sda1 ext3 defaults,user_xattr,errors=remount-ro 0 1
     361$ sudo mount -o remount /home
     362}}}
     363  * Restart servers and re-create test tables
     364    * ./start-all-servers.sh: Usage: start-test-servers.sh [local|hadoop|kosmos]
     365{{{
     366sunny@hsihdp:~/hypertable/0.9.0.5/bin$ ./kill-servers.sh
     367Unable to connect to DfsBroker.
     368./kill-servers.sh: line 59: kill: (6213) - 沒有此一程序
     369./kill-servers.sh: line 59: kill: (6247) - 沒有此一程序
     370./kill-servers.sh: line 59: kill: (6282) - 沒有此一程序
     371sunny@hsihdp:~/hypertable/0.9.0.5/bin$ ./start-all-servers.sh local
     372Successfully started DFSBroker (local)
     373Successfully started Hyperspace
     374Successfully started Hypertable.Master
     375Successfully started Hypertable.RangeServer
     376}}}
     377  * Run the regression tests
     378{{{
     379sunny@hsihdp:~/build/hypertable$ make test
     380Running tests...
     381Start processing tests
     382Test project /home/sunny/build/hypertable
     383  1/ 17 Testing HyperComm                        Passed
     384  2/ 17 Testing HyperComm-datagram               Passed
     385  3/ 17 Testing HyperComm-timeout                Passed
     386  4/ 17 Testing HyperComm-timer                  Passed
     387  5/ 17 Testing HyperComm-reverse-request        Passed
     388  6/ 17 Testing Schema                           Passed
     389  7/ 17 Testing LocationCache                    Passed
     390  8/ 17 Testing LoadDataSource                   Passed
     391  9/ 17 Testing BlockCompressor-BMZ              Passed
     392 10/ 17 Testing BlockCompressor-LZO              Passed
     393 11/ 17 Testing BlockCompressor-NONE             Passed
     394 12/ 17 Testing BlockCompressor-QUICKLZ          Passed
     395 13/ 17 Testing BlockCompressor-ZLIB             Passed
     396 14/ 17 Testing HyperDfsBroker                   Passed
     397 15/ 17 Testing Hyperspace                       Passed
     398 16/ 17 Testing hypertable                       Passed
     399 17/ 17 Testing RangeServer                      Passed
    355400
     401100% tests passed, 0 tests failed out of 17
     402}}}
     403