1. 7763295 Added a test case for the rtree operators by salsubaiee · 13 years ago
  2. 58a635f Refactored BTree ops to share them with the RTree. All ops except the search op are currently sharable. The search op needs more thinking. by alexander.behm · 13 years ago
  3. 69b3e9d Starting implementation of Inverted Index operators. Did some refactoring of the BTree in the process. by alexander.behm · 13 years ago
  4. 78a1408 1. Modified BufferCache to have a maxOpenFiles parameter. 2. BufferCache will not invalidate and flush pages upon last close of a file. 3. Pages of unreferenced files are invalidated and flushed lazily during a new openFile request. by alexander.behm · 13 years ago
  5. 0d161a0 Merged trunk -r 363:437 into branch by alexander.behm · 13 years ago
  6. 75f9960 Added BTreeStats operator. Fixed some minor bugs in the process. by alexander.behm · 13 years ago
  7. abf2cba Started work on improved inverted index. Implemented bulk load procedure. by alexander.behm · 14 years ago
  8. e311ecd Fixed the following bug discovered by Vandana and Vinayak: Some BTree tests create a folder to place the index files into. However, this folder is not removed after the tests, so different users (that don't have write privs on the folder) trying to build Hyracks get failed tests. by alexander.behm · 14 years ago
  9. 6edfb2b More BTree refactoring for better code sharing. by alexander.behm · 14 years ago
  10. c764bb6 Refactored BTree code to allow better code sharing with RTree. by alexander.behm · 14 years ago
  11. feba368 [maven-release-plugin] prepare release hyracks-0.1.4 by vinayakb · 14 years ago
  12. 01da06a Merging branch with various btree fixes into trunk. by alexander.behm · 14 years ago
  13. fcfcb19 Merged 0.1.3_btreefix into trunk by alexander.behm · 14 years ago
  14. 350ce27 Merged in trunk@304:314 by vinayakb · 14 years ago
  15. 77459fc Fixed cleanup on job abort. Fixed profiling by vinayakb · 14 years ago
  16. 5397ccc Fixed application deployment. Fault recovery works correctly. by vinayakb · 14 years ago
  17. 3d4c974 Added new scheduler. Temporarily disabled build of compat layer pending some changes by vinayakb · 14 years ago
  18. 74c7207 Merged r289:290 from the hyracks_io_management branch by vinayakb · 14 years ago
  19. cf05912 Fixed error in group id by vinayakb · 14 years ago
  20. 8024c92 [maven-release-plugin] prepare for next development iteration by vinayakb · 14 years ago
  21. e7388ac [maven-release-plugin] prepare release hyracks-0.1.3 by vinayakb · 14 years ago
  22. b19569f [maven-release-plugin] rollback the release of hyracks-0.1.3 by vinayakb · 14 years ago
  23. b1aa280 [maven-release-plugin] prepare for next development iteration by vinayakb · 14 years ago
  24. 53275ce [maven-release-plugin] prepare release hyracks-0.1.3 by vinayakb · 14 years ago
  25. 4322c70 Removed target folder by alexander.behm · 14 years ago
  26. 5525336 Formatted code in Asterix style. by alexander.behm · 14 years ago
  27. 2daa123 Formatted code in Asterix style and added copyright info to all files. by alexander.behm · 14 years ago
  28. 63f2f19 Slight modifications to test cases. by alexander.behm · 14 years ago
  29. 4e09438 1. Changed BTree code to use the new IBufferCache and IStorageManagerInterface to cleanly deal with the lifecycle of files. by alexander.behm · 14 years ago
  30. d301105 Merged r248:249 from trunk by alexander.behm · 14 years ago
  31. 05ab473 Ported changes in storage common by vinayakb · 14 years ago
  32. 3b374bd Improved BTree ops to generate less objects. For example, BTreeOpContext can now be reused for multiple operations. by alexander.behm · 14 years ago
  33. f75b793 Merged online_aggregation @186:220 by vinayakb · 14 years ago
  34. 666bda0 Fixed compilation issues. by alexander.behm · 14 years ago
  35. 7287026 Added support for open intervals in BTree searches. by alexander.behm · 14 years ago
  36. 695f9c3 added test data by alexander.behm · 14 years ago
  37. 09c6e09 added tests for binary tokenizer operators by alexander.behm · 14 years ago
  38. ac9d389 Added ITypeTrait interface to indicate statically know size of types. The BTree can now use this information (with the TypeAwareTupleWriter) to save space on field slots as follows. There are no more field slots for fixed-length types and the field slots for variable-length types are delta-compressed and encoded in a variable-byte format. by alexander.behm · 14 years ago
  39. 2f8d7c4 added BTreeFileEnlistment op to register existing files as BTrees in the system by alexander.behm · 14 years ago
  40. 264695b added more meaningful error messages for BTree op boundary cases by alexander.behm · 14 years ago
  41. 8be8b7d changed BTree ops to take FileSplitProvider instead of btree file name by alexander.behm · 14 years ago
  42. cdd3e1d Added the ability to collect profile. Added REST Api to provide access to job state by vinayakb · 14 years ago
  43. de3bbe0 BTree search op now takes input tuples as search keys. Added ConstantTupleSourceProviderOp to feed constant search keys. Modified BTree app example to search secondary index and then retrieve corresponding records from primary index. by alexander.behm · 14 years ago
  44. 0665fc1 Added profile reporting capability by vinayakb · 14 years ago
  45. 93c4c1f Added counters by vinayakb · 14 years ago
  46. 8d3119c Added test to test Integer parsinghyracks-examples/hyracks-integration-tests/src/test/java/edu/uci/ics/hyracks/tests/integration/ScanPrintTest.java by vinayakb · 14 years ago
  47. d850f59 Added a sort-merge case with two fields used as the sort-key by vinayakb · 14 years ago
  48. afbc779 Fixed eclipse .classpath files by vinayakb · 14 years ago
  49. efbbec5 Fixed external sort flush/reset sequence. Fixed FrameSorter buffer length. Added normalized key to external sort in Word count example by vinayakb · 14 years ago
  50. 424e1ae Optimized in-memory sorting. Added Eclipse project files by vinayakb · 14 years ago
  51. 34464ec added btree example app by alexander.behm · 14 years ago
  52. 8a9344b removed superfluous constructor args in btree ops and fixed bug where search cursor is not closed properly by alexander.behm · 14 years ago
  53. 51d741a Fixed word count for presorted aggregation by vinayakb · 14 years ago
  54. 168d92f Added Binary Preclustered Group Operator. Preclustered and Hash based group operators now use the same aggregator interface. Added a Frame Writing Operator. by vinayakb · 14 years ago
  55. 4ecf919 added IFileMappingProviderProvider for use in btree ops by alexander.behm · 14 years ago
  56. 4375afe using IFileMappingProvider instead of fileId in btree ops by alexander.behm · 14 years ago
  57. a7fa26d fixed infinite loop issue in btree op test by alexander.behm · 14 years ago
  58. 38da75f added drop btree operator and added isLocalCluster flag to btree operators to simplify testing by alexander.behm · 14 years ago
  59. bfc33cf [maven-release-plugin] prepare for next development iteration by vinayakb · 14 years ago
  60. abd5142 [maven-release-plugin] prepare release hyracks-0.1.2 by vinayakb · 14 years ago
  61. 82fe40d removed IFieldAccessor interface and finished final cleaning of btree code after switching to new record format by alexander.behm · 14 years ago
  62. 08eefdf changed record format of btree to (1) not to rely on a length indicator in serialized fields and (2) deal with nulls by alexander.behm · 14 years ago
  63. 6fe3943 changed btree api to use ITupleReference instead of byte[] but still assuming length is present in serialized fields (will fix next) by alexander.behm · 14 years ago
  64. 02a4329 completed bulk loading with compression and modified cursors to provide a fielditerator to hide compression details by alexander.behm · 14 years ago
  65. 824a36d Added flush call to IFrameWriter by vinayakb · 14 years ago
  66. d78dcc0 fixed serialization issues with btree op tests by alexander.behm · 14 years ago
  67. c0d2bbe adding storage.am.btree dependency for btree tests by alexander.behm · 14 years ago
  68. 8118882 adding btree test file and made runTest() protected by alexander.behm · 14 years ago
  69. 8393013 Added eclipse project info for intermediate maven projects by vinayakb · 14 years ago
  70. 0e1b1b0 [maven-release-plugin] prepare for next development iteration by vinayakb · 14 years ago
  71. 6d5bb82 [maven-release-plugin] prepare release hyracks-0.1.1 by vinayakb · 14 years ago
  72. 72cc822 Moved to filescanners that do not need object construction by vinayakb · 14 years ago
  73. 28cc83e Added parent POM info by vinayakb · 14 years ago
  74. 2b1ef15 Added distribution management. Bumped version to 0.1.1-SNAPSHOT by vinayakb · 14 years ago
  75. aac48a5 Moved docs into hyracks-server and updated README by vinayakb · 14 years ago
  76. 391c908 Added hyrax-server containing only CC and NC by vinayakb · 14 years ago
  77. 1f050c6 Moved integration tests into examples by vinayakb · 14 years ago
  78. cb25237 Fixed versions by vinayakb · 14 years ago
  79. 88476b1 Reduced client to work on a smaller scale than a cluster by vinayakb · 14 years ago
  80. 32c3869 Added application support. Added examples. Added CLI by vinayakb · 14 years ago