CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 11:24:33 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090610032928
location: https://web.archive.org/web/20090610032928/https://github.com/nuggetwheat/hypertable/tree/good
server-timing: captures_list;dur=0.717077, exclusion.robots;dur=0.024678, exclusion.robots.policy;dur=0.010027, esindex;dur=0.013836, cdx.remote;dur=26.890552, LoadShardBlock;dur=533.075305, PetaboxLoader3.datanode;dur=181.738311, PetaboxLoader3.resolve;dur=290.191965
x-app-server: wwwb-app223
x-ts: 302
x-tr: 627
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 11:24:33 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Wed, 10 Jun 2009 03:29:28 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 1006ms
x-archive-orig-etag: "c2de3166d9b7984c58b6862e91996fcb"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 26624
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 10 Jun 2009 03:29:28 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 10 Jun 2009 03:29:28 GMT", ; rel="memento"; datetime="Wed, 10 Jun 2009 03:29:28 GMT", ; rel="next memento"; datetime="Sat, 17 Oct 2009 11:35:41 GMT", ; rel="last memento"; datetime="Thu, 15 Jul 2010 06:40:49 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_10_20090610023146_crawl103-c/52_10_20090610032910_crawl101.arc.gz
server-timing: captures_list;dur=0.612332, exclusion.robots;dur=0.023898, exclusion.robots.policy;dur=0.010131, esindex;dur=0.012545, cdx.remote;dur=31.148706, LoadShardBlock;dur=220.398456, PetaboxLoader3.datanode;dur=144.295650, PetaboxLoader3.resolve;dur=182.623381, load_resource;dur=139.296556
x-app-server: wwwb-app223
x-ts: 200
x-tr: 472
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
nuggetwheat's hypertable at good - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Fork of vicaya/hypertable | |
Description: | A flexible database focused on performance and scalability |
Homepage: | https://hypertable.org/ |
Clone URL: |
git://github.com/nuggetwheat/hypertable.git
Give this clone URL to anyone.
git clone git://github.com/nuggetwheat/hypertable.git
|

nuggetwheat (author)
Tue Dec 04 15:33:09 -0800 2007
name | age | message | |
---|---|---|---|
![]() |
CMakeLists.txt | Loading commit data... ![]() |
|
![]() |
LICENSE | Thu Jul 19 17:56:46 -0700 2007 | More progress on CMake git-svn-id: https://hy... [nuggetwheat] |
![]() |
README.txt | ||
![]() |
bin/ | ||
![]() |
build.xml | ||
![]() |
cmake/ | ||
![]() |
conf/ | ||
![]() |
demo/ | Mon Nov 26 21:55:20 -0800 2007 | Added test code to RangeServer to update METADA... [nuggetwheat] |
![]() |
doc/ | ||
![]() |
lib/ | ||
![]() |
src/ | ||
![]() |
test/ |
CONTENTS * HOW TO BUILD * HOW TO RUN REGRESSION TESTS * HOW TO BUILD SOURCE CODE DOCUMENTATION TREE (Doxygen) === HOW TO BUILD === 1. Install CMake (https://www.cmake.org/) 2. Make sure Java 1.5 or later and the ant build tool is installed on your machine. 3. Install the following libraries: - Boost version 1.34.1 (https://www.boost.org/) - log4cpp version 0.3.5rc3 (https://log4cpp.sourceforge.net/) - expat version 2.0.1 (https://sourceforge.net/projects/expat) 4. Checkout the source code. mkdir ~/code cd ~/code svn checkout https://hypertable.googlecode.com/svn/trunk hypertable 5. Build hypertable.jar cd ~/code/hypertable ant jar 6. Create an install directory mkdir ~/hypertable 7. Create a build directory mkdir -p ~/build/hypertable 8. Configure the build. cd ~/build/hypertable cmake -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_INSTALL_PREFIX= ~/code/hypertable 9. Build the software. make make install DESTDIR=<your_install_dir> === HOW TO RUN REGRESSION TESTS === 1. Make sure software is built and installed according to 'HOW TO BUILD' NOTE: These instructions assume the installation directory is ~/hypertable 2. Stop the servers *** Must be performed prior to running the regression tests each time ** cd ~/hypertable ./test/stop-servers.sh 3. Start the servers. The following example illustrates the use of the 'local' DFS broker, but can be changed to use any DFS broker (e.g. hadoop, kosmos, etc.) by replacing the 'local' keyword with the name of the broker you want to use. *** Must be performed prior to running the regression tests each time ** cd ~/hypertable ./test/start-servers.sh local [ Expected output ... ] Successfully started DFSBroker (local) Successfully started Hyperspace Successfully started Hypertable.Master Successfully started Hypertable.RangeServer 4. Run the regression tests cd ~/build/hypertable make test === HOW TO BUILD SOURCE CODE DOCUMENTATION TREE (Doxygen) === If you have doxygen installed on your system, then CMake should detect this and add a 'doc' target to the make file. Building the source code documentation tree is just a matter of running the following commands: cd ~/build/hypertable make doc The documentation tree will get generated under ~/build/hypertable/doc. To view the HTML docs, load the following file into a web browser: ~/build/hypertable/doc/html/index.html LATER: To set extended attributes, you should add the user_xattr property to the relevant file systems in your /etc/fstab file. For example: /dev/hda3 /home ext3 defaults,user_xattr 1 2 You can then remount the affected partitions as follows: # mount -o remount /home
This feature is coming soon. Sit tight!