1. 37b7d29 Implement the client side of RPCs to give the clients the ability to retrieve serialized record descriptor. by madhusudancs@gmail.com · 12 years ago
  2. a66e9dc Rewrite the dataset directory service. by madhusudancs@gmail.com · 12 years ago
  3. dac14cf Pass the serialized record descriptor all the way upto dataset directory service in the RPC chain. by madhusudancs@gmail.com · 12 years ago
  4. a1e56ce Teach result writer operator about the record descriptor. by madhusudancs@gmail.com · 12 years ago
  5. 4bb03e9 Revert the hyracks version to 0.2.2 for all the packages. by madhusudancs@gmail.com · 12 years ago
  6. 646a03f Enforce ordering in exposing the directory records for partitions to the clients if ordering constraint is imposed by the ResultWriterOperatoryDescriptor. by madhusudancs · 12 years ago
  7. b44e20d Provide the ordering specification to result writer operator descriptor in SortMergeTest. by madhusudancs · 12 years ago
  8. a4478a2 Use a slightly enhanced datastructure to store whether the results should be ordered or not. by madhusudancs · 12 years ago
  9. 75fd920 Add a parameter for the ResultWriterOperatorDescriptor to support ordered result distribution. by madhusudancs · 12 years ago
  10. 98214bf Remove the unused IDatasetInputChannel interface definition file. by madhusudancs · 12 years ago
  11. 499aaf1 We do not have a need to define a frame size statically within the dataset now because we obtain that from the job specification. by madhusudancs · 12 years ago
  12. f9332dd Use IInputChannel instead of IDatasetInputChannel in the monitor definitions. by madhusudancs · 12 years ago
  13. 459d110 Construct the DatasetClientContext object in the HyracksDataset constructor and pass it to the result channel's open method. by madhusudancs · 12 years ago
  14. b641a67 Implement a client side context from IHyracksCommonContext. by madhusudancs · 12 years ago
  15. bcb2b0a Extend IDatasetInputChannelMonitor from IInputChannelMonitor rather than creating a new one altogether. by madhusudancs · 12 years ago
  16. 82d17f7 Reimplement the DatasetNetworkInputChannel using the IInputChannel interface instead of creating a new interface defintion. by madhusudancs · 12 years ago
  17. 18143eb Refactor IInputChannel.open method to take IHyracksCommonContext as the parameter instead of IHyracksTaskContext. by madhusudancs · 12 years ago
  18. 3b2d55b Just use null as values to localAddress and listener for non listening TCP endpoints instead of copy pasting the constructor method. by madhusudancs · 12 years ago
  19. c11728d Fix a formatting issue with the comment. by madhusudancs · 12 years ago
  20. 3385489 Update the sort merge test to use the new API. by madhusudancs · 12 years ago
  21. 4da79e4 Use DatasetDirectoryRecords instead of NetworkAddresses everywhere we access that information in the dataset stack. by madhusudancs · 12 years ago
  22. a5b45f5 Add support for registering the result set id with the ResultWriterOperatorDescriptor. by madhusudancs · 12 years ago
  23. d5769b0 Support adding result set ids to the job specification and retrieving it. by madhusudancs · 12 years ago
  24. 41da2db Implement a class that holds a directory record. by madhusudancs · 12 years ago
  25. 9c7a006 Implement ResultSetId class to represent result sets. by madhusudancs · 12 years ago
  26. 544eb63 We should print the buffer before recycling it by madhusudancs · 12 years ago
  27. 93f3bb9 Synchronize reads and writes to not let the reader attempt to read the file before it is written by the writer. by madhusudancs · 12 years ago
  28. 5b029cf Formatting fixes. by madhusudancs · 12 years ago
  29. 78eb0c2 Make all the necessary changes or additions to report the data transfer info across the new result distribution socket for the node controller. by madhusudancs · 12 years ago
  30. 83f33fb Update the tests to set the IPAddress for result distribution socket. by madhusudancs · 12 years ago
  31. b6cd6db5 Update all the imports with the new locations and fix the method calls with argument changes. by madhusudancs · 12 years ago
  32. 117703a Complete the implementation of basic DatasetPartitionWriter class to work with the network layer. by madhusudancs · 12 years ago
  33. 1b6cfde Update the ResultWriterOperatorDescriptor to work with the new network layer implementation. by madhusudancs · 12 years ago
  34. 44faf47 Update the implementation of DatasetPartitionManger along with its interface to support the network communication completely. by madhusudancs · 12 years ago
  35. 586abd7 Create a separate datasetNetworkManager with its own socket (ipaddress and port) by madhusudancs · 12 years ago
  36. 07c1e8e Allow TCPEndpoints without listeners by overloading the required methods. by madhusudancs · 12 years ago
  37. b7fa154 Teach root pom.xml about the new projects and update the poms in other projects to include the required projects as dependencies. by madhusudancs · 12 years ago
  38. 69f0819 Implement a network manager for the dataset clients to talk to the result distributing nodes. by madhusudancs · 12 years ago
  39. 9b0469f Implement a network input channel for dataset clients to read the results over the network. by madhusudancs · 12 years ago
  40. a7ad48d Implement a separate network manager for result distribution in the NodeController. by madhusudancs · 12 years ago
  41. 7d57868 Create a new project called hyracks-comm and move the network channel communication related code there. by madhusudancs · 12 years ago
  42. 7e8e6d5 Create a new project called hyracks-client and move all the dataset api implementation classes into this new project. by madhusudancs · 12 years ago
  43. e3394aa Add an additional TODO comment for the global dataset directory information. by madhusudancs · 12 years ago
  44. c34a385 Replace the per job dataset directory service with a global directory service. by madhusudancs · 12 years ago
  45. 63231e4 Add the dataset service remote proxy file which I had accidentally missed in the previous commits. by madhusudancs · 12 years ago
  46. 2eff37f Remove the debug print statements. by madhusudancs · 12 years ago
  47. 377b400 Modify the SortMergeTest and the base AbstractTest to use the new result distribution mechanism. by madhusudancs · 12 years ago
  48. 2890358 Connect the whole get dataset directory service info and get result locations path from the client through the ClusterController by implementing the necessary RPC interfaces. by madhusudancs · 12 years ago
  49. 8c2c4c4 Connect the whole register result generating partition path from the NodeController through the ClusterController by implementing the necessary RPC interfaces. by madhusudancs · 12 years ago
  50. ddea760 Register the per application DatasetDirectoryService with the JobRun when the job starts. by madhusudancs · 12 years ago
  51. 3e22d90 Create a DatasetDirectoryService per application in the application context. by madhusudancs · 12 years ago
  52. 68a18f5 Implement a basic ResultWriterOperatorDescriptor. by madhusudancs · 12 years ago
  53. a049867 Create dataset partition manager at the time of instantiation of NodeControllerService and implement the methods for obtaining that from the task context. by madhusudancs · 12 years ago
  54. 5142c92 Implement the work classes for the RPCs for getting directory service info, getting the result partition locations and the node controller registering the result generating partitions. by madhusudancs · 12 years ago
  55. b9f0729 Implement the core DatasetDirectoryService class. by madhusudancs · 12 years ago
  56. ec9a3fd Implement the core basics of the per node controller dataset partition manager and writer. by madhusudancs · 12 years ago
  57. 9b57e9e Implement the basic API required for dataset result distribution. by madhusudancs · 12 years ago
  58. 67edd4b Created branch for result distribution in Hyracks by vinayakb · 12 years ago
  59. fe66916 update pom and ignore a test by buyingyi · 12 years ago
  60. c73348c move hivesterix codebase into hyracks fullstack by buyingyi · 12 years ago
  61. d321d58 Created branch for 0.2.3-SNAPSHOT development by vinayakb · 12 years ago
  62. 70c821c [maven-release-plugin] prepare for next development iteration by vinayakb · 12 years ago
  63. 4a6309b [maven-release-plugin] prepare release fullstack-0.2.2 by vinayakb · 12 years ago
  64. e3288f4 Added distribution management to all POMs by vinayakb · 12 years ago
  65. 6390e6b [maven-release-plugin] rollback the release of fullstack-0.2.2 by vinayakb · 12 years ago
  66. 7a8cb26 [maven-release-plugin] prepare for next development iteration by vinayakb · 12 years ago
  67. 671f31b [maven-release-plugin] prepare release fullstack-0.2.2 by vinayakb · 12 years ago
  68. a334a5c Updated release plugin version to 2.1 by vinayakb · 12 years ago
  69. 8557558 Removed SCM and distribution information from POMs by vinayakb · 12 years ago
  70. 5570ea3 [maven-release-plugin] rollback the release of fullstack-0.2.2 by vinayakb · 12 years ago
  71. 5d149c3 [maven-release-plugin] prepare for next development iteration by vinayakb · 12 years ago
  72. 551fd7d [maven-release-plugin] prepare release fullstack-0.2.2 by vinayakb · 12 years ago
  73. 8983d2b Fixed POM to contain repository information by vinayakb · 12 years ago
  74. d92366c Merged fullstack_staging branch into trunk by vinayakb · 12 years ago
  75. bc793b2 rename the ReachabilityVertex to fix a typo by buyingyi · 12 years ago
  76. 3d6d9f5 update the pom by buyingyi · 12 years ago
  77. 79268c8 fix the language problem in the getip script by buyingyi · 12 years ago
  78. abb43f6 update startDebugNc.sh script by buyingyi · 12 years ago
  79. dc1927c update getip script for macos by buyingyi · 12 years ago
  80. 1d22d26 update scripts by buyingyi · 12 years ago
  81. f0039cb update scripts by buyingyi · 12 years ago
  82. 6a12409 update scripts by buyingyi · 12 years ago
  83. f221618 update stopnc script by buyingyi · 12 years ago
  84. 11f2242 fix getting ip address in complex scenarios by buyingyi · 12 years ago
  85. 8d79d16 add a name to all hyracks subprojects by buyingyi · 12 years ago
  86. 6259805 make detailed timing output by buyingyi · 12 years ago
  87. 1188fd9 lower memory usage for tests by buyingyi · 12 years ago
  88. df9b0e1 lower the example cc xmx configuration. by buyingyi · 12 years ago
  89. 16b5e57 support default plan paramter by buyingyi · 12 years ago
  90. e56c69c fix the pregelix script to imporve the app deployment time by buyingyi · 12 years ago
  91. 18ac30d add start debug nc scripts, accroding to Hongzhi's feedback by buyingyi · 12 years ago
  92. 89e267a fix a minor issue of the stopnc script caught by Jarod by buyingyi · 12 years ago
  93. 932aa6f fix the startnc script for IPv6 by buyingyi · 12 years ago
  94. 7ad1f4c fix stopnc script for the issue Jarod reports by buyingyi · 12 years ago
  95. 89aa093 rename variables by buyingyi · 12 years ago
  96. e52c889 minor refactoring and more comments by buyingyi · 12 years ago
  97. a86496e add one more test for reachibility query by buyingyi · 12 years ago
  98. 2025ec0 add the reachibility query example by buyingyi · 12 years ago
  99. 8e7ff11 add missing files: support for non combiner jobs by buyingyi · 12 years ago
  100. 61672b5 add support for non combiner jobs by buyingyi · 12 years ago