1. 890182a Implemented BTree upsert. Using callback interface for logging. by alexander.behm · 13 years ago
  2. db954e0 Added operation callback interface that allows pre/post inspection of tuples when operation performed on index by zheilbron · 13 years ago
  3. 0c89d15 Fixed LSM tests that I broke while cleaning up the inverted index. Minor improvements to buffercache. by alexander.behm · 13 years ago
  4. b84584b Fixed superfluous file creation in LSM B-Tree and LSM R-Tree integration tests. by alexander.behm · 13 years ago
  5. 4b07e1d Implemented counting of free pages in BufferCache to better sync the cleaner thread with threads waiting for pages to be cleaned. by alexander.behm · 13 years ago
  6. 2f216e3 Finished readthrough and cosmetic cleanup of lsm-common package: by zheilbron · 13 years ago
  7. 5a23956 - Merged interface changes from hyracks_inverted_index_updates by zheilbron · 13 years ago
  8. bc5f3d9 Merged hyracks_dev_next r1183:r1207. by alexander.behm · 13 years ago
  9. 06e980c Merged hyracks_dev_next into hyracks_lsm_tree r1183:1206 by zheilbron · 13 years ago
  10. dc2e514 Improved task attempt lookup in job scheduler by vinayakb · 13 years ago
  11. c8f86a6 Refactored the integration tests and added integration tests for the LSMRTree. by salsubaiee · 13 years ago
  12. da35161 Deleting LSMBTree search op, since it's identical to the BTree op. by alexander.behm · 13 years ago
  13. e9de7b8 Cleaned up BTree integration tests. Added LSM-BTree integration tests. by alexander.behm · 13 years ago
  14. 2661ec4 Added LSMRTree search operator. by salsubaiee · 13 years ago
  15. c2db1ea - Fixed a potential bug in the RTree delete that could happen when a deleter latch the root page while it is leaf and when it wants to upgrade the latch to write latch the root is no longer a leaf page. by salsubaiee · 13 years ago
  16. 55f0f20 Modified RTree search operator to extend the common TreeIndexSearchOperator. by alexander.behm · 13 years ago
  17. f09b683 Fixed a bug in the LSMRTree delete operation reported by Markus in issue 58. For each delete operation we need to make sure that we run a true in-memory RTree delete operation to avoid return duplicate keys in case of consequent inserts and deletes for the same tuple before flush occur. by salsubaiee · 13 years ago
  18. 5e9224e Factored out common code for tree index search ops. Added LSM BTree search operator (other existing ops can be directly used). by alexander.behm · 13 years ago
  19. 96712d3 Fixed a bug in the LSMRTree search cursor related to the timing of opening the RTree cursors which can cause deadlocks. by salsubaiee · 13 years ago
  20. 1b98b57 Added missing files. by alexander.behm · 13 years ago
  21. 1d0f9a6 Moved tree index test framework to hyracks-test-support. Removed JUnit dependency from access method poms. Cleaned up all access method dependencies. by alexander.behm · 13 years ago
  22. 2fc93e5 Fixed NPE in LSMBTreeUpdateTest. by alexander.behm · 13 years ago
  23. 78a50b9 Merged hyracks_dev_next r1165:r1182. by alexander.behm · 13 years ago
  24. b8d3483 Changed scope of JUnit dependency from test to compile to resolve compilation issues. by alexander.behm · 13 years ago
  25. 0be3ba9 Changed default hyracks web port to 16001 by vinayakb · 13 years ago
  26. 43382db Simplifying tree operators in preparation of LSM tree operators. by alexander.behm · 13 years ago
  27. dcfbfbb Fixed issues on Mac OS X by vinayakb · 13 years ago
  28. 615e122 Added code to clean up all files after the LSM tests. by alexander.behm · 13 years ago
  29. 0364b85 Completed consistency checking for components of the LSM B-Tree and LSM R-Tree in open(). by alexander.behm · 13 years ago
  30. e598a47 Added a missing getter method to the RTree. by salsubaiee · 13 years ago
  31. 035a8ba Removed atomic rename for LSM components. Using special value in metadata page of trees to guarantee consistency of written LSM components. When adding a new LSM component, it is forced to disk, and then the special value is force to disk. by alexander.behm · 13 years ago
  32. 7e847a8 Deleted deprecated test files. by salsubaiee · 13 years ago
  33. 854c466 - Fixed various bugs in the RTree concurrency control protocol which caused some searchers to miss some nodes due to concurrent splits. by salsubaiee · 13 years ago
  34. 47e886f Fixed a race in the datagen thread, reported by Sattam. by alexander.behm · 13 years ago
  35. 428b9f4 Merged hyracks_dev_next r1127:r1164. by alexander.behm · 13 years ago
  36. 6d92ffd Added IPC statistics to admin console by vinayakb · 13 years ago
  37. e491c35 Removed unused file and fixed AbstractMultiNCIntegrationTest to be abstract. by vinayakb · 13 years ago
  38. 77a6709 Minor changes by vinayakb · 13 years ago
  39. 509eaeb Removed unused helper methods by vinayakb · 13 years ago
  40. 4c35f4c Renamed the abstract multi-nc test class to avoid being tested (so failed) on asterix-cluster (maven 2.2.1). This bug is not exposed when using maven 3.0.3. by jarodwen · 13 years ago
  41. a7bb092 Added tests for the locality-aware connectors. by jarodwen · 13 years ago
  42. 0e18687 Implemented registration of LSM components via atomic renaming of a temp component. Modified LSMFileNameManager to use IOManager, such that new LSM components are written to IODevices in a round rob in fashion. Added tests using multiple IO devices. by alexander.behm · 13 years ago
  43. 30b9aff Fixed markup bug in Page Details code by vinayakb · 13 years ago
  44. fd8a7c7 Added map-based connector. by jarodwen · 13 years ago
  45. 4663e4a Fixed a minor bug in LSMBTree merge. by alexander.behm · 13 years ago
  46. 44d7c07 Implemented new file naming scheme for LSM indexes based on timestamp intervals. Relying on the file names alone, an LSM index can always determine whether an LSM component is valid or not. Still TODO: Implement flushing/merging into a temp file, followed by an atomic rename upon success. by alexander.behm · 13 years ago
  47. b3892c8 Fixed bug in checking expected results of disk-order scan in BTree tests (they still pass). by alexander.behm · 13 years ago
  48. 70b63e2 Added support code for JobDetails page in admin console by vinayakb · 13 years ago
  49. de834f0 Minor Refactoring of IPCConnectionManager by vinayakb · 13 years ago
  50. 5c872dd Removed debug messages. by alexander.behm · 13 years ago
  51. 5606015 Fixed a race between mergers and searchers in LSM indexes. Completed multi-threading tests for LSM B-Tree. by alexander.behm · 13 years ago
  52. ade9323 Fixed a race in the BufferCache because fileInfoMap was not accessed in a synchronized block within pinSanityCheck(). by alexander.behm · 13 years ago
  53. e7aaf0d - Added LSMRTree test framework. by salsubaiee · 13 years ago
  54. eaebc0d Committed, so Alex can put some changes to avoid conflicts. by salsubaiee · 13 years ago
  55. 4ee9f67 Fixed a BTree concurrency bug, where an unsafe read lead to releasing the wrong latch type. Adding LSMBTree multi-threading tests (still incomplete). by alexander.behm · 13 years ago
  56. 29b492c Merged hyracks_dev_next r1079:r1126. by alexander.behm · 13 years ago
  57. 4414c02 Reduced object construction in message handling by vinayakb · 13 years ago
  58. ca332ae Finished BTree multi-thread test. Fixed a bug where a disk-order scan could cause latch-deadlock with other concurrent operations. Fixed a bug where deletes and updates would not throw if their target leaf page is empty (we allow underflow to simply exist). by alexander.behm · 13 years ago
  59. 9e75ac2 - Refactored the BTree and LSMBTree test framework code. by salsubaiee · 13 years ago
  60. 6faa8c4 Created a test framework for the RTree and added the corresponding tests. by salsubaiee · 13 years ago
  61. 0cd78eb Fixed erroneous removal of application by vinayakb · 13 years ago
  62. b452678 Fleshed out multi-threaded BTree tests a little more. by alexander.behm · 13 years ago
  63. 755db03 Fixed a BTree concurrency bug where a restarting operation sometimes did not re-pin and re-latch it's page which was released during latch coupling downwards. by alexander.behm · 13 years ago
  64. 4492225 Added more node information to admin console by vinayakb · 13 years ago
  65. f39a6b6 Added multi-threading test framework for tree indexes. Still need to implement concrete tests. by alexander.behm · 13 years ago
  66. 29e62b5 Added tabs to node details page by vinayakb · 13 years ago
  67. 7222c93 Minor comment changes. by salsubaiee · 13 years ago
  68. 44637c1 - Fixed a bug in the LSMRTree search cursor which caused returning corrputed tuples. by salsubaiee · 13 years ago
  69. 31970ed Added network charts. Added system information. by vinayakb · 13 years ago
  70. 4e8fe23 Removed jqplot. Replaced it with flot. by vinayakb · 13 years ago
  71. 07769de Fixed thread-concurrency issues in tree indexes due to IBinaryComparator not being thread safe anymore. by alexander.behm · 13 years ago
  72. 5b706a5 Factored out thread-concurrency code of LSM-Trees into a common harness. Modified LSMBTree and LSMRTree to use the harness. by alexander.behm · 13 years ago
  73. 6a43513 Added CC info to ICCContext. by vinayakb · 13 years ago
  74. c167fe5 removing commented content from pom.xml to avoid running of integration test, commenting was done temporarily as mvn install was not working by ramangrover29 · 13 years ago
  75. 6052f6f Modified TreeIndexDropOperator to use IIndex interface instead of ITreddIndex by ramangrover29 · 13 years ago
  76. ed88dc5 Fixed the order of closing and deleting a tree during the cleanup of a merge. by salsubaiee · 13 years ago
  77. 7b5eb1b Added copyright notice. by salsubaiee · 13 years ago
  78. b3f611f Bug fix. by salsubaiee · 13 years ago
  79. 9643b9e Removed warnings. by salsubaiee · 13 years ago
  80. 05316c1 - Fixed merging bug. by salsubaiee · 13 years ago
  81. 2db3e7e Fixed checking of closed channel before attempting to add credits by vinayakb · 13 years ago
  82. e0e9332 Removed left-sibling link from BTree leaves. by alexander.behm · 13 years ago
  83. 9e8e57e Removing BTree reverse scan functionality because it is can cause latch deadlock, and adds more complexity to the BTRee. Changed search cursor, more changes to follow. by alexander.behm · 13 years ago
  84. 34f27e6 Added test for LSMBTree merge. by alexander.behm · 13 years ago
  85. 50cf3a9 Added LSMBTree multi bulk-load test. Each bulk load creates a new on-disk component. by alexander.behm · 13 years ago
  86. 2e6b99f Fixed clearing of channel state on release by vinayakb · 13 years ago
  87. bb3fe04 Enhanced LSMBTree tuples test to also cover LSMBTree copy tuple writer. by alexander.behm · 13 years ago
  88. fc14588 Refactored internal operator environment object by vinayakb · 13 years ago
  89. eebfcd8 Fixed a bug on the merging phase of the external grouper; added a float sum aggregator (with test cases). by jarodwen@gmail.com · 13 years ago
  90. e0f4e1e Fixed a concurrency bug in the LSMBTree that allowed more than one concurrent merge (needed to use isMerging CAS properly). by alexander.behm · 13 years ago
  91. 184f71f Added test for LSMBTree tuple writers and references. Found and fixed a bug where antimatter tuples used more space than necessary. by alexander.behm · 13 years ago
  92. 61defab - Added LSM-RTree merge operation with correct concurrency managment. by salsubaiee · 13 years ago
  93. d7e0ba2 Added proper synchronization for LSM-BTree bulk load. by alexander.behm · 13 years ago
  94. c258677 Implemented LSM-BTree merge including correct behavior with concurrent accesses. by alexander.behm · 13 years ago
  95. d1cffab Renamed some packages. by alexander.behm · 13 years ago
  96. ddeb394 Merged hyracks_dev_next r1064:r1078. by alexander.behm · 13 years ago
  97. 9e7f433 Using consistent file naming for LSMBTree. More code cleanup. by alexander.behm · 13 years ago
  98. c6f5b60 Reduced the shipping around of Job Activity Graphs to at most once per NC per job. by vinayakb · 13 years ago
  99. 64fa2da Avoiding some object construction in LSM-BTree. by alexander.behm · 13 years ago
  100. 7b96aaa Fixed LSM-BTree bulk load. More cleanup. by alexander.behm · 13 years ago