| | 1 | = How To Install = |
| | 2 | == Tutorial from Google == |
| | 3 | * [http://code.google.com/p/hypertable/wiki/SourceCode Get Source Code] |
| | 4 | * [http://code.google.com/p/hypertable/wiki/HowToInstall Build Source Code & Generate Documentation Tree] |
| | 5 | == Install == |
| | 6 | * Install prerequisite library |
| | 7 | {{{ |
| | 8 | $ apt-get install build-essential (if stdio.h not found) |
| | 9 | $ apt-get install zlib1g-dev (if CMake Error: Could NOT find z library) |
| | 10 | $ apt-get install libboost.*-dev libboost-doc libboost.*1.34.1 (install Boost version 1.34.1) |
| | 11 | NOTE. 用apt-get安裝boost 1.34.1,在執行cmake編譯hypertable時,需要另外定義 -DBoost_INCLUDE_DIR="/usr/include/boost" |
| | 12 | $ apt-get install liblog4cpp4 liblog4cpp4-dev liblog4cpp4-doc (install log4cpp) |
| | 13 | $ apt-get install expat libexpat1 libexpat1-dev (install expat) |
| | 14 | $ apt-get install doxygen doxygen-doc doxygen-gui (install doxygen) |
| | 15 | $ apt-get install graphviz graphviz-dev graphviz-doc (install graphviz) |
| | 16 | $ apt-get install libgoogle-perftools0 libgoogle-perftools-dev (install tcmalloc) |
| | 17 | $ apt-get install libreadline5 libreadline5-dev libreadline5-dbg (install readline library) |
| | 18 | $ apt-get install libattr1 libattr1-dev (if #include <attr/xattr.h> not found) |
| | 19 | }}} |
| | 20 | * Configure the build |
| | 21 | {{{ |
| | 22 | sunny@hsihdp:~/build/hypertable$ cmake -DCMAKE_INSTALL_PREFIX= -DCMAKE_BUILD_TYPE="Debug" -DBoost_INCLUDE_DIR="/usr/include/boost" ~/git/hypertable |
| | 23 | -- Looking for required boost libraries... |
| | 24 | -- Boost include dir: /usr/include/boost |
| | 25 | -- Boost thread lib: /usr/lib/libboost_thread-mt.so |
| | 26 | -- Boost program options lib: /usr/lib/libboost_program_options-mt.so |
| | 27 | -- Boost lib dir: /usr/lib |
| | 28 | -- Boost version: 1_34_1 |
| | 29 | -- Looking for doxygen... |
| | 30 | -- Looking for doxygen... - found /usr/bin/doxygen |
| | 31 | -- Looking for dot tool... |
| | 32 | -- Looking for dot tool... - found /usr/bin/dot |
| | 33 | -- Found Tcmalloc: /usr/lib/libtcmalloc_minimal.so |
| | 34 | -- Found Tcmalloc: /usr/lib/libtcmalloc_minimal.so |
| | 35 | -- Got boost 1.34.x, prepend fix directory |
| | 36 | -- Configuring done |
| | 37 | -- Generating done |
| | 38 | -- Build files have been written to: /home/sunny/build/hypertable |
| | 39 | }}} |
| | 40 | * Build the software (make) |
| | 41 | {{{ |
| | 42 | sunny@hsihdp:~/build/hypertable$ make |
| | 43 | [ 6%] Built target HyperComm |
| | 44 | [ 10%] Built target HyperCommon |
| | 45 | [ 11%] Built target commTest |
| | 46 | [ 12%] Built target commTestDatagram |
| | 47 | [ 12%] Built target commTestReverseRequest |
| | 48 | [ 13%] Built target commTestTimeout |
| | 49 | [ 13%] Built target commTestTimer |
| | 50 | [ 13%] Built target sampleClient |
| | 51 | [ 14%] Built target testServer |
| | 52 | [ 14%] Built target htConvert |
| | 53 | [ 17%] Built target Hyperspace |
| | 54 | [ 33%] Built target Hypertable |
| | 55 | [ 42%] Built target HyperDfsBroker |
| | 56 | [ 50%] Built target Hyperspace.Master |
| | 57 | [ 56%] Built target Hypertable.Master |
| | 58 | [ 57%] Built target htgc |
| | 59 | [ 73%] Built target Hypertable.RangeServer |
| | 60 | [ 76%] Built target count_stored |
| | 61 | [ 79%] Built target csdump |
| | 62 | [ 79%] Built target bmz-test |
| | 63 | [ 79%] Built target bmzip |
| | 64 | [ 80%] Built target compressor_test |
| | 65 | [ 80%] Built target generate_test_data |
| | 66 | [ 80%] Built target loadDataSourceTest |
| | 67 | [ 81%] Built target locationCacheTest |
| | 68 | [ 81%] Built target schemaTest |
| | 69 | [ 85%] Built target dfsTest |
| | 70 | [ 88%] Built target dfsclient |
| | 71 | [ 94%] Built target hyperspace |
| | 72 | [ 94%] Built target hyperspaceTest |
| | 73 | [ 95%] Built target hypertable |
| | 74 | [ 95%] Built target hypertable_test |
| | 75 | [ 96%] Built target dumplog |
| | 76 | [ 96%] Built target merge_diff |
| | 77 | [ 97%] Built target rsTest |
| | 78 | [ 98%] Built target rsclient |
| | 79 | [ 99%] Built target rsdump |
| | 80 | [ 99%] Built target serverup |
| | 81 | [100%] Built target localBroker |
| | 82 | }}} |
| | 83 | * Build the software (make install) |
| | 84 | {{{ |
| | 85 | sunny@hsihdp:~/build/hypertable$ make install DESTDIR="~/hypertable" |
| | 86 | [ 6%] Built target HyperComm |
| | 87 | [ 10%] Built target HyperCommon |
| | 88 | [ 11%] Built target commTest |
| | 89 | [ 12%] Built target commTestDatagram |
| | 90 | [ 12%] Built target commTestReverseRequest |
| | 91 | [ 13%] Built target commTestTimeout |
| | 92 | [ 13%] Built target commTestTimer |
| | 93 | [ 13%] Built target sampleClient |
| | 94 | [ 14%] Built target testServer |
| | 95 | [ 14%] Built target htConvert |
| | 96 | [ 17%] Built target Hyperspace |
| | 97 | [ 33%] Built target Hypertable |
| | 98 | [ 42%] Built target HyperDfsBroker |
| | 99 | [ 50%] Built target Hyperspace.Master |
| | 100 | [ 56%] Built target Hypertable.Master |
| | 101 | [ 57%] Built target htgc |
| | 102 | [ 73%] Built target Hypertable.RangeServer |
| | 103 | [ 76%] Built target count_stored |
| | 104 | [ 79%] Built target csdump |
| | 105 | [ 79%] Built target bmz-test |
| | 106 | [ 79%] Built target bmzip |
| | 107 | [ 80%] Built target compressor_test |
| | 108 | [ 80%] Built target generate_test_data |
| | 109 | [ 80%] Built target loadDataSourceTest |
| | 110 | [ 81%] Built target locationCacheTest |
| | 111 | [ 81%] Built target schemaTest |
| | 112 | [ 85%] Built target dfsTest |
| | 113 | [ 88%] Built target dfsclient |
| | 114 | [ 94%] Built target hyperspace |
| | 115 | [ 94%] Built target hyperspaceTest |
| | 116 | [ 95%] Built target hypertable |
| | 117 | [ 95%] Built target hypertable_test |
| | 118 | [ 96%] Built target dumplog |
| | 119 | [ 96%] Built target merge_diff |
| | 120 | [ 97%] Built target rsTest |
| | 121 | [ 98%] Built target rsclient |
| | 122 | [ 99%] Built target rsdump |
| | 123 | [ 99%] Built target serverup |
| | 124 | [100%] Built target localBroker |
| | 125 | Linking CXX executable CMakeFiles/CMakeRelink.dir/Hyperspace.Master |
| | 126 | Linking CXX executable CMakeFiles/CMakeRelink.dir/Hypertable.Master |
| | 127 | Linking CXX executable CMakeFiles/CMakeRelink.dir/htgc |
| | 128 | Linking CXX executable CMakeFiles/CMakeRelink.dir/Hypertable.RangeServer |
| | 129 | Linking CXX executable CMakeFiles/CMakeRelink.dir/count_stored |
| | 130 | Linking CXX executable CMakeFiles/CMakeRelink.dir/csdump |
| | 131 | Linking CXX executable CMakeFiles/CMakeRelink.dir/generate_test_data |
| | 132 | Linking CXX executable CMakeFiles/CMakeRelink.dir/dfsclient |
| | 133 | Linking CXX executable CMakeFiles/CMakeRelink.dir/hyperspace |
| | 134 | Linking CXX executable CMakeFiles/CMakeRelink.dir/hypertable |
| | 135 | Linking CXX executable CMakeFiles/CMakeRelink.dir/dumplog |
| | 136 | Linking CXX executable CMakeFiles/CMakeRelink.dir/merge_diff |
| | 137 | Linking CXX executable CMakeFiles/CMakeRelink.dir/rsclient |
| | 138 | Linking CXX executable CMakeFiles/CMakeRelink.dir/rsdump |
| | 139 | Linking CXX executable CMakeFiles/CMakeRelink.dir/serverup |
| | 140 | Linking CXX executable CMakeFiles/CMakeRelink.dir/localBroker |
| | 141 | Install the project... |
| | 142 | -- Install configuration: "Debug" |
| | 143 | -- Installing /home/sunny/hypertable/0.9.0.5/demo/metadata-test.xml |
| | 144 | -- Installing /home/sunny/hypertable/0.9.0.5/demo/testdata.txt.bz2 |
| | 145 | -- Installing /home/sunny/hypertable/0.9.0.5/demo/Test.xml |
| | 146 | -- Installing /home/sunny/hypertable/0.9.0.5/demo/Test-schema.xml |
| | 147 | -- Installing /home/sunny/hypertable/0.9.0.5/conf/hypertable.cfg |
| | 148 | -- Installing /home/sunny/hypertable/0.9.0.5/conf/METADATA.xml |
| | 149 | -- Installing /home/sunny/hypertable/0.9.0.5/java/lib/commons-logging-1.0.4.jar |
| | 150 | -- Installing /home/sunny/hypertable/0.9.0.5/java/lib/hadoop-0.14.4-core.jar |
| | 151 | -- Installing /home/sunny/hypertable/0.9.0.5/java/lib/junit-4.3.1.jar |
| | 152 | -- Installing /home/sunny/hypertable/0.9.0.5/java/lib/log4j-1.2.13.jar |
| | 153 | -- Installing /home/sunny/hypertable/0.9.0.5/java/lib/hypertable-0.9.0.jar |
| | 154 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/jrun |
| | 155 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/start-all-servers.sh |
| | 156 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/start-master.sh |
| | 157 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/start-range-server.sh |
| | 158 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/kill-servers.sh |
| | 159 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/slaves.sh |
| | 160 | -- Installing /home/sunny/hypertable/0.9.0.5/test/create-test-tables.hql |
| | 161 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log |
| | 162 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/apache_log_query.cc |
| | 163 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/README.txt |
| | 164 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/apache_log_load.cc |
| | 165 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/access.log.gz |
| | 166 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/WebServerLog-create-table.hql |
| | 167 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/apache_log/Makefile |
| | 168 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/hql_tutorial |
| | 169 | -- Installing /home/sunny/hypertable/0.9.0.5/examples/hql_tutorial/Pages-create.hql |
| | 170 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ReactorRunner.h |
| | 171 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/IOHandlerData.h |
| | 172 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ConnectionManager.h |
| | 173 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ApplicationHandler.h |
| | 174 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/CommBuf.h |
| | 175 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/DispatchHandlerSynchronizer.h |
| | 176 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/DispatchHandler.h |
| | 177 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ApplicationQueue.h |
| | 178 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Reactor.h |
| | 179 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Header.h |
| | 180 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/HandlerMap.h |
| | 181 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/IOHandlerAccept.h |
| | 182 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/IOHandler.h |
| | 183 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Protocol.h |
| | 184 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Serialization.h |
| | 185 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Timer.h |
| | 186 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/PollTimeout.h |
| | 187 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ResponseCallback.h |
| | 188 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ReactorFactory.h |
| | 189 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Comm.h |
| | 190 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/IOHandlerDatagram.h |
| | 191 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/HeaderBuilder.h |
| | 192 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/RequestCache.h |
| | 193 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/Event.h |
| | 194 | -- Installing /home/sunny/hypertable/0.9.0.5/include/AsyncComm/ConnectionHandlerFactory.h |
| | 195 | -- Installing /home/sunny/hypertable/0.9.0.5/lib/libHyperComm.a |
| | 196 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/SockAddrMap.h |
| | 197 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/ReferenceCount.h |
| | 198 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/FileUtils.h |
| | 199 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Exception.h |
| | 200 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Logger.h |
| | 201 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/CharStrHashMap.h |
| | 202 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/CharStrHashTraits.h |
| | 203 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/ByteString.h |
| | 204 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/InteractiveCommand.h |
| | 205 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/InetAddr.h |
| | 206 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/ServerLauncher.h |
| | 207 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/System.h |
| | 208 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/NumberStream.h |
| | 209 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Init.h |
| | 210 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/atomic.h |
| | 211 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/CharArena.h |
| | 212 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/DynamicBuffer.h |
| | 213 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/StringExt.h |
| | 214 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Thread.h |
| | 215 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/HashMap.h |
| | 216 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Checksum.h |
| | 217 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/ByteOrder.h |
| | 218 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Properties.h |
| | 219 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Runnable.h |
| | 220 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Error.h |
| | 221 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/TestHarness.h |
| | 222 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Sweetener.h |
| | 223 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/md5.h |
| | 224 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Common/Usage.h |
| | 225 | -- Installing /home/sunny/hypertable/0.9.0.5/lib/libHyperCommon.a |
| | 226 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ClientConnectionHandler.h |
| | 227 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerAttrDel.h |
| | 228 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/SessionData.h |
| | 229 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/Session.h |
| | 230 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerExists.h |
| | 231 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerRelease.h |
| | 232 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ResponseCallbackOpen.h |
| | 233 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerReaddir.h |
| | 234 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ResponseCallbackLock.h |
| | 235 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerLock.h |
| | 236 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerDelete.h |
| | 237 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/DirEntry.h |
| | 238 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerMkdir.h |
| | 239 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerAttrGet.h |
| | 240 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/HandleData.h |
| | 241 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerAttrSet.h |
| | 242 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ClientKeepaliveHandler.h |
| | 243 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ServerKeepaliveHandler.h |
| | 244 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ServerConnectionHandler.h |
| | 245 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerOpen.h |
| | 246 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerStatus.h |
| | 247 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/Protocol.h |
| | 248 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/NodeData.h |
| | 249 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/Master.h |
| | 250 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ResponseCallbackAttrGet.h |
| | 251 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ClientHandleState.h |
| | 252 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/LockSequencer.h |
| | 253 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ResponseCallbackExists.h |
| | 254 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/Notification.h |
| | 255 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/HandleCallback.h |
| | 256 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/ResponseCallbackReaddir.h |
| | 257 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/RequestHandlerClose.h |
| | 258 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hyperspace/Event.h |
| | 259 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/Hyperspace.Master |
| | 260 | -- Installing /home/sunny/hypertable/0.9.0.5/lib/libHyperspace.a |
| | 261 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/Hypertable.Master |
| | 262 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/htgc |
| | 263 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/Hypertable.RangeServer |
| | 264 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/csdump |
| | 265 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/count_stored |
| | 266 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Client.h |
| | 267 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionHeader.h |
| | 268 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/HqlCommandInterpreter.h |
| | 269 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/CommandShell.h |
| | 270 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TableMutator.h |
| | 271 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/RangeLocator.h |
| | 272 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodecBmz.h |
| | 273 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/CommitLogReader.h |
| | 274 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/ApacheLogParser.h |
| | 275 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TestData.h |
| | 276 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/KeySpec.h |
| | 277 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/CommandInterpreter.h |
| | 278 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TableScanner.h |
| | 279 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TableMutatorDispatchHandler.h |
| | 280 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodecLzo.h |
| | 281 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/CompressorFactory.h |
| | 282 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionHeaderCommitLog.h |
| | 283 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Defaults.h |
| | 284 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodecNone.h |
| | 285 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/LoadDataSource.h |
| | 286 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Cell.h |
| | 287 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Filesystem.h |
| | 288 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/LocationCache.h |
| | 289 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Key.h |
| | 290 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/RangeServerProtocol.h |
| | 291 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TestSource.h |
| | 292 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/HqlParser.h |
| | 293 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/MasterFileHandler.h |
| | 294 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodecQuicklz.h |
| | 295 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/RangeLocationInfo.h |
| | 296 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodecZlib.h |
| | 297 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/ScanBlock.h |
| | 298 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Schema.h |
| | 299 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/TableMutatorScatterBuffer.h |
| | 300 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/RangeServerClient.h |
| | 301 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/MasterProtocol.h |
| | 302 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/HqlHelpText.h |
| | 303 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/CommitLog.h |
| | 304 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/MasterClient.h |
| | 305 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Types.h |
| | 306 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/DataSource.h |
| | 307 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/BlockCompressionCodec.h |
| | 308 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/fletcher16.h |
| | 309 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/RootFileHandler.h |
| | 310 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/Table.h |
| | 311 | -- Installing /home/sunny/hypertable/0.9.0.5/include/Hypertable/Lib/EventHandlerMasterChange.h |
| | 312 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/generate_test_data |
| | 313 | -- Installing /home/sunny/hypertable/0.9.0.5/lib/libHypertable.a |
| | 314 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/dfsclient |
| | 315 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/hyperspace |
| | 316 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/hypertable |
| | 317 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/dumplog |
| | 318 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/merge_diff |
| | 319 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/rsclient |
| | 320 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/rsdump |
| | 321 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/serverup |
| | 322 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/Client.h |
| | 323 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerPread.h |
| | 324 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/Broker.h |
| | 325 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ResponseCallbackOpen.h |
| | 326 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerReaddir.h |
| | 327 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerFlush.h |
| | 328 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/OpenFileMap.h |
| | 329 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerOpen.h |
| | 330 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerMkdirs.h |
| | 331 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerStatus.h |
| | 332 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerLength.h |
| | 333 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ResponseCallbackRead.h |
| | 334 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/Protocol.h |
| | 335 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerRemove.h |
| | 336 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerAppend.h |
| | 337 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ResponseCallbackAppend.h |
| | 338 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerSeek.h |
| | 339 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ResponseCallbackLength.h |
| | 340 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerCreate.h |
| | 341 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerRead.h |
| | 342 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ClientBufferedReaderHandler.h |
| | 343 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerRmdir.h |
| | 344 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ResponseCallbackReaddir.h |
| | 345 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/RequestHandlerClose.h |
| | 346 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ConnectionHandler.h |
| | 347 | -- Installing /home/sunny/hypertable/0.9.0.5/include/DfsBroker/Lib/ConnectionHandlerFactory.h |
| | 348 | -- Installing /home/sunny/hypertable/0.9.0.5/lib/libHyperDfsBroker.a |
| | 349 | -- Installing /home/sunny/hypertable/0.9.0.5/bin/localBroker |
| | 350 | }}} |
| | 351 | |