├── .gitignore ├── CHANGES ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── bin ├── clean-database.sh ├── fhsize.sh ├── ht-env.sh ├── ht.in ├── htbt.sh ├── jrun ├── ldd.sh ├── postinst.in ├── prerm.in ├── prerm.sh ├── random-wait.sh ├── soname.sh ├── src-utils │ ├── ccp │ ├── fnr │ ├── gpp │ ├── htbuild │ ├── htpkg │ ├── srcgrep │ ├── testdiff │ └── ver ├── start-all-servers.sh ├── start-dfsbroker.sh ├── start-hyperspace.sh ├── start-master.sh ├── start-rangeserver.sh ├── start-test-servers.sh ├── start-thriftbroker.sh └── stop-servers.sh ├── cmake ├── CheckBdb.cc ├── CheckBoost.cc ├── CheckTcmalloc.cc ├── CommonUtil.cmake ├── DocHelper.cmake ├── FindAnt.cmake ├── FindBerkeleyDB.cmake ├── FindBoost.cmake ├── FindCeph.cmake ├── FindGoogleHash.cmake ├── FindKfs.cmake ├── FindLibEvent.cmake ├── FindLog4cpp.cmake ├── FindPHP5Thrift.cmake ├── FindPerlThrift.cmake ├── FindPythonThrift.cmake ├── FindReadline.cmake ├── FindRubyThrift.cmake ├── FindSIGAR.cmake ├── FindTcmalloc.cmake ├── FindThrift.cmake ├── HadoopHelper.cmake ├── JavaHelper.cmake ├── PackageHelper.cmake ├── TestHelper.cmake └── VersionHelper.cmake ├── conf ├── Capfile.cluster ├── Capfile.localhost ├── METADATA.xml └── hypertable.cfg ├── contrib ├── CMakeLists.txt ├── cc │ ├── MapReduce │ │ ├── CMakeLists.txt │ │ ├── TableInputFormat.cc │ │ ├── TableInputFormat.h │ │ ├── TableInputFormat_DummyRecordReader.h │ │ ├── TableRangeMap.cc │ │ ├── TableRangeMap.h │ │ ├── TableReader.cc │ │ ├── TableReader.h │ │ ├── TableWriter.h │ │ └── test │ │ │ ├── mapredconf.xml │ │ │ ├── mapredjob.cc │ │ │ └── rangeMapTest.cc │ └── PythonBinding │ │ ├── CMakeLists.txt │ │ ├── HypertableBindings.cc │ │ ├── HypertableBindings.h │ │ └── test.py └── java │ └── MapReduce │ └── org │ └── hypertable │ └── mapreduce │ ├── TableInputFormat.java │ └── TableSplit.java ├── doc ├── Doxyfile ├── PACKAGE.txt ├── README.md ├── bin │ ├── Markdown.pl │ └── make-doc-tree.sh └── markdown │ ├── hql │ ├── alter-table.md │ ├── create-table.md │ ├── delete.md │ ├── describe-table.md │ ├── drop-table.md │ ├── index.md │ ├── insert.md │ ├── load-data-infile.md │ ├── select.md │ ├── show-create-table.md │ ├── show-tables.md │ ├── shutdown.md │ └── template.html │ ├── images │ ├── bg-body.jpg │ ├── bg-btn-browse.gif │ ├── bg-btn-clear.gif │ ├── bg-btn-download-page.gif │ ├── bg-btn-submit.gif │ ├── bg-btnbig-download.gif │ ├── bg-contents-bottom.jpg │ ├── bg-contents.jpg │ ├── bg-footer-container.gif │ ├── bg-footer.gif │ ├── bg-header.gif │ ├── bg-header.jpg │ ├── bg-logo.gif │ ├── btn-download-beta.gif │ ├── btn-more-hypertable.gif │ ├── gra-cube.gif │ ├── gra-end-of-page.gif │ ├── gra-offsite.gif │ ├── gra-tesseract.gif │ ├── lgo-baidu.gif │ ├── lgo-hypertable.jpg │ ├── lgo-rediff.gif │ ├── lgo-sponsors-baidu.gif │ ├── lgo-sponsors-rediff.gif │ ├── lgo-sponsors-zvents.gif │ ├── lgo-zvents.gif │ └── tesseract.jpg │ ├── inc │ └── styles.css │ ├── index.md │ └── template.html ├── examples ├── CMakeLists.txt ├── apache_log │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.txt │ ├── access.log.gz │ ├── apache_log_load.cc │ ├── apache_log_query.cc │ └── create-table.hql ├── freebase │ ├── CMakeLists.txt │ ├── aircraft_model.tsv.gz │ ├── create-table-freebase.hql │ ├── freebase_load.cc │ ├── freebase_parser.cc │ └── freebase_parser.h ├── generate_data │ ├── README │ ├── example-1.cfg │ └── example-2.cfg └── hql_tutorial │ └── Pages-create.hql ├── lib ├── commons-logging-1.0.4.jar ├── hadoop-0.20.1-core.LICENSE.txt ├── hadoop-0.20.1-core.jar ├── hypertable-0.9.2.7.jar ├── junit-4.3.1.LICENSE.txt ├── junit-4.3.1.jar ├── libthrift.jar └── log4j-1.2.13.jar ├── src ├── CMakeLists.txt ├── cc │ ├── AsyncComm │ │ ├── ApplicationHandler.h │ │ ├── ApplicationQueue.h │ │ ├── CMakeLists.txt │ │ ├── Comm.cc │ │ ├── Comm.h │ │ ├── CommBuf.h │ │ ├── CommHeader.cc │ │ ├── CommHeader.h │ │ ├── Config.cc │ │ ├── Config.h │ │ ├── ConnectionHandlerFactory.h │ │ ├── ConnectionManager.cc │ │ ├── ConnectionManager.h │ │ ├── DispatchHandler.h │ │ ├── DispatchHandlerSynchronizer.cc │ │ ├── DispatchHandlerSynchronizer.h │ │ ├── Event.cc │ │ ├── Event.h │ │ ├── ExpireTimer.h │ │ ├── HandlerMap.h │ │ ├── IOHandler.cc │ │ ├── IOHandler.h │ │ ├── IOHandlerAccept.cc │ │ ├── IOHandlerAccept.h │ │ ├── IOHandlerData.cc │ │ ├── IOHandlerData.h │ │ ├── IOHandlerDatagram.cc │ │ ├── IOHandlerDatagram.h │ │ ├── PollTimeout.h │ │ ├── Protocol.cc │ │ ├── Protocol.h │ │ ├── Reactor.cc │ │ ├── Reactor.h │ │ ├── ReactorFactory.cc │ │ ├── ReactorFactory.h │ │ ├── ReactorRunner.cc │ │ ├── ReactorRunner.h │ │ ├── RequestCache.cc │ │ ├── RequestCache.h │ │ ├── ResponseCallback.cc │ │ ├── ResponseCallback.h │ │ ├── sampleClient.cc │ │ ├── testServer.cc │ │ └── tests │ │ │ ├── CommTestDatagramThreadFunction.cc │ │ │ ├── CommTestDatagramThreadFunction.h │ │ │ ├── CommTestThreadFunction.cc │ │ │ ├── CommTestThreadFunction.h │ │ │ ├── commTest.cc │ │ │ ├── commTestDatagram.cc │ │ │ ├── commTestReverseRequest.cc │ │ │ ├── commTestReverseRequest.golden │ │ │ ├── commTestTimeout.cc │ │ │ ├── commTestTimeout.golden │ │ │ ├── commTestTimer.cc │ │ │ ├── commTestTimer.golden │ │ │ └── datafile.txt │ ├── Benchmark │ │ ├── CMakeLists.txt │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── random-test-create-table-memory.hql │ │ │ ├── random-test-create-table.hql │ │ │ ├── random_read_test.cc │ │ │ └── random_write_test.cc │ │ └── write │ │ │ ├── CMakeLists.txt │ │ │ └── ht_write_test.cc │ ├── CMakeLists.txt │ ├── Common │ │ ├── Abi.cc │ │ ├── Abi.h │ │ ├── Barrier.h │ │ ├── BlobHashSet.h │ │ ├── BlobHashTraits.h │ │ ├── BloomFilter.h │ │ ├── ByteString.h │ │ ├── CMakeLists.txt │ │ ├── CharArena.h │ │ ├── Checksum.cc │ │ ├── Checksum.h │ │ ├── Compat.h │ │ ├── Config.cc │ │ ├── Config.h │ │ ├── CstrHashMap.h │ │ ├── CstrHashTraits.h │ │ ├── DiscreteRandomGenerator.cc │ │ ├── DiscreteRandomGenerator.h │ │ ├── DiscreteRandomGeneratorFactory.cc │ │ ├── DiscreteRandomGeneratorFactory.h │ │ ├── DiscreteRandomGeneratorUniform.h │ │ ├── DiscreteRandomGeneratorZipf.cc │ │ ├── DiscreteRandomGeneratorZipf.h │ │ ├── DynamicBuffer.h │ │ ├── Error.cc │ │ ├── Error.h │ │ ├── FailureInducer.cc │ │ ├── FailureInducer.h │ │ ├── FileUtils.cc │ │ ├── FileUtils.h │ │ ├── Filesystem.h │ │ ├── FixedStream.h │ │ ├── FlyweightString.h │ │ ├── HashMap.h │ │ ├── InetAddr.cc │ │ ├── InetAddr.h │ │ ├── Init.h │ │ ├── InteractiveCommand.cc │ │ ├── InteractiveCommand.h │ │ ├── Logger.cc │ │ ├── Logger.h │ │ ├── Lookup3.cc │ │ ├── Lookup3.h │ │ ├── Math.cc │ │ ├── Math.h │ │ ├── Meta.h │ │ ├── MurmurHash.cc │ │ ├── MurmurHash.h │ │ ├── Mutex.h │ │ ├── NumberStream.h │ │ ├── Properties.cc │ │ ├── Properties.h │ │ ├── Random.cc │ │ ├── Random.h │ │ ├── ReferenceCount.h │ │ ├── Runnable.h │ │ ├── ScopeGuard.h │ │ ├── Serialization.h │ │ ├── ServerLauncher.h │ │ ├── SockAddrMap.h │ │ ├── StaticBuffer.h │ │ ├── StlHash.h │ │ ├── Stopwatch.h │ │ ├── String.cc │ │ ├── String.h │ │ ├── StringExt.h │ │ ├── SuperFastHash.cc │ │ ├── SuperFastHash.h │ │ ├── Sweetener.h │ │ ├── System.cc │ │ ├── System.h │ │ ├── SystemInfo.cc │ │ ├── SystemInfo.h │ │ ├── TclHash.h │ │ ├── TestHarness.h │ │ ├── Thread.h │ │ ├── Time.cc │ │ ├── Time.h │ │ ├── TimeInline.h │ │ ├── Timer.h │ │ ├── Usage.cc │ │ ├── Usage.h │ │ ├── Version.cc │ │ ├── Version.h.in │ │ ├── atomic.h │ │ ├── code_search_and_replace.cc │ │ ├── compat-c.h │ │ ├── endian-c.h │ │ ├── ht_checksum.cc │ │ ├── md5.cc │ │ ├── md5.h │ │ ├── serialization-c.h │ │ ├── system_info.cc │ │ └── tests │ │ │ ├── bloom_filter_test.cc │ │ │ ├── exception_test.cc │ │ │ ├── hash_test.cc │ │ │ ├── inetaddr_test.cc │ │ │ ├── logging_test.cc │ │ │ ├── mutex_test.cc │ │ │ ├── pagearena_test.cc │ │ │ ├── properties_test.cc │ │ │ ├── properties_test.golden │ │ │ ├── scope_guard_test.cc │ │ │ └── sertest.cc │ ├── DfsBroker │ │ ├── Lib │ │ │ ├── Broker.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Client.cc │ │ │ ├── Client.h │ │ │ ├── ClientBufferedReaderHandler.cc │ │ │ ├── ClientBufferedReaderHandler.h │ │ │ ├── Config.cc │ │ │ ├── Config.h │ │ │ ├── ConnectionHandler.cc │ │ │ ├── ConnectionHandler.h │ │ │ ├── ConnectionHandlerFactory.h │ │ │ ├── OpenFileMap.h │ │ │ ├── Protocol.cc │ │ │ ├── Protocol.h │ │ │ ├── RequestHandlerAppend.cc │ │ │ ├── RequestHandlerAppend.h │ │ │ ├── RequestHandlerClose.cc │ │ │ ├── RequestHandlerClose.h │ │ │ ├── RequestHandlerCreate.cc │ │ │ ├── RequestHandlerCreate.h │ │ │ ├── RequestHandlerDebug.cc │ │ │ ├── RequestHandlerDebug.h │ │ │ ├── RequestHandlerExists.cc │ │ │ ├── RequestHandlerExists.h │ │ │ ├── RequestHandlerFlush.cc │ │ │ ├── RequestHandlerFlush.h │ │ │ ├── RequestHandlerLength.cc │ │ │ ├── RequestHandlerLength.h │ │ │ ├── RequestHandlerMkdirs.cc │ │ │ ├── RequestHandlerMkdirs.h │ │ │ ├── RequestHandlerOpen.cc │ │ │ ├── RequestHandlerOpen.h │ │ │ ├── RequestHandlerPread.cc │ │ │ ├── RequestHandlerPread.h │ │ │ ├── RequestHandlerRead.cc │ │ │ ├── RequestHandlerRead.h │ │ │ ├── RequestHandlerReaddir.cc │ │ │ ├── RequestHandlerReaddir.h │ │ │ ├── RequestHandlerRemove.cc │ │ │ ├── RequestHandlerRemove.h │ │ │ ├── RequestHandlerRename.cc │ │ │ ├── RequestHandlerRename.h │ │ │ ├── RequestHandlerRmdir.cc │ │ │ ├── RequestHandlerRmdir.h │ │ │ ├── RequestHandlerSeek.cc │ │ │ ├── RequestHandlerSeek.h │ │ │ ├── RequestHandlerStatus.cc │ │ │ ├── RequestHandlerStatus.h │ │ │ ├── ResponseCallbackAppend.cc │ │ │ ├── ResponseCallbackAppend.h │ │ │ ├── ResponseCallbackExists.cc │ │ │ ├── ResponseCallbackExists.h │ │ │ ├── ResponseCallbackLength.cc │ │ │ ├── ResponseCallbackLength.h │ │ │ ├── ResponseCallbackOpen.cc │ │ │ ├── ResponseCallbackOpen.h │ │ │ ├── ResponseCallbackRead.cc │ │ │ ├── ResponseCallbackRead.h │ │ │ ├── ResponseCallbackReaddir.cc │ │ │ └── ResponseCallbackReaddir.h │ │ ├── ceph │ │ │ ├── CMakeLists.txt │ │ │ ├── CephBroker.cc │ │ │ ├── CephBroker.h │ │ │ └── main.cc │ │ ├── kosmos │ │ │ ├── CMakeLists.txt │ │ │ ├── KosmosBroker.cc │ │ │ ├── KosmosBroker.h │ │ │ └── main.cc │ │ └── local │ │ │ ├── CMakeLists.txt │ │ │ ├── LocalBroker.cc │ │ │ ├── LocalBroker.h │ │ │ └── main.cc │ ├── Hyperspace │ │ ├── BerkeleyDbFilesystem.cc │ │ ├── BerkeleyDbFilesystem.h │ │ ├── CMakeLists.txt │ │ ├── ClientConnectionHandler.cc │ │ ├── ClientConnectionHandler.h │ │ ├── ClientHandleState.h │ │ ├── ClientKeepaliveHandler.cc │ │ ├── ClientKeepaliveHandler.h │ │ ├── Config.cc │ │ ├── Config.h │ │ ├── DbtManaged.h │ │ ├── DirEntry.cc │ │ ├── DirEntry.h │ │ ├── Event.cc │ │ ├── Event.h │ │ ├── FileHandleCallback.h │ │ ├── HandleCallback.cc │ │ ├── HandleCallback.h │ │ ├── HandleData.h │ │ ├── HsClientState.cc │ │ ├── HsClientState.h │ │ ├── HsCommandInterpreter.cc │ │ ├── HsCommandInterpreter.h │ │ ├── HsHelpText.cc │ │ ├── HsHelpText.h │ │ ├── HsParser.h │ │ ├── LockSequencer.h │ │ ├── Master.cc │ │ ├── Master.h │ │ ├── NodeData.h │ │ ├── Notification.h │ │ ├── Protocol.cc │ │ ├── Protocol.h │ │ ├── RequestHandlerAttrDel.cc │ │ ├── RequestHandlerAttrDel.h │ │ ├── RequestHandlerAttrExists.cc │ │ ├── RequestHandlerAttrExists.h │ │ ├── RequestHandlerAttrGet.cc │ │ ├── RequestHandlerAttrGet.h │ │ ├── RequestHandlerAttrList.cc │ │ ├── RequestHandlerAttrList.h │ │ ├── RequestHandlerAttrSet.cc │ │ ├── RequestHandlerAttrSet.h │ │ ├── RequestHandlerClose.cc │ │ ├── RequestHandlerClose.h │ │ ├── RequestHandlerDelete.cc │ │ ├── RequestHandlerDelete.h │ │ ├── RequestHandlerExists.cc │ │ ├── RequestHandlerExists.h │ │ ├── RequestHandlerExpireSessions.cc │ │ ├── RequestHandlerExpireSessions.h │ │ ├── RequestHandlerLock.cc │ │ ├── RequestHandlerLock.h │ │ ├── RequestHandlerMkdir.cc │ │ ├── RequestHandlerMkdir.h │ │ ├── RequestHandlerOpen.cc │ │ ├── RequestHandlerOpen.h │ │ ├── RequestHandlerReaddir.cc │ │ ├── RequestHandlerReaddir.h │ │ ├── RequestHandlerRelease.cc │ │ ├── RequestHandlerRelease.h │ │ ├── RequestHandlerRenewSession.cc │ │ ├── RequestHandlerRenewSession.h │ │ ├── RequestHandlerStatus.cc │ │ ├── RequestHandlerStatus.h │ │ ├── ResponseCallbackAttrExists.cc │ │ ├── ResponseCallbackAttrExists.h │ │ ├── ResponseCallbackAttrGet.cc │ │ ├── ResponseCallbackAttrGet.h │ │ ├── ResponseCallbackAttrList.cc │ │ ├── ResponseCallbackAttrList.h │ │ ├── ResponseCallbackExists.cc │ │ ├── ResponseCallbackExists.h │ │ ├── ResponseCallbackLock.cc │ │ ├── ResponseCallbackLock.h │ │ ├── ResponseCallbackOpen.cc │ │ ├── ResponseCallbackOpen.h │ │ ├── ResponseCallbackReaddir.cc │ │ ├── ResponseCallbackReaddir.h │ │ ├── ServerConnectionHandler.cc │ │ ├── ServerConnectionHandler.h │ │ ├── ServerKeepaliveHandler.cc │ │ ├── ServerKeepaliveHandler.h │ │ ├── Session.cc │ │ ├── Session.h │ │ ├── SessionData.h │ │ ├── main.cc │ │ └── tests │ │ │ ├── bdb_fs_test.cc │ │ │ └── bdb_fs_test.golden │ ├── Hypertable │ │ ├── Lib │ │ │ ├── ApacheLogParser.cc │ │ │ ├── ApacheLogParser.h │ │ │ ├── BlockCompressionCodec.cc │ │ │ ├── BlockCompressionCodec.h │ │ │ ├── BlockCompressionCodecBmz.cc │ │ │ ├── BlockCompressionCodecBmz.h │ │ │ ├── BlockCompressionCodecLzo.cc │ │ │ ├── BlockCompressionCodecLzo.h │ │ │ ├── BlockCompressionCodecNone.cc │ │ │ ├── BlockCompressionCodecNone.h │ │ │ ├── BlockCompressionCodecQuicklz.cc │ │ │ ├── BlockCompressionCodecQuicklz.h │ │ │ ├── BlockCompressionCodecZlib.cc │ │ │ ├── BlockCompressionCodecZlib.h │ │ │ ├── BlockCompressionHeader.cc │ │ │ ├── BlockCompressionHeader.h │ │ │ ├── BlockCompressionHeaderCommitLog.cc │ │ │ ├── BlockCompressionHeaderCommitLog.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Cell.cc │ │ │ ├── Cell.h │ │ │ ├── Cells.h │ │ │ ├── Client.cc │ │ │ ├── Client.h │ │ │ ├── CommitLog.cc │ │ │ ├── CommitLog.h │ │ │ ├── CommitLogBase.h │ │ │ ├── CommitLogBlockStream.cc │ │ │ ├── CommitLogBlockStream.h │ │ │ ├── CommitLogReader.cc │ │ │ ├── CommitLogReader.h │ │ │ ├── CompressorFactory.cc │ │ │ ├── CompressorFactory.h │ │ │ ├── Config.cc │ │ │ ├── Config.h │ │ │ ├── DataGenerator.cc │ │ │ ├── DataGenerator.h │ │ │ ├── DataGeneratorColumn.h │ │ │ ├── DataGeneratorQualifier.h │ │ │ ├── DataGeneratorRowComponent.h │ │ │ ├── DataSource.h │ │ │ ├── Defaults.cc │ │ │ ├── Defaults.h │ │ │ ├── EventHandlerMasterChange.cc │ │ │ ├── EventHandlerMasterChange.h │ │ │ ├── Filesystem.cc │ │ │ ├── Filesystem.h │ │ │ ├── FixedRandomStringGenerator.cc │ │ │ ├── FixedRandomStringGenerator.h │ │ │ ├── HqlCommandInterpreter.cc │ │ │ ├── HqlCommandInterpreter.h │ │ │ ├── HqlHelpText.cc │ │ │ ├── HqlHelpText.h │ │ │ ├── HqlInterpreter.cc │ │ │ ├── HqlInterpreter.h │ │ │ ├── HqlParser.h │ │ │ ├── IntervalScanner.cc │ │ │ ├── IntervalScanner.h │ │ │ ├── Key.cc │ │ │ ├── Key.h │ │ │ ├── KeySpec.cc │ │ │ ├── KeySpec.h │ │ │ ├── LoadDataEscape.cc │ │ │ ├── LoadDataEscape.h │ │ │ ├── LoadDataSource.cc │ │ │ ├── LoadDataSource.h │ │ │ ├── LoadDataSourceFactory.cc │ │ │ ├── LoadDataSourceFactory.h │ │ │ ├── LoadDataSourceFileLocal.cc │ │ │ ├── LoadDataSourceFileLocal.h │ │ │ ├── LoadDataSourceStdin.cc │ │ │ ├── LoadDataSourceStdin.h │ │ │ ├── LocationCache.cc │ │ │ ├── LocationCache.h │ │ │ ├── MasterClient.cc │ │ │ ├── MasterClient.h │ │ │ ├── MasterFileHandler.cc │ │ │ ├── MasterFileHandler.h │ │ │ ├── MasterMetaLog.cc │ │ │ ├── MasterMetaLog.h │ │ │ ├── MasterMetaLogEntryFactory.cc │ │ │ ├── MasterMetaLogEntryFactory.h │ │ │ ├── MasterMetaLogReader.cc │ │ │ ├── MasterMetaLogReader.h │ │ │ ├── MasterProtocol.cc │ │ │ ├── MasterProtocol.h │ │ │ ├── MetaLog.cc │ │ │ ├── MetaLog.h │ │ │ ├── MetaLogDfsBase.cc │ │ │ ├── MetaLogDfsBase.h │ │ │ ├── MetaLogEntryBase.cc │ │ │ ├── MetaLogEntryBase.h │ │ │ ├── MetaLogReader.cc │ │ │ ├── MetaLogReader.h │ │ │ ├── MetaLogReaderDfsBase.cc │ │ │ ├── MetaLogReaderDfsBase.h │ │ │ ├── MetaLogVersion.cc │ │ │ ├── MetaLogVersion.h │ │ │ ├── RangeLocationInfo.h │ │ │ ├── RangeLocator.cc │ │ │ ├── RangeLocator.h │ │ │ ├── RangeServerClient.cc │ │ │ ├── RangeServerClient.h │ │ │ ├── RangeServerMetaLog.cc │ │ │ ├── RangeServerMetaLog.h │ │ │ ├── RangeServerMetaLogEntries.cc │ │ │ ├── RangeServerMetaLogEntries.h │ │ │ ├── RangeServerMetaLogEntryFactory.cc │ │ │ ├── RangeServerMetaLogEntryFactory.h │ │ │ ├── RangeServerMetaLogReader.cc │ │ │ ├── RangeServerMetaLogReader.h │ │ │ ├── RangeServerProtocol.cc │ │ │ ├── RangeServerProtocol.h │ │ │ ├── RangeState.cc │ │ │ ├── RangeState.h │ │ │ ├── RootFileHandler.cc │ │ │ ├── RootFileHandler.h │ │ │ ├── ScanBlock.cc │ │ │ ├── ScanBlock.h │ │ │ ├── ScanSpec.cc │ │ │ ├── ScanSpec.h │ │ │ ├── Schema.cc │ │ │ ├── Schema.h │ │ │ ├── SerializedKey.h │ │ │ ├── Stat.cc │ │ │ ├── Stat.h │ │ │ ├── Table.cc │ │ │ ├── Table.h │ │ │ ├── TableMutator.cc │ │ │ ├── TableMutator.h │ │ │ ├── TableMutatorCompletionCounter.h │ │ │ ├── TableMutatorDispatchHandler.cc │ │ │ ├── TableMutatorDispatchHandler.h │ │ │ ├── TableMutatorFlushHandler.cc │ │ │ ├── TableMutatorFlushHandler.h │ │ │ ├── TableMutatorIntervalHandler.cc │ │ │ ├── TableMutatorIntervalHandler.h │ │ │ ├── TableMutatorScatterBuffer.cc │ │ │ ├── TableMutatorScatterBuffer.h │ │ │ ├── TableMutatorSendBuffer.h │ │ │ ├── TableMutatorShared.cc │ │ │ ├── TableMutatorShared.h │ │ │ ├── TableMutatorSyncDispatchHandler.cc │ │ │ ├── TableMutatorSyncDispatchHandler.h │ │ │ ├── TableScanner.cc │ │ │ ├── TableScanner.h │ │ │ ├── TestData.h │ │ │ ├── TestSource.cc │ │ │ ├── TestSource.h │ │ │ ├── Timestamp.h │ │ │ ├── Types.cc │ │ │ ├── Types.h │ │ │ ├── bmz │ │ │ │ ├── bmz-internal.h │ │ │ │ ├── bmz-test.c │ │ │ │ ├── bmz.c │ │ │ │ ├── bmz.h │ │ │ │ ├── bmzip-optimize.sh │ │ │ │ ├── bmzip.c │ │ │ │ └── test-helper.h │ │ │ ├── generate_test_data.cc │ │ │ ├── lzo │ │ │ │ ├── lzoconf.h │ │ │ │ ├── lzodefs.h │ │ │ │ ├── minilzo.c │ │ │ │ └── minilzo.h │ │ │ ├── metadata-1.xml │ │ │ ├── metadata-2.xml │ │ │ ├── quicklz │ │ │ │ ├── quicklz.cc │ │ │ │ └── quicklz.h │ │ │ └── tests │ │ │ │ ├── DumpMetaLog.cc │ │ │ │ ├── MetaLogApiTest.cc │ │ │ │ ├── MetaLogMasterTest.cc │ │ │ │ ├── MetaLogRangeServerTest.cc │ │ │ │ ├── MutatorNoLogSyncTest.cc │ │ │ │ ├── MutatorNoLogSyncTest.cfg │ │ │ │ ├── bad-schema-1.xml │ │ │ │ ├── bad-schema-2.xml │ │ │ │ ├── bad-schema-3.xml │ │ │ │ ├── bad-schema-4.xml │ │ │ │ ├── bad-schema-5.xml │ │ │ │ ├── bad-schema-6.xml │ │ │ │ ├── bad-schema-7.xml │ │ │ │ ├── bad-schema-8.xml │ │ │ │ ├── bad-schema-9.xml │ │ │ │ ├── bmz-tests │ │ │ │ ├── bmz-tests.sh │ │ │ │ ├── bmzip-test.sh │ │ │ │ ├── t000.dump │ │ │ │ ├── t000.dump1 │ │ │ │ ├── t000.dump1121 │ │ │ │ ├── t000.dump16 │ │ │ │ ├── t000.dump512 │ │ │ │ ├── t000.sh │ │ │ │ ├── t000.txt │ │ │ │ ├── t001.bin │ │ │ │ ├── t001.sh │ │ │ │ ├── t002.dump2 │ │ │ │ ├── t002.dump40 │ │ │ │ ├── t002.dump60 │ │ │ │ ├── t002.sh │ │ │ │ └── t002.txt │ │ │ │ ├── commit_log_test.cc │ │ │ │ ├── compressor_test.cc │ │ │ │ ├── escape_test.cc │ │ │ │ ├── good-schema-1.xml │ │ │ │ ├── large_insert_test.cc │ │ │ │ ├── loadDataSourceTest-header.dat │ │ │ │ ├── loadDataSourceTest-header.golden │ │ │ │ ├── loadDataSourceTest-qualified-header.dat │ │ │ │ ├── loadDataSourceTest-qualified-header.golden │ │ │ │ ├── loadDataSourceTest.cc │ │ │ │ ├── loadDataSourceTest.dat │ │ │ │ ├── loadDataSourceTest.golden │ │ │ │ ├── locationCacheTest.cc │ │ │ │ ├── locationCacheTest.golden │ │ │ │ ├── periodic_flush_test.cc │ │ │ │ ├── rsmltest.golden │ │ │ │ ├── rsmltest2.golden │ │ │ │ ├── rsmltest3.golden │ │ │ │ ├── schemaTest.cc │ │ │ │ └── schemaTest.golden │ │ ├── Master │ │ │ ├── CMakeLists.txt │ │ │ ├── ConnectionHandler.cc │ │ │ ├── ConnectionHandler.h │ │ │ ├── DropTableDispatchHandler.cc │ │ │ ├── DropTableDispatchHandler.h │ │ │ ├── EventHandlerServerJoined.cc │ │ │ ├── EventHandlerServerJoined.h │ │ │ ├── EventHandlerServerLeft.cc │ │ │ ├── EventHandlerServerLeft.h │ │ │ ├── HyperspaceSessionHandler.h │ │ │ ├── Master.cc │ │ │ ├── Master.h │ │ │ ├── MasterGc.cc │ │ │ ├── MasterGc.h │ │ │ ├── RangeServerState.h │ │ │ ├── RequestHandlerAlterTable.cc │ │ │ ├── RequestHandlerAlterTable.h │ │ │ ├── RequestHandlerClose.cc │ │ │ ├── RequestHandlerClose.h │ │ │ ├── RequestHandlerCreateTable.cc │ │ │ ├── RequestHandlerCreateTable.h │ │ │ ├── RequestHandlerDropTable.cc │ │ │ ├── RequestHandlerDropTable.h │ │ │ ├── RequestHandlerGetSchema.cc │ │ │ ├── RequestHandlerGetSchema.h │ │ │ ├── RequestHandlerRegisterServer.cc │ │ │ ├── RequestHandlerRegisterServer.h │ │ │ ├── RequestHandlerReportSplit.cc │ │ │ ├── RequestHandlerReportSplit.h │ │ │ ├── RequestHandlerShutdown.cc │ │ │ ├── RequestHandlerShutdown.h │ │ │ ├── RequestHandlerStatus.cc │ │ │ ├── RequestHandlerStatus.h │ │ │ ├── ResponseCallbackGetSchema.cc │ │ │ ├── ResponseCallbackGetSchema.h │ │ │ ├── ServerLockFileHandler.cc │ │ │ ├── ServerLockFileHandler.h │ │ │ ├── ServersDirectoryHandler.cc │ │ │ ├── ServersDirectoryHandler.h │ │ │ ├── UpdateSchemaDispatchHandler.cc │ │ │ ├── UpdateSchemaDispatchHandler.h │ │ │ ├── htgc.cc │ │ │ └── main.cc │ │ └── RangeServer │ │ │ ├── AccessGroup.cc │ │ │ ├── AccessGroup.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CellCache.cc │ │ │ ├── CellCache.h │ │ │ ├── CellCachePool.cc │ │ │ ├── CellCachePool.h │ │ │ ├── CellCachePoolAllocator.h │ │ │ ├── CellCacheScanner.cc │ │ │ ├── CellCacheScanner.h │ │ │ ├── CellList.h │ │ │ ├── CellListScanner.h │ │ │ ├── CellStore.cc │ │ │ ├── CellStore.h │ │ │ ├── CellStoreBlockIndexMap.h │ │ │ ├── CellStoreFactory.cc │ │ │ ├── CellStoreFactory.h │ │ │ ├── CellStoreReleaseCallback.cc │ │ │ ├── CellStoreReleaseCallback.h │ │ │ ├── CellStoreScanner.cc │ │ │ ├── CellStoreScanner.h │ │ │ ├── CellStoreScannerInterval.h │ │ │ ├── CellStoreScannerIntervalBlockIndex.cc │ │ │ ├── CellStoreScannerIntervalBlockIndex.h │ │ │ ├── CellStoreScannerIntervalReadahead.cc │ │ │ ├── CellStoreScannerIntervalReadahead.h │ │ │ ├── CellStoreTrailer.h │ │ │ ├── CellStoreTrailerV0.cc │ │ │ ├── CellStoreTrailerV0.h │ │ │ ├── CellStoreTrailerV1.cc │ │ │ ├── CellStoreTrailerV1.h │ │ │ ├── CellStoreV0.cc │ │ │ ├── CellStoreV0.h │ │ │ ├── CellStoreV1.cc │ │ │ ├── CellStoreV1.h │ │ │ ├── Config.cc │ │ │ ├── Config.h │ │ │ ├── ConnectionHandler.cc │ │ │ ├── ConnectionHandler.h │ │ │ ├── EventHandlerMasterConnection.cc │ │ │ ├── EventHandlerMasterConnection.h │ │ │ ├── FileBlockCache.cc │ │ │ ├── FileBlockCache.h │ │ │ ├── FillScanBlock.cc │ │ │ ├── FillScanBlock.h │ │ │ ├── Global.cc │ │ │ ├── Global.h │ │ │ ├── HandlerFactory.h │ │ │ ├── HyperspaceSessionHandler.cc │ │ │ ├── HyperspaceSessionHandler.h │ │ │ ├── LiveFileTracker.cc │ │ │ ├── LiveFileTracker.h │ │ │ ├── MaintenancePrioritizer.h │ │ │ ├── MaintenancePrioritizerLogCleanup.cc │ │ │ ├── MaintenancePrioritizerLogCleanup.h │ │ │ ├── MaintenancePrioritizerLowMemory.cc │ │ │ ├── MaintenancePrioritizerLowMemory.h │ │ │ ├── MaintenanceQueue.cc │ │ │ ├── MaintenanceQueue.h │ │ │ ├── MaintenanceScheduler.cc │ │ │ ├── MaintenanceScheduler.h │ │ │ ├── MaintenanceTask.h │ │ │ ├── MaintenanceTaskCompaction.cc │ │ │ ├── MaintenanceTaskCompaction.h │ │ │ ├── MaintenanceTaskIndexPurge.cc │ │ │ ├── MaintenanceTaskIndexPurge.h │ │ │ ├── MaintenanceTaskSplit.cc │ │ │ ├── MaintenanceTaskSplit.h │ │ │ ├── MemoryTracker.h │ │ │ ├── MergeScanner.cc │ │ │ ├── MergeScanner.h │ │ │ ├── Metadata.h │ │ │ ├── MetadataNormal.cc │ │ │ ├── MetadataNormal.h │ │ │ ├── MetadataRoot.cc │ │ │ ├── MetadataRoot.h │ │ │ ├── Range.cc │ │ │ ├── Range.h │ │ │ ├── RangeMaintenanceGuard.h │ │ │ ├── RangeServer.cc │ │ │ ├── RangeServer.h │ │ │ ├── RangeSet.h │ │ │ ├── RangeStatsGatherer.cc │ │ │ ├── RangeStatsGatherer.h │ │ │ ├── RequestHandlerClose.cc │ │ │ ├── RequestHandlerClose.h │ │ │ ├── RequestHandlerCommitLogSync.cc │ │ │ ├── RequestHandlerCommitLogSync.h │ │ │ ├── RequestHandlerCompact.cc │ │ │ ├── RequestHandlerCompact.h │ │ │ ├── RequestHandlerCreateScanner.cc │ │ │ ├── RequestHandlerCreateScanner.h │ │ │ ├── RequestHandlerDestroyScanner.cc │ │ │ ├── RequestHandlerDestroyScanner.h │ │ │ ├── RequestHandlerDoMaintenance.cc │ │ │ ├── RequestHandlerDoMaintenance.h │ │ │ ├── RequestHandlerDropRange.cc │ │ │ ├── RequestHandlerDropRange.h │ │ │ ├── RequestHandlerDropTable.cc │ │ │ ├── RequestHandlerDropTable.h │ │ │ ├── RequestHandlerDump.cc │ │ │ ├── RequestHandlerDump.h │ │ │ ├── RequestHandlerFetchScanblock.cc │ │ │ ├── RequestHandlerFetchScanblock.h │ │ │ ├── RequestHandlerGetStatistics.cc │ │ │ ├── RequestHandlerGetStatistics.h │ │ │ ├── RequestHandlerLoadRange.cc │ │ │ ├── RequestHandlerLoadRange.h │ │ │ ├── RequestHandlerReplayBegin.cc │ │ │ ├── RequestHandlerReplayBegin.h │ │ │ ├── RequestHandlerReplayCommit.cc │ │ │ ├── RequestHandlerReplayCommit.h │ │ │ ├── RequestHandlerReplayLoadRange.cc │ │ │ ├── RequestHandlerReplayLoadRange.h │ │ │ ├── RequestHandlerReplayUpdate.cc │ │ │ ├── RequestHandlerReplayUpdate.h │ │ │ ├── RequestHandlerStatus.cc │ │ │ ├── RequestHandlerStatus.h │ │ │ ├── RequestHandlerUpdate.cc │ │ │ ├── RequestHandlerUpdate.h │ │ │ ├── RequestHandlerUpdateSchema.cc │ │ │ ├── RequestHandlerUpdateSchema.h │ │ │ ├── ResponseCallbackCreateScanner.cc │ │ │ ├── ResponseCallbackCreateScanner.h │ │ │ ├── ResponseCallbackFetchScanblock.cc │ │ │ ├── ResponseCallbackFetchScanblock.h │ │ │ ├── ResponseCallbackGetStatistics.cc │ │ │ ├── ResponseCallbackGetStatistics.h │ │ │ ├── ResponseCallbackUpdate.cc │ │ │ ├── ResponseCallbackUpdate.h │ │ │ ├── ScanContext.cc │ │ │ ├── ScanContext.h │ │ │ ├── ScannerMap.cc │ │ │ ├── ScannerMap.h │ │ │ ├── SplitPredicate.h │ │ │ ├── TableIdCache.cc │ │ │ ├── TableIdCache.h │ │ │ ├── TableInfo.cc │ │ │ ├── TableInfo.h │ │ │ ├── TableInfoMap.cc │ │ │ ├── TableInfoMap.h │ │ │ ├── TimerHandler.cc │ │ │ ├── TimerHandler.h │ │ │ ├── TimerInterface.h │ │ │ ├── count_stored.cc │ │ │ ├── csdump.cc │ │ │ ├── main.cc │ │ │ └── tests │ │ │ ├── CellStore64_test.cc │ │ │ ├── CellStore64_test.golden │ │ │ ├── CellStoreScanner_delete_test.cc │ │ │ ├── CellStoreScanner_delete_test.golden │ │ │ ├── CellStoreScanner_test.cc │ │ │ ├── CellStoreScanner_test.golden │ │ │ ├── FileBlockCache_test.cc │ │ │ └── TableIdCache_test.cc │ ├── ThriftBroker │ │ ├── CMakeLists.txt │ │ ├── Client.h │ │ ├── Client.thrift │ │ ├── Config.cc │ │ ├── Config.h │ │ ├── Hql.thrift │ │ ├── ThriftBroker.cc │ │ ├── ThriftHelper.cc │ │ ├── ThriftHelper.h │ │ ├── gen-cpp │ │ │ ├── ClientService.cpp │ │ │ ├── ClientService.h │ │ │ ├── ClientService_server.skeleton.cpp │ │ │ ├── Client_constants.cpp │ │ │ ├── Client_constants.h │ │ │ ├── Client_types.cpp │ │ │ ├── Client_types.h │ │ │ ├── HqlService.cpp │ │ │ ├── HqlService.h │ │ │ ├── HqlService_server.skeleton.cpp │ │ │ ├── Hql_constants.cpp │ │ │ ├── Hql_constants.h │ │ │ ├── Hql_types.cpp │ │ │ └── Hql_types.h │ │ └── tests │ │ │ └── client_test.cc │ ├── Tools │ │ ├── CMakeLists.txt │ │ ├── Lib │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandInterpreter.cc │ │ │ ├── CommandInterpreter.h │ │ │ ├── CommandShell.cc │ │ │ ├── CommandShell.h │ │ │ └── Notifier.h │ │ ├── dfsclient │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandCopyFromLocal.cc │ │ │ ├── CommandCopyFromLocal.h │ │ │ ├── CommandCopyToLocal.cc │ │ │ ├── CommandCopyToLocal.h │ │ │ ├── CommandExists.cc │ │ │ ├── CommandExists.h │ │ │ ├── CommandLength.cc │ │ │ ├── CommandLength.h │ │ │ ├── CommandMkdirs.cc │ │ │ ├── CommandMkdirs.h │ │ │ ├── CommandRemove.cc │ │ │ ├── CommandRemove.h │ │ │ ├── CommandRmdir.cc │ │ │ ├── CommandRmdir.h │ │ │ ├── CommandShutdown.cc │ │ │ ├── CommandShutdown.h │ │ │ ├── dfsTest.cc │ │ │ ├── dfsTest.golden │ │ │ ├── dfsTestThreadFunction.cc │ │ │ ├── dfsTestThreadFunction.h │ │ │ └── dfsclient.cc │ │ ├── dumplog │ │ │ ├── CMakeLists.txt │ │ │ └── dumplog.cc │ │ ├── hyperspace │ │ │ ├── CMakeLists.txt │ │ │ ├── hyperspace.cc │ │ │ └── test │ │ │ │ ├── client1.golden │ │ │ │ ├── client2.golden │ │ │ │ ├── client3.golden │ │ │ │ ├── hyperspaceTest.cc │ │ │ │ └── hyperspaceTest.cfg │ │ ├── hypertable │ │ │ ├── CMakeLists.txt │ │ │ ├── hypertable.cc │ │ │ └── test │ │ │ │ ├── hypertable_ldi_stdin_test.cc │ │ │ │ ├── hypertable_ldi_stdin_test.golden │ │ │ │ ├── hypertable_ldi_stdin_test_load.hql │ │ │ │ ├── hypertable_ldi_stdin_test_select.hql │ │ │ │ ├── hypertable_select_gz_test.golden │ │ │ │ ├── hypertable_test.cc │ │ │ │ ├── hypertable_test.golden │ │ │ │ ├── hypertable_test.hql │ │ │ │ └── hypertable_test.tsv │ │ ├── load_generator │ │ │ ├── CMakeLists.txt │ │ │ └── ht_load_generator.cc │ │ ├── merge_diff │ │ │ ├── CMakeLists.txt │ │ │ └── merge_diff.cc │ │ ├── rsclient │ │ │ ├── CMakeLists.txt │ │ │ ├── RangeServerCommandInterpreter.cc │ │ │ ├── RangeServerCommandInterpreter.h │ │ │ ├── TableInfo.cc │ │ │ ├── TableInfo.h │ │ │ ├── ht_rsclient.cc │ │ │ └── tests │ │ │ │ ├── Test1-data.txt.gz │ │ │ │ ├── Test1.cmd │ │ │ │ ├── Test1.golden │ │ │ │ ├── Test2-data.txt.gz │ │ │ │ ├── Test2.cmd │ │ │ │ ├── Test2.golden │ │ │ │ ├── Test3.cmd │ │ │ │ ├── Test3.golden │ │ │ │ ├── Test4-data.txt.gz │ │ │ │ ├── Test4.cmd │ │ │ │ ├── Test4.golden │ │ │ │ ├── initialize.hql │ │ │ │ └── rsTest.cc │ │ ├── rsstat │ │ │ ├── CMakeLists.txt │ │ │ └── rsstat.cc │ │ └── serverup │ │ │ ├── CMakeLists.txt │ │ │ └── serverup.cc │ └── boost-1_34-fix │ │ └── boost │ │ └── function │ │ ├── function_base.hpp │ │ └── function_template.hpp ├── gen-java │ └── org │ │ └── hypertable │ │ └── thriftgen │ │ ├── Cell.java │ │ ├── CellFlag.java │ │ ├── CellInterval.java │ │ ├── ClientException.java │ │ ├── ClientService.java │ │ ├── HqlResult.java │ │ ├── HqlResult2.java │ │ ├── HqlService.java │ │ ├── MutatorFlag.java │ │ ├── RowInterval.java │ │ └── ScanSpec.java ├── java │ ├── Core │ │ └── org │ │ │ └── hypertable │ │ │ ├── AsyncComm │ │ │ ├── ApplicationHandler.java │ │ │ ├── ApplicationQueue.java │ │ │ ├── Comm.java │ │ │ ├── CommBuf.java │ │ │ ├── CommHeader.java │ │ │ ├── CommTest.java │ │ │ ├── CommTestThreadFunction.java │ │ │ ├── ConnectionHandlerFactory.java │ │ │ ├── ConnectionManager.java │ │ │ ├── ConnectionMap.java │ │ │ ├── DispatchHandler.java │ │ │ ├── DispatchHandlerSynchronizer.java │ │ │ ├── Event.java │ │ │ ├── IOHandler.java │ │ │ ├── IOHandlerAccept.java │ │ │ ├── IOHandlerData.java │ │ │ ├── Protocol.java │ │ │ ├── Reactor.java │ │ │ ├── ReactorFactory.java │ │ │ ├── RequestCache.java │ │ │ ├── ResponseCallback.java │ │ │ ├── SampleClient.java │ │ │ ├── SampleServer.java │ │ │ ├── Serialization.java │ │ │ └── TODO.txt │ │ │ ├── Common │ │ │ ├── Checksum.java │ │ │ ├── ChecksumTest.java │ │ │ ├── Error.java │ │ │ ├── FileUtils.java │ │ │ ├── HypertableException.java │ │ │ ├── System.java │ │ │ └── Usage.java │ │ │ └── DfsBroker │ │ │ └── hadoop │ │ │ ├── ConnectionHandler.java │ │ │ ├── FILES.txt │ │ │ ├── HdfsBroker.java │ │ │ ├── OpenFileData.java │ │ │ ├── OpenFileMap.java │ │ │ ├── Protocol.java │ │ │ ├── RequestHandlerClose.java │ │ │ ├── RequestHandlerCreate.java │ │ │ ├── RequestHandlerDebug.java │ │ │ ├── RequestHandlerExists.java │ │ │ ├── RequestHandlerFlush.java │ │ │ ├── RequestHandlerLength.java │ │ │ ├── RequestHandlerMkdirs.java │ │ │ ├── RequestHandlerOpen.java │ │ │ ├── RequestHandlerPositionRead.java │ │ │ ├── RequestHandlerRead.java │ │ │ ├── RequestHandlerReaddir.java │ │ │ ├── RequestHandlerRemove.java │ │ │ ├── RequestHandlerRename.java │ │ │ ├── RequestHandlerRmdir.java │ │ │ ├── RequestHandlerSeek.java │ │ │ ├── RequestHandlerShutdown.java │ │ │ ├── RequestHandlerStatus.java │ │ │ ├── RequestHandlerWrite.java │ │ │ ├── ResponseCallbackCreate.java │ │ │ ├── ResponseCallbackExists.java │ │ │ ├── ResponseCallbackLength.java │ │ │ ├── ResponseCallbackOpen.java │ │ │ ├── ResponseCallbackPositionRead.java │ │ │ ├── ResponseCallbackRead.java │ │ │ ├── ResponseCallbackReaddir.java │ │ │ ├── ResponseCallbackWrite.java │ │ │ └── main.java │ └── ThriftClient │ │ ├── CMakeLists.txt │ │ └── org │ │ └── hypertable │ │ └── thrift │ │ ├── BasicClientTest.java │ │ └── ThriftClient.java ├── perl │ └── ThriftClient │ │ ├── CMakeLists.txt │ │ ├── Hypertable │ │ └── ThriftClient.pm │ │ ├── client_test.pl │ │ └── gen-perl │ │ └── Hypertable │ │ ├── ThriftGen │ │ ├── ClientService.pm │ │ ├── Constants.pm │ │ └── Types.pm │ │ └── ThriftGen2 │ │ ├── Constants.pm │ │ ├── HqlService.pm │ │ └── Types.pm ├── php │ └── ThriftClient │ │ ├── CMakeLists.txt │ │ ├── ThriftClient.php │ │ ├── client_test.php │ │ └── gen-php │ │ ├── ClientService.php │ │ ├── Client_types.php │ │ ├── HqlService.php │ │ └── Hql_types.php ├── py │ └── ThriftClient │ │ ├── CMakeLists.txt │ │ ├── client_test.py │ │ ├── gen-py │ │ ├── __init__.py │ │ └── hyperthrift │ │ │ ├── __init__.py │ │ │ ├── gen │ │ │ ├── ClientService-remote │ │ │ ├── ClientService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ │ └── gen2 │ │ │ ├── HqlService-remote │ │ │ ├── HqlService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── hypertable │ │ ├── __init__.py │ │ └── thriftclient.py └── rb │ └── ThriftClient │ ├── CMakeLists.txt │ ├── client_test.rb │ └── hypertable │ ├── gen-rb │ ├── client_constants.rb │ ├── client_service.rb │ ├── client_types.rb │ ├── hql_constants.rb │ ├── hql_service.rb │ └── hql_types.rb │ └── thrift_client.rb └── tests ├── data ├── random.dat └── words.gz └── integration ├── CMakeLists.txt ├── aol-basic ├── Capfile ├── count.golden ├── dump-query-log.hql ├── load.hql ├── query-log-create.hql ├── run.sh └── test-aol-basic.cfg ├── aol-metadata-split ├── Capfile ├── count.golden ├── dump-query-log.hql ├── load.hql ├── query-log-create.hql ├── run.sh └── test-aol-metadata-split.cfg ├── aol-time-order ├── Capfile ├── NOTES.txt ├── count.golden ├── dump-query-log.hql ├── load.hql ├── query-log-create.hql ├── run.sh └── test-aol-time-order.cfg ├── bloomfilter ├── CMakeLists.txt ├── create-bloom-rows-cols-table.hql ├── create-bloom-rows-table.hql └── run.sh ├── cellstore-index-purge ├── create-table.hql ├── data.spec └── run.sh ├── commit-log-gc ├── CMakeLists.txt ├── create-table.hql └── run.sh ├── load-exception-after-split ├── CMakeLists.txt ├── create-table.hql └── run.sh ├── metadata-split ├── CMakeLists.txt ├── create-table.hql ├── data.spec └── run.sh ├── multiple-maintenance-threads ├── CMakeLists.txt ├── create-table.hql ├── dump-loop.sh ├── dump-table.hql └── run.sh ├── mutator-no-log-sync ├── CMakeLists.txt └── run.sh ├── random ├── CMakeLists.txt ├── create-table-memory.hql ├── create-table.hql └── run.sh ├── row-overflow ├── CMakeLists.txt ├── create-table.hql └── run.sh ├── rowkey-ag-imbalance ├── CMakeLists.txt ├── bar.spec ├── create-table.hql ├── foo.spec └── run.sh ├── rsml-prune ├── data.spec ├── rsml-dir-listing.golden └── run.sh ├── scan-concurrency ├── CMakeLists.txt ├── create-table.hql ├── dump-loop.sh ├── dump-table.hql └── run.sh ├── scan-limit ├── CMakeLists.txt ├── ScanLimit_test.cfg ├── ScanLimit_test.golden ├── ScanLimit_test.hql └── run-scan-limit-test.sh ├── sequential-load-count ├── Capfile ├── count.golden ├── create-table.hql ├── data-gen.cfg ├── dump-table.hql ├── run.sh ├── shutdown.hql └── test-sequential-load-count.cfg ├── sequential-load ├── CMakeLists.txt ├── create-table.hql ├── dump-table.hql ├── keys.golden └── run.sh ├── split-merge-loop10 ├── CMakeLists.txt └── run.sh └── split-recovery ├── CMakeLists.txt ├── create-test-table.hql ├── dump-test-table.hql ├── load.hql ├── rangeserver-launcher.sh ├── run-n.sh └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/README.md -------------------------------------------------------------------------------- /bin/clean-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/clean-database.sh -------------------------------------------------------------------------------- /bin/fhsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/fhsize.sh -------------------------------------------------------------------------------- /bin/ht-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/ht-env.sh -------------------------------------------------------------------------------- /bin/ht.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/ht.in -------------------------------------------------------------------------------- /bin/htbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/htbt.sh -------------------------------------------------------------------------------- /bin/jrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/jrun -------------------------------------------------------------------------------- /bin/ldd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/ldd.sh -------------------------------------------------------------------------------- /bin/postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/postinst.in -------------------------------------------------------------------------------- /bin/prerm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/prerm.in -------------------------------------------------------------------------------- /bin/prerm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/prerm.sh -------------------------------------------------------------------------------- /bin/random-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/random-wait.sh -------------------------------------------------------------------------------- /bin/soname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/soname.sh -------------------------------------------------------------------------------- /bin/src-utils/ccp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/ccp -------------------------------------------------------------------------------- /bin/src-utils/fnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/fnr -------------------------------------------------------------------------------- /bin/src-utils/gpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/gpp -------------------------------------------------------------------------------- /bin/src-utils/htbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/htbuild -------------------------------------------------------------------------------- /bin/src-utils/htpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/htpkg -------------------------------------------------------------------------------- /bin/src-utils/srcgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/srcgrep -------------------------------------------------------------------------------- /bin/src-utils/testdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/testdiff -------------------------------------------------------------------------------- /bin/src-utils/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/src-utils/ver -------------------------------------------------------------------------------- /bin/start-all-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-all-servers.sh -------------------------------------------------------------------------------- /bin/start-dfsbroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-dfsbroker.sh -------------------------------------------------------------------------------- /bin/start-hyperspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-hyperspace.sh -------------------------------------------------------------------------------- /bin/start-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-master.sh -------------------------------------------------------------------------------- /bin/start-rangeserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-rangeserver.sh -------------------------------------------------------------------------------- /bin/start-test-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-test-servers.sh -------------------------------------------------------------------------------- /bin/start-thriftbroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/start-thriftbroker.sh -------------------------------------------------------------------------------- /bin/stop-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/bin/stop-servers.sh -------------------------------------------------------------------------------- /cmake/CheckBdb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/CheckBdb.cc -------------------------------------------------------------------------------- /cmake/CheckBoost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/CheckBoost.cc -------------------------------------------------------------------------------- /cmake/CheckTcmalloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/CheckTcmalloc.cc -------------------------------------------------------------------------------- /cmake/CommonUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/CommonUtil.cmake -------------------------------------------------------------------------------- /cmake/DocHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/DocHelper.cmake -------------------------------------------------------------------------------- /cmake/FindAnt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindAnt.cmake -------------------------------------------------------------------------------- /cmake/FindBerkeleyDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindBerkeleyDB.cmake -------------------------------------------------------------------------------- /cmake/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindBoost.cmake -------------------------------------------------------------------------------- /cmake/FindCeph.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindCeph.cmake -------------------------------------------------------------------------------- /cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindGoogleHash.cmake -------------------------------------------------------------------------------- /cmake/FindKfs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindKfs.cmake -------------------------------------------------------------------------------- /cmake/FindLibEvent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindLibEvent.cmake -------------------------------------------------------------------------------- /cmake/FindLog4cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindLog4cpp.cmake -------------------------------------------------------------------------------- /cmake/FindPHP5Thrift.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindPHP5Thrift.cmake -------------------------------------------------------------------------------- /cmake/FindPerlThrift.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindPerlThrift.cmake -------------------------------------------------------------------------------- /cmake/FindPythonThrift.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindPythonThrift.cmake -------------------------------------------------------------------------------- /cmake/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindReadline.cmake -------------------------------------------------------------------------------- /cmake/FindRubyThrift.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindRubyThrift.cmake -------------------------------------------------------------------------------- /cmake/FindSIGAR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindSIGAR.cmake -------------------------------------------------------------------------------- /cmake/FindTcmalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindTcmalloc.cmake -------------------------------------------------------------------------------- /cmake/FindThrift.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/FindThrift.cmake -------------------------------------------------------------------------------- /cmake/HadoopHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/HadoopHelper.cmake -------------------------------------------------------------------------------- /cmake/JavaHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/JavaHelper.cmake -------------------------------------------------------------------------------- /cmake/PackageHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/PackageHelper.cmake -------------------------------------------------------------------------------- /cmake/TestHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/TestHelper.cmake -------------------------------------------------------------------------------- /cmake/VersionHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/cmake/VersionHelper.cmake -------------------------------------------------------------------------------- /conf/Capfile.cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/conf/Capfile.cluster -------------------------------------------------------------------------------- /conf/Capfile.localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/conf/Capfile.localhost -------------------------------------------------------------------------------- /conf/METADATA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/conf/METADATA.xml -------------------------------------------------------------------------------- /conf/hypertable.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/conf/hypertable.cfg -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/cc/MapReduce/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableInputFormat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableInputFormat.cc -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableInputFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableInputFormat.h -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableRangeMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableRangeMap.cc -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableRangeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableRangeMap.h -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableReader.cc -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableReader.h -------------------------------------------------------------------------------- /contrib/cc/MapReduce/TableWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/TableWriter.h -------------------------------------------------------------------------------- /contrib/cc/MapReduce/test/mapredconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/test/mapredconf.xml -------------------------------------------------------------------------------- /contrib/cc/MapReduce/test/mapredjob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/test/mapredjob.cc -------------------------------------------------------------------------------- /contrib/cc/MapReduce/test/rangeMapTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/MapReduce/test/rangeMapTest.cc -------------------------------------------------------------------------------- /contrib/cc/PythonBinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/PythonBinding/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/cc/PythonBinding/HypertableBindings.cc: -------------------------------------------------------------------------------- 1 | #include "HypertableBindings.h" 2 | 3 | -------------------------------------------------------------------------------- /contrib/cc/PythonBinding/HypertableBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/PythonBinding/HypertableBindings.h -------------------------------------------------------------------------------- /contrib/cc/PythonBinding/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/contrib/cc/PythonBinding/test.py -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/PACKAGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/PACKAGE.txt -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/bin/Markdown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/bin/Markdown.pl -------------------------------------------------------------------------------- /doc/bin/make-doc-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/bin/make-doc-tree.sh -------------------------------------------------------------------------------- /doc/markdown/hql/alter-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/alter-table.md -------------------------------------------------------------------------------- /doc/markdown/hql/create-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/create-table.md -------------------------------------------------------------------------------- /doc/markdown/hql/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/delete.md -------------------------------------------------------------------------------- /doc/markdown/hql/describe-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/describe-table.md -------------------------------------------------------------------------------- /doc/markdown/hql/drop-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/drop-table.md -------------------------------------------------------------------------------- /doc/markdown/hql/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/index.md -------------------------------------------------------------------------------- /doc/markdown/hql/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/insert.md -------------------------------------------------------------------------------- /doc/markdown/hql/load-data-infile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/load-data-infile.md -------------------------------------------------------------------------------- /doc/markdown/hql/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/select.md -------------------------------------------------------------------------------- /doc/markdown/hql/show-create-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/show-create-table.md -------------------------------------------------------------------------------- /doc/markdown/hql/show-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/show-tables.md -------------------------------------------------------------------------------- /doc/markdown/hql/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/shutdown.md -------------------------------------------------------------------------------- /doc/markdown/hql/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/hql/template.html -------------------------------------------------------------------------------- /doc/markdown/images/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-body.jpg -------------------------------------------------------------------------------- /doc/markdown/images/bg-btn-browse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-btn-browse.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-btn-clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-btn-clear.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-btn-download-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-btn-download-page.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-btn-submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-btn-submit.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-btnbig-download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-btnbig-download.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-contents-bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-contents-bottom.jpg -------------------------------------------------------------------------------- /doc/markdown/images/bg-contents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-contents.jpg -------------------------------------------------------------------------------- /doc/markdown/images/bg-footer-container.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-footer-container.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-footer.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-header.gif -------------------------------------------------------------------------------- /doc/markdown/images/bg-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-header.jpg -------------------------------------------------------------------------------- /doc/markdown/images/bg-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/bg-logo.gif -------------------------------------------------------------------------------- /doc/markdown/images/btn-download-beta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/btn-download-beta.gif -------------------------------------------------------------------------------- /doc/markdown/images/btn-more-hypertable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/btn-more-hypertable.gif -------------------------------------------------------------------------------- /doc/markdown/images/gra-cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/gra-cube.gif -------------------------------------------------------------------------------- /doc/markdown/images/gra-end-of-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/gra-end-of-page.gif -------------------------------------------------------------------------------- /doc/markdown/images/gra-offsite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/gra-offsite.gif -------------------------------------------------------------------------------- /doc/markdown/images/gra-tesseract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/gra-tesseract.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-baidu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-baidu.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-hypertable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-hypertable.jpg -------------------------------------------------------------------------------- /doc/markdown/images/lgo-rediff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-rediff.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-sponsors-baidu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-sponsors-baidu.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-sponsors-rediff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-sponsors-rediff.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-sponsors-zvents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-sponsors-zvents.gif -------------------------------------------------------------------------------- /doc/markdown/images/lgo-zvents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/lgo-zvents.gif -------------------------------------------------------------------------------- /doc/markdown/images/tesseract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/images/tesseract.jpg -------------------------------------------------------------------------------- /doc/markdown/inc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/inc/styles.css -------------------------------------------------------------------------------- /doc/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/index.md -------------------------------------------------------------------------------- /doc/markdown/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/doc/markdown/template.html -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/apache_log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/CMakeLists.txt -------------------------------------------------------------------------------- /examples/apache_log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/Makefile -------------------------------------------------------------------------------- /examples/apache_log/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/README.txt -------------------------------------------------------------------------------- /examples/apache_log/access.log.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/access.log.gz -------------------------------------------------------------------------------- /examples/apache_log/apache_log_load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/apache_log_load.cc -------------------------------------------------------------------------------- /examples/apache_log/apache_log_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/apache_log_query.cc -------------------------------------------------------------------------------- /examples/apache_log/create-table.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/apache_log/create-table.hql -------------------------------------------------------------------------------- /examples/freebase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/CMakeLists.txt -------------------------------------------------------------------------------- /examples/freebase/aircraft_model.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/aircraft_model.tsv.gz -------------------------------------------------------------------------------- /examples/freebase/create-table-freebase.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/create-table-freebase.hql -------------------------------------------------------------------------------- /examples/freebase/freebase_load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/freebase_load.cc -------------------------------------------------------------------------------- /examples/freebase/freebase_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/freebase_parser.cc -------------------------------------------------------------------------------- /examples/freebase/freebase_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/freebase/freebase_parser.h -------------------------------------------------------------------------------- /examples/generate_data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/generate_data/README -------------------------------------------------------------------------------- /examples/generate_data/example-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/generate_data/example-1.cfg -------------------------------------------------------------------------------- /examples/generate_data/example-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/generate_data/example-2.cfg -------------------------------------------------------------------------------- /examples/hql_tutorial/Pages-create.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/examples/hql_tutorial/Pages-create.hql -------------------------------------------------------------------------------- /lib/commons-logging-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/commons-logging-1.0.4.jar -------------------------------------------------------------------------------- /lib/hadoop-0.20.1-core.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/hadoop-0.20.1-core.LICENSE.txt -------------------------------------------------------------------------------- /lib/hadoop-0.20.1-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/hadoop-0.20.1-core.jar -------------------------------------------------------------------------------- /lib/hypertable-0.9.2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/hypertable-0.9.2.7.jar -------------------------------------------------------------------------------- /lib/junit-4.3.1.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/junit-4.3.1.LICENSE.txt -------------------------------------------------------------------------------- /lib/junit-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/junit-4.3.1.jar -------------------------------------------------------------------------------- /lib/libthrift.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/libthrift.jar -------------------------------------------------------------------------------- /lib/log4j-1.2.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/lib/log4j-1.2.13.jar -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/AsyncComm/ApplicationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ApplicationHandler.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ApplicationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ApplicationQueue.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/AsyncComm/Comm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Comm.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/Comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Comm.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/CommBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/CommBuf.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/CommHeader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/CommHeader.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/CommHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/CommHeader.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Config.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Config.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ConnectionHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ConnectionHandlerFactory.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ConnectionManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ConnectionManager.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/ConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ConnectionManager.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/DispatchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/DispatchHandler.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/DispatchHandlerSynchronizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/DispatchHandlerSynchronizer.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/DispatchHandlerSynchronizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/DispatchHandlerSynchronizer.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/Event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Event.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Event.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ExpireTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ExpireTimer.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/HandlerMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/HandlerMap.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandler.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandler.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerAccept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerAccept.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerAccept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerAccept.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerData.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerData.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerDatagram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerDatagram.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/IOHandlerDatagram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/IOHandlerDatagram.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/PollTimeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/PollTimeout.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/Protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Protocol.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Protocol.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/Reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Reactor.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/Reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/Reactor.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ReactorFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ReactorFactory.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/ReactorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ReactorFactory.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ReactorRunner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ReactorRunner.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/ReactorRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ReactorRunner.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/RequestCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/RequestCache.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/RequestCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/RequestCache.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/ResponseCallback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ResponseCallback.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/ResponseCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/ResponseCallback.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/sampleClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/sampleClient.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/testServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/testServer.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/CommTestThreadFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/CommTestThreadFunction.h -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTest.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTestDatagram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTestDatagram.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTestTimeout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTestTimeout.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTestTimeout.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTestTimeout.golden -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTestTimer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTestTimer.cc -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/commTestTimer.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/commTestTimer.golden -------------------------------------------------------------------------------- /src/cc/AsyncComm/tests/datafile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/AsyncComm/tests/datafile.txt -------------------------------------------------------------------------------- /src/cc/Benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Benchmark/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/random/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Benchmark/random/random-test-create-table.hql: -------------------------------------------------------------------------------- 1 | create table COMPRESSOR="none" RandomTest ( 2 | Field 3 | ); 4 | -------------------------------------------------------------------------------- /src/cc/Benchmark/random/random_read_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/random/random_read_test.cc -------------------------------------------------------------------------------- /src/cc/Benchmark/random/random_write_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/random/random_write_test.cc -------------------------------------------------------------------------------- /src/cc/Benchmark/write/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/write/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Benchmark/write/ht_write_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Benchmark/write/ht_write_test.cc -------------------------------------------------------------------------------- /src/cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Common/Abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Abi.cc -------------------------------------------------------------------------------- /src/cc/Common/Abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Abi.h -------------------------------------------------------------------------------- /src/cc/Common/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Barrier.h -------------------------------------------------------------------------------- /src/cc/Common/BlobHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/BlobHashSet.h -------------------------------------------------------------------------------- /src/cc/Common/BlobHashTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/BlobHashTraits.h -------------------------------------------------------------------------------- /src/cc/Common/BloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/BloomFilter.h -------------------------------------------------------------------------------- /src/cc/Common/ByteString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/ByteString.h -------------------------------------------------------------------------------- /src/cc/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Common/CharArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/CharArena.h -------------------------------------------------------------------------------- /src/cc/Common/Checksum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Checksum.cc -------------------------------------------------------------------------------- /src/cc/Common/Checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Checksum.h -------------------------------------------------------------------------------- /src/cc/Common/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Compat.h -------------------------------------------------------------------------------- /src/cc/Common/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Config.cc -------------------------------------------------------------------------------- /src/cc/Common/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Config.h -------------------------------------------------------------------------------- /src/cc/Common/CstrHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/CstrHashMap.h -------------------------------------------------------------------------------- /src/cc/Common/CstrHashTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/CstrHashTraits.h -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGenerator.cc -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGenerator.h -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGeneratorFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGeneratorFactory.cc -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGeneratorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGeneratorFactory.h -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGeneratorUniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGeneratorUniform.h -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGeneratorZipf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGeneratorZipf.cc -------------------------------------------------------------------------------- /src/cc/Common/DiscreteRandomGeneratorZipf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DiscreteRandomGeneratorZipf.h -------------------------------------------------------------------------------- /src/cc/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /src/cc/Common/Error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Error.cc -------------------------------------------------------------------------------- /src/cc/Common/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Error.h -------------------------------------------------------------------------------- /src/cc/Common/FailureInducer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FailureInducer.cc -------------------------------------------------------------------------------- /src/cc/Common/FailureInducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FailureInducer.h -------------------------------------------------------------------------------- /src/cc/Common/FileUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FileUtils.cc -------------------------------------------------------------------------------- /src/cc/Common/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FileUtils.h -------------------------------------------------------------------------------- /src/cc/Common/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Filesystem.h -------------------------------------------------------------------------------- /src/cc/Common/FixedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FixedStream.h -------------------------------------------------------------------------------- /src/cc/Common/FlyweightString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/FlyweightString.h -------------------------------------------------------------------------------- /src/cc/Common/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/HashMap.h -------------------------------------------------------------------------------- /src/cc/Common/InetAddr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/InetAddr.cc -------------------------------------------------------------------------------- /src/cc/Common/InetAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/InetAddr.h -------------------------------------------------------------------------------- /src/cc/Common/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Init.h -------------------------------------------------------------------------------- /src/cc/Common/InteractiveCommand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/InteractiveCommand.cc -------------------------------------------------------------------------------- /src/cc/Common/InteractiveCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/InteractiveCommand.h -------------------------------------------------------------------------------- /src/cc/Common/Logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Logger.cc -------------------------------------------------------------------------------- /src/cc/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Logger.h -------------------------------------------------------------------------------- /src/cc/Common/Lookup3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Lookup3.cc -------------------------------------------------------------------------------- /src/cc/Common/Lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Lookup3.h -------------------------------------------------------------------------------- /src/cc/Common/Math.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Math.cc -------------------------------------------------------------------------------- /src/cc/Common/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Math.h -------------------------------------------------------------------------------- /src/cc/Common/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Meta.h -------------------------------------------------------------------------------- /src/cc/Common/MurmurHash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/MurmurHash.cc -------------------------------------------------------------------------------- /src/cc/Common/MurmurHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/MurmurHash.h -------------------------------------------------------------------------------- /src/cc/Common/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Mutex.h -------------------------------------------------------------------------------- /src/cc/Common/NumberStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/NumberStream.h -------------------------------------------------------------------------------- /src/cc/Common/Properties.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Properties.cc -------------------------------------------------------------------------------- /src/cc/Common/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Properties.h -------------------------------------------------------------------------------- /src/cc/Common/Random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Random.cc -------------------------------------------------------------------------------- /src/cc/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Random.h -------------------------------------------------------------------------------- /src/cc/Common/ReferenceCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/ReferenceCount.h -------------------------------------------------------------------------------- /src/cc/Common/Runnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Runnable.h -------------------------------------------------------------------------------- /src/cc/Common/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/ScopeGuard.h -------------------------------------------------------------------------------- /src/cc/Common/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Serialization.h -------------------------------------------------------------------------------- /src/cc/Common/ServerLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/ServerLauncher.h -------------------------------------------------------------------------------- /src/cc/Common/SockAddrMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/SockAddrMap.h -------------------------------------------------------------------------------- /src/cc/Common/StaticBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/StaticBuffer.h -------------------------------------------------------------------------------- /src/cc/Common/StlHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/StlHash.h -------------------------------------------------------------------------------- /src/cc/Common/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Stopwatch.h -------------------------------------------------------------------------------- /src/cc/Common/String.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/String.cc -------------------------------------------------------------------------------- /src/cc/Common/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/String.h -------------------------------------------------------------------------------- /src/cc/Common/StringExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/StringExt.h -------------------------------------------------------------------------------- /src/cc/Common/SuperFastHash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/SuperFastHash.cc -------------------------------------------------------------------------------- /src/cc/Common/SuperFastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/SuperFastHash.h -------------------------------------------------------------------------------- /src/cc/Common/Sweetener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Sweetener.h -------------------------------------------------------------------------------- /src/cc/Common/System.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/System.cc -------------------------------------------------------------------------------- /src/cc/Common/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/System.h -------------------------------------------------------------------------------- /src/cc/Common/SystemInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/SystemInfo.cc -------------------------------------------------------------------------------- /src/cc/Common/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/SystemInfo.h -------------------------------------------------------------------------------- /src/cc/Common/TclHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/TclHash.h -------------------------------------------------------------------------------- /src/cc/Common/TestHarness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/TestHarness.h -------------------------------------------------------------------------------- /src/cc/Common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Thread.h -------------------------------------------------------------------------------- /src/cc/Common/Time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Time.cc -------------------------------------------------------------------------------- /src/cc/Common/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Time.h -------------------------------------------------------------------------------- /src/cc/Common/TimeInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/TimeInline.h -------------------------------------------------------------------------------- /src/cc/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Timer.h -------------------------------------------------------------------------------- /src/cc/Common/Usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Usage.cc -------------------------------------------------------------------------------- /src/cc/Common/Usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Usage.h -------------------------------------------------------------------------------- /src/cc/Common/Version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Version.cc -------------------------------------------------------------------------------- /src/cc/Common/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/Version.h.in -------------------------------------------------------------------------------- /src/cc/Common/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/atomic.h -------------------------------------------------------------------------------- /src/cc/Common/code_search_and_replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/code_search_and_replace.cc -------------------------------------------------------------------------------- /src/cc/Common/compat-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/compat-c.h -------------------------------------------------------------------------------- /src/cc/Common/endian-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/endian-c.h -------------------------------------------------------------------------------- /src/cc/Common/ht_checksum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/ht_checksum.cc -------------------------------------------------------------------------------- /src/cc/Common/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/md5.cc -------------------------------------------------------------------------------- /src/cc/Common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/md5.h -------------------------------------------------------------------------------- /src/cc/Common/serialization-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/serialization-c.h -------------------------------------------------------------------------------- /src/cc/Common/system_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/system_info.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/bloom_filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/bloom_filter_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/exception_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/exception_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/hash_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/inetaddr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/inetaddr_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/logging_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/mutex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/mutex_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/pagearena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/pagearena_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/properties_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/properties_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/properties_test.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/properties_test.golden -------------------------------------------------------------------------------- /src/cc/Common/tests/scope_guard_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/scope_guard_test.cc -------------------------------------------------------------------------------- /src/cc/Common/tests/sertest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Common/tests/sertest.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Broker.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Client.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Client.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Config.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Config.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ConnectionHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ConnectionHandler.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ConnectionHandler.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ConnectionHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ConnectionHandlerFactory.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/OpenFileMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/OpenFileMap.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Protocol.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/Protocol.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerAppend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerAppend.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerAppend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerAppend.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerClose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerClose.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerClose.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerCreate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerCreate.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerCreate.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerDebug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerDebug.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerDebug.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerExists.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerExists.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerFlush.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerFlush.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerFlush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerFlush.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerLength.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerLength.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerLength.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerMkdirs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerMkdirs.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerMkdirs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerMkdirs.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerOpen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerOpen.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerOpen.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerPread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerPread.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerPread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerPread.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRead.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRead.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRead.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerReaddir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerReaddir.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerReaddir.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRemove.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRemove.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRemove.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRename.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRename.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRmdir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRmdir.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerRmdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerRmdir.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerSeek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerSeek.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerSeek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerSeek.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerStatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerStatus.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/RequestHandlerStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/RequestHandlerStatus.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackAppend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackAppend.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackAppend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackAppend.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackExists.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackExists.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackLength.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackLength.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackLength.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackOpen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackOpen.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackOpen.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackRead.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackRead.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackRead.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackReaddir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackReaddir.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/Lib/ResponseCallbackReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/Lib/ResponseCallbackReaddir.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/ceph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/ceph/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/DfsBroker/ceph/CephBroker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/ceph/CephBroker.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/ceph/CephBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/ceph/CephBroker.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/ceph/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/ceph/main.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/kosmos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/kosmos/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/DfsBroker/kosmos/KosmosBroker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/kosmos/KosmosBroker.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/kosmos/KosmosBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/kosmos/KosmosBroker.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/kosmos/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/kosmos/main.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/local/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/DfsBroker/local/LocalBroker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/local/LocalBroker.cc -------------------------------------------------------------------------------- /src/cc/DfsBroker/local/LocalBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/local/LocalBroker.h -------------------------------------------------------------------------------- /src/cc/DfsBroker/local/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/DfsBroker/local/main.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/BerkeleyDbFilesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/BerkeleyDbFilesystem.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/BerkeleyDbFilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/BerkeleyDbFilesystem.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Hyperspace/ClientConnectionHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ClientConnectionHandler.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ClientConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ClientConnectionHandler.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ClientHandleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ClientHandleState.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ClientKeepaliveHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ClientKeepaliveHandler.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ClientKeepaliveHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ClientKeepaliveHandler.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Config.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Config.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/DbtManaged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/DbtManaged.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/DirEntry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/DirEntry.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/DirEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/DirEntry.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Event.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Event.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/FileHandleCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/FileHandleCallback.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HandleCallback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HandleCallback.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/HandleCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HandleCallback.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HandleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HandleData.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsClientState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsClientState.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsClientState.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsCommandInterpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsCommandInterpreter.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsCommandInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsCommandInterpreter.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsHelpText.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsHelpText.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsHelpText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsHelpText.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/HsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/HsParser.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/LockSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/LockSequencer.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Master.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Master.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/Master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Master.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/NodeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/NodeData.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Notification.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Protocol.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Protocol.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrDel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrDel.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrDel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrDel.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrExists.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrExists.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrGet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrGet.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrGet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrGet.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrList.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrList.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrSet.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerAttrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerAttrSet.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerClose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerClose.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerClose.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerDelete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerDelete.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerDelete.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerExists.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerExists.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerLock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerLock.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerLock.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerMkdir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerMkdir.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerMkdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerMkdir.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerOpen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerOpen.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerOpen.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerReaddir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerReaddir.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerReaddir.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerRelease.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerRelease.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerRelease.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerRenewSession.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerRenewSession.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerRenewSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerRenewSession.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerStatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerStatus.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/RequestHandlerStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/RequestHandlerStatus.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrExists.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrExists.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrGet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrGet.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrGet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrGet.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrList.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackAttrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackAttrList.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackExists.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackExists.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackLock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackLock.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackLock.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackOpen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackOpen.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackOpen.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackReaddir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackReaddir.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ResponseCallbackReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ResponseCallbackReaddir.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ServerConnectionHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ServerConnectionHandler.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ServerConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ServerConnectionHandler.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/ServerKeepaliveHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ServerKeepaliveHandler.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/ServerKeepaliveHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/ServerKeepaliveHandler.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/Session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Session.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/Session.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/SessionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/SessionData.h -------------------------------------------------------------------------------- /src/cc/Hyperspace/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/main.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/tests/bdb_fs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/tests/bdb_fs_test.cc -------------------------------------------------------------------------------- /src/cc/Hyperspace/tests/bdb_fs_test.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hyperspace/tests/bdb_fs_test.golden -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ApacheLogParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ApacheLogParser.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ApacheLogParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ApacheLogParser.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/BlockCompressionCodec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/BlockCompressionCodec.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/BlockCompressionCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/BlockCompressionCodec.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/BlockCompressionHeader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/BlockCompressionHeader.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/BlockCompressionHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/BlockCompressionHeader.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Cell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Cell.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Cell.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Cells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Cells.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Client.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Client.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLog.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLog.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLogBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLogBase.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLogBlockStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLogBlockStream.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLogBlockStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLogBlockStream.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLogReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLogReader.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CommitLogReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CommitLogReader.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CompressorFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CompressorFactory.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/CompressorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/CompressorFactory.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Config.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Config.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/DataGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/DataGenerator.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/DataGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/DataGenerator.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/DataGeneratorColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/DataGeneratorColumn.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/DataGeneratorQualifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/DataGeneratorQualifier.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/DataSource.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Defaults.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Defaults.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Defaults.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Filesystem.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Filesystem.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlCommandInterpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlCommandInterpreter.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlCommandInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlCommandInterpreter.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlHelpText.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlHelpText.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlHelpText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlHelpText.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlInterpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlInterpreter.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlInterpreter.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/HqlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/HqlParser.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/IntervalScanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/IntervalScanner.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/IntervalScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/IntervalScanner.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Key.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Key.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/KeySpec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/KeySpec.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/KeySpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/KeySpec.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataEscape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataEscape.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataEscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataEscape.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSource.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSource.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSourceFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSourceFactory.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSourceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSourceFactory.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSourceFileLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSourceFileLocal.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSourceStdin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSourceStdin.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LoadDataSourceStdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LoadDataSourceStdin.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LocationCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LocationCache.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/LocationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/LocationCache.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterClient.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterClient.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterFileHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterFileHandler.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterFileHandler.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterMetaLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterMetaLog.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterMetaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterMetaLog.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterMetaLogReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterMetaLogReader.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterMetaLogReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterMetaLogReader.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterProtocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterProtocol.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MasterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MasterProtocol.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLog.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLog.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogDfsBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogDfsBase.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogDfsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogDfsBase.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogEntryBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogEntryBase.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogEntryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogEntryBase.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogReader.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogReader.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogReaderDfsBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogReaderDfsBase.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogReaderDfsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogReaderDfsBase.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogVersion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogVersion.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/MetaLogVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/MetaLogVersion.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeLocationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeLocationInfo.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeLocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeLocator.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeLocator.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerClient.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerClient.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerMetaLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerMetaLog.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerMetaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerMetaLog.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerProtocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerProtocol.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeServerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeServerProtocol.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeState.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RangeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RangeState.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RootFileHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RootFileHandler.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/RootFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/RootFileHandler.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ScanBlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ScanBlock.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ScanBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ScanBlock.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ScanSpec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ScanSpec.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/ScanSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/ScanSpec.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Schema.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Schema.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Schema.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/SerializedKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/SerializedKey.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Stat.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Stat.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Table.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Table.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableMutator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableMutator.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableMutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableMutator.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableMutatorSendBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableMutatorSendBuffer.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableMutatorShared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableMutatorShared.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableMutatorShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableMutatorShared.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableScanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableScanner.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TableScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TableScanner.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TestData.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TestSource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TestSource.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/TestSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/TestSource.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Timestamp.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Types.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/Types.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmz-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmz-internal.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmz-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmz-test.c -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmz.c -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmz.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmzip-optimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmzip-optimize.sh -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/bmzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/bmzip.c -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/bmz/test-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/bmz/test-helper.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/generate_test_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/generate_test_data.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/lzo/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/lzo/lzoconf.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/lzo/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/lzo/minilzo.c -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/lzo/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/lzo/minilzo.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/metadata-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/metadata-1.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/metadata-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/metadata-2.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/quicklz/quicklz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/quicklz/quicklz.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/quicklz/quicklz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/quicklz/quicklz.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/DumpMetaLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/DumpMetaLog.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/MetaLogApiTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/MetaLogApiTest.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-1.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-2.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-3.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-4.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-5.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-6.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-7.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-8.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bad-schema-9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bad-schema-9.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t000.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t000.dump -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t000.sh -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t000.txt -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t001.bin -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t001.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | ./bmzip-test.sh 3 | -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t002.sh -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/bmz-tests/t002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/bmz-tests/t002.txt -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/commit_log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/commit_log_test.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/compressor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/compressor_test.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/escape_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/escape_test.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/good-schema-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/good-schema-1.xml -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/rsmltest.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/rsmltest.golden -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/rsmltest2.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/rsmltest2.golden -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/rsmltest3.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/rsmltest3.golden -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/schemaTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/schemaTest.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Lib/tests/schemaTest.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Lib/tests/schemaTest.golden -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/ConnectionHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/ConnectionHandler.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/ConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/ConnectionHandler.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/Master.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/Master.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/Master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/Master.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/MasterGc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/MasterGc.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/MasterGc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/MasterGc.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/RangeServerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/RangeServerState.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/RequestHandlerClose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/RequestHandlerClose.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/RequestHandlerClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/RequestHandlerClose.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/RequestHandlerStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/RequestHandlerStatus.h -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/htgc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/htgc.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/Master/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/Master/main.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/AccessGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/AccessGroup.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/AccessGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/AccessGroup.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellCache.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellCache.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellCachePool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellCachePool.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellCachePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellCachePool.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellList.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellListScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellListScanner.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStore.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStore.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStoreV0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStoreV0.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStoreV0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStoreV0.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStoreV1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStoreV1.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/CellStoreV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/CellStoreV1.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Config.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Config.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/FileBlockCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/FileBlockCache.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/FileBlockCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/FileBlockCache.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/FillScanBlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/FillScanBlock.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/FillScanBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/FillScanBlock.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Global.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Global.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/HandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/HandlerFactory.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/LiveFileTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/LiveFileTracker.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MaintenanceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MaintenanceTask.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MemoryTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MemoryTracker.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MergeScanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MergeScanner.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MergeScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MergeScanner.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Metadata.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MetadataNormal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MetadataNormal.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MetadataNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MetadataNormal.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MetadataRoot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MetadataRoot.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/MetadataRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/MetadataRoot.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Range.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/Range.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/RangeServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/RangeServer.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/RangeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/RangeServer.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/RangeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/RangeSet.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/ScanContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/ScanContext.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/ScanContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/ScanContext.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/ScannerMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/ScannerMap.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/ScannerMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/ScannerMap.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/SplitPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/SplitPredicate.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableIdCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableIdCache.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableIdCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableIdCache.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableInfo.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableInfo.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableInfoMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableInfoMap.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TableInfoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TableInfoMap.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TimerHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TimerHandler.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TimerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TimerHandler.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/TimerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/TimerInterface.h -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/count_stored.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/count_stored.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/csdump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/csdump.cc -------------------------------------------------------------------------------- /src/cc/Hypertable/RangeServer/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Hypertable/RangeServer/main.cc -------------------------------------------------------------------------------- /src/cc/ThriftBroker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/ThriftBroker/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/Client.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/Client.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/Client.thrift -------------------------------------------------------------------------------- /src/cc/ThriftBroker/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/Config.cc -------------------------------------------------------------------------------- /src/cc/ThriftBroker/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/Config.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/Hql.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/Hql.thrift -------------------------------------------------------------------------------- /src/cc/ThriftBroker/ThriftBroker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/ThriftBroker.cc -------------------------------------------------------------------------------- /src/cc/ThriftBroker/ThriftHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/ThriftHelper.cc -------------------------------------------------------------------------------- /src/cc/ThriftBroker/ThriftHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/ThriftHelper.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/ClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/ClientService.cpp -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/ClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/ClientService.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Client_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Client_constants.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Client_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Client_types.cpp -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Client_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Client_types.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/HqlService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/HqlService.cpp -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/HqlService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/HqlService.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Hql_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Hql_constants.cpp -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Hql_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Hql_constants.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Hql_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Hql_types.cpp -------------------------------------------------------------------------------- /src/cc/ThriftBroker/gen-cpp/Hql_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/gen-cpp/Hql_types.h -------------------------------------------------------------------------------- /src/cc/ThriftBroker/tests/client_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/ThriftBroker/tests/client_test.cc -------------------------------------------------------------------------------- /src/cc/Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/Lib/CommandInterpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/CommandInterpreter.cc -------------------------------------------------------------------------------- /src/cc/Tools/Lib/CommandInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/CommandInterpreter.h -------------------------------------------------------------------------------- /src/cc/Tools/Lib/CommandShell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/CommandShell.cc -------------------------------------------------------------------------------- /src/cc/Tools/Lib/CommandShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/CommandShell.h -------------------------------------------------------------------------------- /src/cc/Tools/Lib/Notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/Lib/Notifier.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandCopyFromLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandCopyFromLocal.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandCopyToLocal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandCopyToLocal.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandCopyToLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandCopyToLocal.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandExists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandExists.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandExists.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandLength.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandLength.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandLength.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandMkdirs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandMkdirs.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandMkdirs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandMkdirs.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandRemove.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandRemove.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandRemove.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandRmdir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandRmdir.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandRmdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandRmdir.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandShutdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandShutdown.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/CommandShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/CommandShutdown.h -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/dfsTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/dfsTest.cc -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/dfsTest.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/dfsTest.golden -------------------------------------------------------------------------------- /src/cc/Tools/dfsclient/dfsclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dfsclient/dfsclient.cc -------------------------------------------------------------------------------- /src/cc/Tools/dumplog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dumplog/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/dumplog/dumplog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/dumplog/dumplog.cc -------------------------------------------------------------------------------- /src/cc/Tools/hyperspace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hyperspace/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/hyperspace/hyperspace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hyperspace/hyperspace.cc -------------------------------------------------------------------------------- /src/cc/Tools/hyperspace/test/client1.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hyperspace/test/client1.golden -------------------------------------------------------------------------------- /src/cc/Tools/hyperspace/test/client2.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hyperspace/test/client2.golden -------------------------------------------------------------------------------- /src/cc/Tools/hyperspace/test/client3.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hyperspace/test/client3.golden -------------------------------------------------------------------------------- /src/cc/Tools/hypertable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hypertable/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/hypertable/hypertable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/hypertable/hypertable.cc -------------------------------------------------------------------------------- /src/cc/Tools/load_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/load_generator/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/merge_diff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/merge_diff/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/merge_diff/merge_diff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/merge_diff/merge_diff.cc -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/TableInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/TableInfo.cc -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/TableInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/TableInfo.h -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/ht_rsclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/ht_rsclient.cc -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test1-data.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test1-data.txt.gz -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test1.cmd -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test1.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test1.golden -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test2-data.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test2-data.txt.gz -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test2.cmd -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test2.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test2.golden -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test3.cmd -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test3.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test3.golden -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test4-data.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test4-data.txt.gz -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test4.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test4.cmd -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/Test4.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/Test4.golden -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/initialize.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/initialize.hql -------------------------------------------------------------------------------- /src/cc/Tools/rsclient/tests/rsTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsclient/tests/rsTest.cc -------------------------------------------------------------------------------- /src/cc/Tools/rsstat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsstat/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/rsstat/rsstat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/rsstat/rsstat.cc -------------------------------------------------------------------------------- /src/cc/Tools/serverup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/serverup/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/Tools/serverup/serverup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/cc/Tools/serverup/serverup.cc -------------------------------------------------------------------------------- /src/java/ThriftClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/java/ThriftClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/perl/ThriftClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/perl/ThriftClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/perl/ThriftClient/client_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/perl/ThriftClient/client_test.pl -------------------------------------------------------------------------------- /src/php/ThriftClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/php/ThriftClient/ThriftClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/ThriftClient.php -------------------------------------------------------------------------------- /src/php/ThriftClient/client_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/client_test.php -------------------------------------------------------------------------------- /src/php/ThriftClient/gen-php/Client_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/gen-php/Client_types.php -------------------------------------------------------------------------------- /src/php/ThriftClient/gen-php/HqlService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/gen-php/HqlService.php -------------------------------------------------------------------------------- /src/php/ThriftClient/gen-php/Hql_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/php/ThriftClient/gen-php/Hql_types.php -------------------------------------------------------------------------------- /src/py/ThriftClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/py/ThriftClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/py/ThriftClient/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/py/ThriftClient/client_test.py -------------------------------------------------------------------------------- /src/py/ThriftClient/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/py/ThriftClient/gen-py/hyperthrift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/py/ThriftClient/hypertable/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['thriftclient'] 2 | -------------------------------------------------------------------------------- /src/rb/ThriftClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/rb/ThriftClient/CMakeLists.txt -------------------------------------------------------------------------------- /src/rb/ThriftClient/client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/src/rb/ThriftClient/client_test.rb -------------------------------------------------------------------------------- /tests/data/random.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/data/random.dat -------------------------------------------------------------------------------- /tests/data/words.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/data/words.gz -------------------------------------------------------------------------------- /tests/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/aol-basic/Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-basic/Capfile -------------------------------------------------------------------------------- /tests/integration/aol-basic/count.golden: -------------------------------------------------------------------------------- 1 | 75274825 dbdump 2 | -------------------------------------------------------------------------------- /tests/integration/aol-basic/dump-query-log.hql: -------------------------------------------------------------------------------- 1 | select * from "query-log"; 2 | quit 3 | -------------------------------------------------------------------------------- /tests/integration/aol-basic/load.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-basic/load.hql -------------------------------------------------------------------------------- /tests/integration/aol-basic/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-basic/run.sh -------------------------------------------------------------------------------- /tests/integration/aol-metadata-split/Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-metadata-split/Capfile -------------------------------------------------------------------------------- /tests/integration/aol-metadata-split/count.golden: -------------------------------------------------------------------------------- 1 | 75274825 dbdump 2 | -------------------------------------------------------------------------------- /tests/integration/aol-metadata-split/dump-query-log.hql: -------------------------------------------------------------------------------- 1 | select * from "query-log"; 2 | quit 3 | -------------------------------------------------------------------------------- /tests/integration/aol-metadata-split/load.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-metadata-split/load.hql -------------------------------------------------------------------------------- /tests/integration/aol-metadata-split/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-metadata-split/run.sh -------------------------------------------------------------------------------- /tests/integration/aol-time-order/Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-time-order/Capfile -------------------------------------------------------------------------------- /tests/integration/aol-time-order/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-time-order/NOTES.txt -------------------------------------------------------------------------------- /tests/integration/aol-time-order/count.golden: -------------------------------------------------------------------------------- 1 | 27879308 dbdump 2 | -------------------------------------------------------------------------------- /tests/integration/aol-time-order/dump-query-log.hql: -------------------------------------------------------------------------------- 1 | select * from "query-log"; 2 | quit 3 | -------------------------------------------------------------------------------- /tests/integration/aol-time-order/load.hql: -------------------------------------------------------------------------------- 1 | load data infile "aol-with-timestamps.tsv" into table 'query-log'; 2 | -------------------------------------------------------------------------------- /tests/integration/aol-time-order/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/aol-time-order/run.sh -------------------------------------------------------------------------------- /tests/integration/bloomfilter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/bloomfilter/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/bloomfilter/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/bloomfilter/run.sh -------------------------------------------------------------------------------- /tests/integration/commit-log-gc/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/commit-log-gc/run.sh -------------------------------------------------------------------------------- /tests/integration/metadata-split/data.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/metadata-split/data.spec -------------------------------------------------------------------------------- /tests/integration/metadata-split/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/metadata-split/run.sh -------------------------------------------------------------------------------- /tests/integration/multiple-maintenance-threads/dump-table.hql: -------------------------------------------------------------------------------- 1 | select * from RandomTest KEYS_ONLY; 2 | quit; 3 | -------------------------------------------------------------------------------- /tests/integration/mutator-no-log-sync/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/mutator-no-log-sync/run.sh -------------------------------------------------------------------------------- /tests/integration/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/random/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/random/create-table.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/random/create-table.hql -------------------------------------------------------------------------------- /tests/integration/random/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/random/run.sh -------------------------------------------------------------------------------- /tests/integration/row-overflow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/row-overflow/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/row-overflow/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/row-overflow/run.sh -------------------------------------------------------------------------------- /tests/integration/rowkey-ag-imbalance/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/rowkey-ag-imbalance/run.sh -------------------------------------------------------------------------------- /tests/integration/rsml-prune/data.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/rsml-prune/data.spec -------------------------------------------------------------------------------- /tests/integration/rsml-prune/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/rsml-prune/run.sh -------------------------------------------------------------------------------- /tests/integration/scan-concurrency/dump-table.hql: -------------------------------------------------------------------------------- 1 | select * from RandomTest KEYS_ONLY; 2 | quit; 3 | -------------------------------------------------------------------------------- /tests/integration/scan-concurrency/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/scan-concurrency/run.sh -------------------------------------------------------------------------------- /tests/integration/scan-limit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/scan-limit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/integration/sequential-load-count/dump-table.hql: -------------------------------------------------------------------------------- 1 | select * from "SequentialLoadCountTest"; 2 | quit 3 | -------------------------------------------------------------------------------- /tests/integration/sequential-load-count/shutdown.hql: -------------------------------------------------------------------------------- 1 | shutdown; 2 | -------------------------------------------------------------------------------- /tests/integration/sequential-load/dump-table.hql: -------------------------------------------------------------------------------- 1 | SELECT * from LoadTest KEYS_ONLY; 2 | -------------------------------------------------------------------------------- /tests/integration/sequential-load/keys.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/sequential-load/keys.golden -------------------------------------------------------------------------------- /tests/integration/sequential-load/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/sequential-load/run.sh -------------------------------------------------------------------------------- /tests/integration/split-merge-loop10/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/split-merge-loop10/run.sh -------------------------------------------------------------------------------- /tests/integration/split-recovery/dump-test-table.hql: -------------------------------------------------------------------------------- 1 | select * from "split-test" revs=1; 2 | quit; 3 | -------------------------------------------------------------------------------- /tests/integration/split-recovery/load.hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/split-recovery/load.hql -------------------------------------------------------------------------------- /tests/integration/split-recovery/run-n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/split-recovery/run-n.sh -------------------------------------------------------------------------------- /tests/integration/split-recovery/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicaya/hypertable/HEAD/tests/integration/split-recovery/run.sh --------------------------------------------------------------------------------