https://github.com/twitter/heron

sort by:
Revision Author Date Message Commit Date
52f2a31 added basics-java dependency to heron-storm jar 15 August 2017, 05:00:07 UTC
d4544c9 cleanup the dependencies for generating heron storm jar 14 August 2017, 05:07:22 UTC
c7fa60b Follow pythonic idiom of _ instead of camelCase in DSL (#2190) * Follow pythonic idiom of _ instead of camelCase in DSL * Fix build 13 August 2017, 01:58:14 UTC
ff36602 Follow Python idiom of using _ instead of camelCase (#2189) * Follow Python idiom of using _ instead of camelCase * Fixed dsl to follow stateful changes 12 August 2017, 16:58:40 UTC
b5d3291 HeronTupleSet needs src task id (#2187) 12 August 2017, 04:07:03 UTC
9714095 Certain information should be printed only in debug mode (#2186) 12 August 2017, 03:00:52 UTC
bc3d6d2 Fix import name in python examples (#2185) 12 August 2017, 03:00:06 UTC
afde0ac Create a connectors directory for spouts and bolts (sources/sinks) (#2176) * Create a connectors directory for spouts and bolts (sources/sinks) * Add subdirectories for connectors. * Moved from spouts to connectors 12 August 2017, 02:25:56 UTC
3af8305 Verify cluster name matches when submitting through apiserver. (#2184) 12 August 2017, 01:47:26 UTC
bfcf50d Add topology resource unit tests. (#2179) 11 August 2017, 22:00:24 UTC
0c10b1f Remove spi dependency from simulator since TopologyUtils moved from spi (#2182) 11 August 2017, 21:00:51 UTC
7c585ad Moved TopologyUtils from spi to common (#2180) * Moved TopologyUtils from spi to common * Fixed unittest 11 August 2017, 17:20:30 UTC
e1ed629 Add base framework for api server. (#2094) * Add base framework for api server. * Fix build issues. * Remove extra newlines. * add config files as resources into api server jar * package heron api server into tools * Implement submit/kill/activate/deactivate for the rest api server. * Remove excess logging and print statements from SubmitterMain. * Add help flag and remove println and hardcoded directory. * Add apiserver tests for the ConfigUtils. * Add user and verion params for submit topology. * Add release file flag for apiserver. The api server will read the, build version, build user and build tag from the release file and use those values for submitting topologies. * Set the submit_user when submitting a topology. * adding URL based handling in heron submit * Fix activate/deactivate/kill api paths in cli. * support multiple deployment modes * Return status 200 for a successful kill topology. * Catch exceptions as opposed to runtime exceptions in topology resources. * Update topology actions to check for status code 200. kill/activate/deactivate endpoints will return a http status code of 200 when successful. * fix printing debug information * Add script to start the api server. * package heron api server * get the actual binary since heron-apiserver is a symbolic link * Add base-template flag and method to find where the jar is installed. * Print error message if there is a parsing exception. * Add error message when server fails to start. * Update bind exception message. * Add port flag for api server. * added the service-url parameter * - Remove HERON_VERSION from docker files - Add error message reporting for service mode deployment * remove debug print out * Fix how yaml files are written to files. * Pass extra parameters to update and restart extra parameters Added exception handling for requests call * Apply submit overrides and add version endpoint. * Add restart rest endpoint. * append a list element instead of extending it * Add printing of args in debug mode * Add rest update endpoint. * Add verbose flag to apiserver. * Allow update to accept overrides. * Add more scheduler implementations. * sort the version items and print it * Add dryrun response for submit and update endpoints. * fix python command line errors * Fix api server activate handler. * fixed submission to local cluster * fix spelling mistake of function invocation * Remove api depenedency from apiserver build file. 10 August 2017, 19:13:00 UTC
414969c Force destroy Marathon group on topology kill (#2168) * Move uploader init above PackingPlan creation to fix NPE in case of bad PackingPlan * Alwayse use force=true on marathon group deletes * Fix style issues 10 August 2017, 16:58:01 UTC
e62daed Heron Python Code Cleanup (#2173) * First cut for packaging changes * Made all instance changes adhere to the new way of referring things * Fixed errors * Added dsl and spouts in instance * Undid unneeded changes * Added changes to heronpy generation * Removed unneeded files * Fixed build * Fixed generation * Fix integration tests * Fix unittest * Fix unittest 10 August 2017, 14:56:59 UTC
f9299d7 Fix JavaDoc for heron api Config (#2172) 10 August 2017, 07:26:31 UTC
5bcd357 Update pulsar to apache client. (#2171) 10 August 2017, 06:19:21 UTC
6b90739 Let Python instance die if it is not able to handle stmgr messages (#2167) 09 August 2017, 07:49:55 UTC
70212a4 Added docstrings to python dsl (#2166) 09 August 2017, 06:43:01 UTC
d7a68dc Refactor DSL by trimming streamlet class and pushing more code into individual operators (#2165) 09 August 2017, 01:23:05 UTC
07a5b01 Add kubernetes stateful config. (#2164) * Add kubernetes stateful config. * Add stateful key to heron internals. * Indent stateful config. 08 August 2017, 23:41:19 UTC
80b55e6 added update certificates for java (#2163) 08 August 2017, 20:45:20 UTC
80275f3 Fix NPE when logging exceptions that have no message using SLF4J (#2161) * Move uploader init above PackingPlan creation to fix NPE in case of bad PackingPlan * Untested (but probably working) fix for NPE crash * Set to empty string 07 August 2017, 23:55:45 UTC
fc73aa4 Dhalion: Add implementation for resolvers and health policy (#2162) * First Heron-Dhalion commit to enable topology auto-health-management * Add dhalion dependencies * Build and deploy health manager library * Add utility class to pull metrics from tracker * Connect PackingPlan and Topology providers to the StateMgr * Minor refactor for readability * Refactor code to use latest dhalion api * Add health policy config yaml * Add Heron main class for HealthManager * Fix any issues running HealthManager as a process * Assume all health policy configs to be strings * Isolate policy config specific guice modules * Add event handlers and invoke resolver actions * Fix dhalion package name change related errros * Use JsonPath to parse tracker response * Add bazel dependencies for json path * Replace tracker's metrics call with timeline call * Fix checkstyle errors * Use the Dhalion project's repo as binary source * Update dependencies as per update heron-common * Add sensors for BackPressure and ExecuteCount * Add BufferSizeSensor and refactor sensors * Minor refactor for readability * Refactor sensor code to use latest dhalion api * Make BackPressureSensor configurable, add high-pass-filter * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Added metric name to sensors * Fixed checkstyle errors * Mark HealthManager evolving, remove dead code, improve javadoc * Add sample config file for the HealthManager * Address review comment, use ConfigReader for yaml files * Fix checkstyle errors * Add detector for backpressure and basic diagnoser logic * Improve diagnoser accuracy using instance buffer sizes * Refactor code to use updated diagnoser api improve readability * Make BackPressure detector configurable and add tests * Fix names of symptoms and diagnosis instances * Add load disparity detector and refactor diagnosers * Add pending buffer size disparity anomaly detector * Add large pending buffers anomaly detector * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Add GrowingWaitQDetector * Fixed checkstyle errors * Refactored skew detectors, changed naming, added appropriate stats * Updated diagnosers to take into account more metrics and added new tests * Fixed checkstyle errors * Add DynamicResourceAllocation Policy * Isolate policy config specific guice modules * Add ScaleUpResolver * Connect DynamicResourceAllocationPolicy to resolvers * Add event handlers and invoke resolver actions * Remove blocking sleep call after any resolver action * Reuse Dhalions HealthPolicy to reduce code duplication * Fix dhalion package name change related errros * Add large pending buffers anomaly detector to policy * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Fixed checkstyle errors * Add metrics duration configuration for all sensors * Compute and provide buffer growth rate for all instances * Decouple HealthManager constructor and tracker Resolves a review comment * Remove interface for constants * Rename healthm so that it matches other components * Address review comments * Add dependency on full proto package instead of sub package * Refactor method consuming command line arguments * Avoid building health manager package Wait for the dhalion jar to be available on maven central before enabling health manager. Also fix healthmgr path in build scripts * Address review comments * Refactor code based on review comments in PR-1980 * Enable health manager build since dhalion is in maven now * Address review comments PR 2101 * Refactor after merging reviewed code * Fix checkstyle errors * Re-enable a detector test * Fix errors introduced by merging detector branch * Fix errors and refactor after merging master branch 07 August 2017, 22:53:37 UTC
4165cdf Added Pulsar Spout and Pulsar Streamlet (#2160) * Addded PulsarStreamlet for composing pulsar sourced python dsl * More changes to BUILD * Removed pulsar dep for now 06 August 2017, 16:32:45 UTC
5a3a8d7 Added exactly once semantics for python dsl (#2159) * Added exactly once semantics for python dsl * Fixed stateful stuff in window bolt 05 August 2017, 19:27:58 UTC
f001b7d Don't print topology context since it just prints a class pointer info (#2157) * Don't print topology context since it just prints a class pointer info * Fixed build 05 August 2017, 06:21:26 UTC
a6023c9 Misc Python fixes (#2158) * Misc Python fixes * Fix unittest 05 August 2017, 06:21:07 UTC
b015bc9 If an instance is not connected, stmgr server should return false while sending restore message (#2156) 05 August 2017, 03:57:12 UTC
7b6228c Sort the task ids to ensure that identical fields grouping tuples (#2155) end up in same task ids even accross runs 04 August 2017, 22:29:26 UTC
9b0e408 Make sure that metric registration and adding tasks are done once. (#2152) * Refactor spout/bolt code and make sure that metric registration and adding tasks are done once * Changed inited to initialized 04 August 2017, 19:12:45 UTC
e804c7e GetInstances will return only active instances. Instead we want to (#2148) get all local instances 04 August 2017, 09:53:03 UTC
511c5d7 Refactored common code by moving it to base instance (#2151) 04 August 2017, 09:49:34 UTC
51b01ee Correct the way we refer to the class member (#2150) * Correct the way we refer to the class member * Fix logic while handling restore state 04 August 2017, 03:59:45 UTC
8417fad Add MetricsCacheMetricsProvider (#2113) * add MetricsCache provider * update tracker url: add metrics cache url param * add metrics http reqeust/response * convert protobuf to dhalion * add test * fix error * fix comments * fix comment and compile 04 August 2017, 00:39:00 UTC
1389a84 Add Dhalion detectors and diagnoser implementation for heron (#2132) * First Heron-Dhalion commit to enable topology auto-health-management * Add dhalion dependencies * Build and deploy health manager library * Add utility class to pull metrics from tracker * Connect PackingPlan and Topology providers to the StateMgr * Minor refactor for readability * Refactor code to use latest dhalion api * Add health policy config yaml * Add Heron main class for HealthManager * Fix any issues running HealthManager as a process * Assume all health policy configs to be strings * Isolate policy config specific guice modules * Add event handlers and invoke resolver actions * Fix dhalion package name change related errros * Use JsonPath to parse tracker response * Add bazel dependencies for json path * Replace tracker's metrics call with timeline call * Fix checkstyle errors * Use the Dhalion project's repo as binary source * Update dependencies as per update heron-common * Add sensors for BackPressure and ExecuteCount * Add BufferSizeSensor and refactor sensors * Minor refactor for readability * Refactor sensor code to use latest dhalion api * Make BackPressureSensor configurable, add high-pass-filter * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Added metric name to sensors * Fixed checkstyle errors * Mark HealthManager evolving, remove dead code, improve javadoc * Add sample config file for the HealthManager * Address review comment, use ConfigReader for yaml files * Fix checkstyle errors * Add detector for backpressure and basic diagnoser logic * Improve diagnoser accuracy using instance buffer sizes * Refactor code to use updated diagnoser api improve readability * Make BackPressure detector configurable and add tests * Fix names of symptoms and diagnosis instances * Add load disparity detector and refactor diagnosers * Add pending buffer size disparity anomaly detector * Add large pending buffers anomaly detector * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Add GrowingWaitQDetector * Fixed checkstyle errors * Refactored skew detectors, changed naming, added appropriate stats * Updated diagnosers to take into account more metrics and added new tests * Fixed checkstyle errors * Add metrics duration configuration for all sensors * Compute and provide buffer growth rate for all instances * Decouple HealthManager constructor and tracker Resolves a review comment * Remove interface for constants * Rename healthm so that it matches other components * Address review comments * Add dependency on full proto package instead of sub package * Refactor method consuming command line arguments * Avoid building health manager package Wait for the dhalion jar to be available on maven central before enabling health manager. Also fix healthmgr path in build scripts * Address review comments * Refactor code based on review comments in PR-1980 * Enable health manager build since dhalion is in maven now * Address review comments PR 2101 * Refactor after merging reviewed code * Fix checkstyle errors * Re-enable a detector test 04 August 2017, 00:38:08 UTC
2428fe3 Use a default value for checkpoint interval if user does not specify it (#2147) 03 August 2017, 20:35:44 UTC
cf53f64 Fix the paths for local stateful storage (#2145) * Fix the paths for local stateful storage * Fix unittest 03 August 2017, 19:15:58 UTC
6d793f4 For debugging purporses count all words as 1 (#2144) 03 August 2017, 11:26:39 UTC
b431814 Corrected stateful checkpoint location (#2143) 03 August 2017, 11:26:16 UTC
6664154 Add a string method to print out the state (#2142) 03 August 2017, 01:25:17 UTC
c7f74dc Use appropriate method while manipulating state (#2141) 02 August 2017, 23:55:43 UTC
ef9233d Spout should read input tuples even in non acking mode (#2140) 02 August 2017, 23:39:01 UTC
d6b5f52 initialize instance state if it's null (#2138) 02 August 2017, 22:07:02 UTC
f4f3fd2 Register for stateful messages. Also make sure that state is not empty before parsing it (#2139) 02 August 2017, 22:04:28 UTC
c3172c9 Fix typo for reliability mode (#2137) 02 August 2017, 21:29:47 UTC
1c74b8a Initialize the instance state before open/prepare instance (#2134) 02 August 2017, 20:19:56 UTC
77d4f71 Add java doc gen for heron api, spi and storm (#2123) Signed-off-by: Ali Ahmed <a.ahmed@streaml.io> 02 August 2017, 19:08:24 UTC
8539aaa Added exactly once semantics for python (#2135) * Added StatefulComponent interface and exactly once semantics for python topologies * Handle the initiate checkpoint message * Start instance only after start stateful processing is received * Added support to handle restore message * Fix build * Added a stateful example * Added init file * Fixed bugs 02 August 2017, 17:36:00 UTC
8a1b7fe Cleanup of params (#2136) * topology submitting user is captured in the cli rather than in submitter main * fix trailing space * fix unit tests 02 August 2017, 09:00:10 UTC
e055ae4 update sendOutState (#2131) 01 August 2017, 01:47:46 UTC
d764d79 While unzipping pex files, don't overwrite existing files. (#2129) * While unzipping pex files, don't overwrite existing files. This is useful while running multi container topologies in local mode where multiple executors are unzipping the same file * Clean the working dir * Fixed unittest 31 July 2017, 23:00:02 UTC
22cd815 Use Java ver 8 as source and target version (#2130) * Use Java ver 8 as source and target version Signed-off-by: Ali Ahmed <a.ahmed@streaml.io> * Use Java ver 8 as source and target version Signed-off-by: Ali Ahmed <a.ahmed@streaml.io> * Use Java ver 8 as source and target version Signed-off-by: Ali Ahmed <a.ahmed@streaml.io> 31 July 2017, 22:37:32 UTC
18d6cab Add Dhalion-sensor implementation for heron (#2101) * First Heron-Dhalion commit to enable topology auto-health-management * Add dhalion dependencies * Build and deploy health manager library * Add utility class to pull metrics from tracker * Connect PackingPlan and Topology providers to the StateMgr * Minor refactor for readability * Refactor code to use latest dhalion api * Add health policy config yaml * Add Heron main class for HealthManager * Fix any issues running HealthManager as a process * Assume all health policy configs to be strings * Isolate policy config specific guice modules * Add event handlers and invoke resolver actions * Fix dhalion package name change related errros * Use JsonPath to parse tracker response * Add bazel dependencies for json path * Replace tracker's metrics call with timeline call * Fix checkstyle errors * Use the Dhalion project's repo as binary source * Update dependencies as per update heron-common * Add sensors for BackPressure and ExecuteCount * Add BufferSizeSensor and refactor sensors * Minor refactor for readability * Refactor sensor code to use latest dhalion api * Make BackPressureSensor configurable, add high-pass-filter * Fix checkstyle errors * Replace tracker's metrics call with timeline call * Added metric name to sensors * Fixed checkstyle errors * Mark HealthManager evolving, remove dead code, improve javadoc * Add sample config file for the HealthManager * Address review comment, use ConfigReader for yaml files * Fix checkstyle errors * Add metrics duration configuration for all sensors * Decouple HealthManager constructor and tracker Resolves a review comment * Remove interface for constants * Rename healthm so that it matches other components * Address review comments * Add dependency on full proto package instead of sub package * Refactor method consuming command line arguments * Avoid building health manager package Wait for the dhalion jar to be available on maven central before enabling health manager. Also fix healthmgr path in build scripts * Address review comments * Refactor code based on review comments in PR-1980 * Enable health manager build since dhalion is in maven now * Address review comments PR 2101 31 July 2017, 22:19:11 UTC
94556d7 limit stmgr client reconnect attempts (#2125) 31 July 2017, 18:31:42 UTC
f8eff84 Remove duplicate variable (#2127) 31 July 2017, 14:45:29 UTC
c94b0bf Print Command details only in verbose mode (#2126) * Print Command details only in verbose mode * Added more log statements under debug 30 July 2017, 05:45:03 UTC
eeb6285 Make instance send out state (#2120) 28 July 2017, 23:02:25 UTC
1c860dd register stateful processing messages with StreamManagerClient (#2119) 28 July 2017, 23:02:07 UTC
df0dd74 organize the docker directory (#2122) 28 July 2017, 18:02:11 UTC
d0de5d0 Added a new socket option to take the maximum packet size accepted (#2118) * Added a new socket option to take the maximum packet size accepted * Fixed unittest * Fixed var name 28 July 2017, 05:57:40 UTC
1fd6d7f add stateful support into Slave (#2106) 28 July 2017, 00:53:53 UTC
9724d44 Rename TupleStreamMessage2 to TupleStreamMessage for better comprehension (#2117) 27 July 2017, 18:53:00 UTC
f85b7a1 Remove TupleMessage2 since no one is using it (#2116) 27 July 2017, 17:37:23 UTC
b39b0fb Removed TupleStream proto structure since no one uses it (#2115) 27 July 2017, 16:21:44 UTC
e49c796 Removed TupleMessage since its obsolete (#2114) * Removed TupleMessage since its obsolete * Fix unit test 27 July 2017, 07:10:09 UTC
caf163f StreamManager never deals with TupleMessage (#2110) 27 July 2017, 00:21:43 UTC
6e16ce6 Removed TupleMessage usage in python instance because stmgr does not supports it (#2111) 27 July 2017, 00:21:27 UTC
412827b Fix previous AbstractTupleRoutingTest refactor (#2112) 26 July 2017, 19:14:29 UTC
7e389ed Removed dummy since no one uses it (#2108) 26 July 2017, 11:39:59 UTC
990b481 Renamed controller to tmaster_controller (#2107) * Renamed controller to tmaster_controller to avoid confusion with stateful_controller * Changed NULL to nullptr 26 July 2017, 06:41:29 UTC
f8f6a77 Introduce StatefulController in TMaster and handle all stateful messages (#2105) * Introduce StatefulController in TMaster and handle all stateful related messages * Address pr feedback 26 July 2017, 05:35:25 UTC
f558fae update queue with type Message (#2103) 25 July 2017, 22:37:14 UTC
94aebd8 Added ability in tmaster to accept stateful processing messages (#2102) from stmgr. 25 July 2017, 19:42:06 UTC
555d346 For stateful topologies, TMaster should connect with checkpoint manager (#2100) * For stateful topologies, TMaster should connect with checkpoint manager * Fixed executor unittest 25 July 2017, 18:15:04 UTC
936cebf packet size check (#2098) * add packet size check * add comment * re-use function 25 July 2017, 02:49:08 UTC
a9f68ea Dhalion health manager (#1980) * First Heron-Dhalion commit to enable topology auto-health-management * Add dhalion dependencies * Build and deploy health manager library * Add utility class to pull metrics from tracker * Connect PackingPlan and Topology providers to the StateMgr * Minor refactor for readability * Refactor code to use latest dhalion api * Add health policy config yaml * Add Heron main class for HealthManager * Fix any issues running HealthManager as a process * Assume all health policy configs to be strings * Isolate policy config specific guice modules * Add event handlers and invoke resolver actions * Fix dhalion package name change related errros * Use JsonPath to parse tracker response * Add bazel dependencies for json path * Replace tracker's metrics call with timeline call * Fix checkstyle errors * Use the Dhalion project's repo as binary source * Update dependencies as per update heron-common * Mark HealthManager evolving, remove dead code, improve javadoc * Add sample config file for the HealthManager * Address review comment, use ConfigReader for yaml files * Fix checkstyle errors * Decouple HealthManager constructor and tracker Resolves a review comment * Remove interface for constants * Rename healthm so that it matches other components * Address review comments * Add dependency on full proto package instead of sub package * Refactor method consuming command line arguments * Avoid building health manager package Wait for the dhalion jar to be available on maven central before enabling health manager. Also fix healthmgr path in build scripts * Address review comments 25 July 2017, 02:45:44 UTC
8a4336e add stateful controller into tmaster dir (#1973) * add stateful helper into tmaster * add unit test for stateful restorer * update * update * address comments * update metric name 25 July 2017, 01:26:08 UTC
223e4fa add clean stateful checkpoint handler into tcontroller (#2096) * add clean stateful checkpoint handler into tcontroller * address comments 24 July 2017, 23:42:51 UTC
f9bddff Introduce stateful restorer in stmgr. (#2091) * Introduce stateful restorer in stmgr. This allows stmgr to handle all checkpoint save/restore as well as exactly once messages * Added metrics to keep track of bytes/tuples discarded during restore 24 July 2017, 20:43:48 UTC
eefcd08 New API for topology reliability modes (#2089) * Added topology.reliability.mode to specify what reliability the user wants to run the topology in. This will deprecate the topology.acking, topology.stateful.enabled and topology.stateful.exactonce settings, thereby providing user with a single switch to control the topology behaviour * Fixed build * Made the value of topology.reliability.mode to be mirroring the names * Fixed integration build * Fixed integration test * Brought back setEnableAcking interface back to keep compat with Heron native topologies inside Twitter * Fixed old values of reliability mode * Marked deprecated fields/methods with annotations * Removed STATEFUL mode since there is still lack of clarity on what that means * Added comments that the suppresswarnings will go away once TOPOLOGY_ENABLE_ACKING goes away 21 July 2017, 01:51:48 UTC
e394660 Correct heap memory usage of stream manager (#2086) 20 July 2017, 17:43:31 UTC
a2ab64f Remove website build from Travis CI build (#2088) 20 July 2017, 00:43:21 UTC
c1facd5 Remove unused function (#2081) * Remove unused function * Deleted the whole file because no one uses it 19 July 2017, 22:43:55 UTC
2a1cf77 Move uploader init above PackingPlan creation to fix NPE in case of bad PackingPlan (#2083) 19 July 2017, 21:34:14 UTC
68d8d0e comment instead of removing (#2085) * try 1 * comment instead of removing it 19 July 2017, 21:23:48 UTC
4acd367 try 1 (#2084) 19 July 2017, 20:02:44 UTC
8fc4455 Limit number of messages in mempool, instead of total byte sizes (#2073) 19 July 2017, 05:55:32 UTC
f537a31 Do not log exception when OOM. (#2080) 19 July 2017, 05:44:22 UTC
b63478b Add Pulsar spout. (#2069) * Add Pulsar spout. * Reset pulsar metrics when getValueAndReset() is called. * Create a default client and consumer configuration. The default consumer configuration uses a shared subscription with a 60 second ack timeout so messages are replayed. 19 July 2017, 04:24:15 UTC
966a1d6 Instantiate ClientMgr in constructor (#2078) 18 July 2017, 20:25:28 UTC
6837b8e Instantiate checkpoint manager client in stmgr (#2076) * Instantiate checkpoint manager in stmgr * Fixed build * Fixed unittest 18 July 2017, 18:12:47 UTC
db60686 Added Stateful processing related message handling in TMasterClient (#2075) 18 July 2017, 05:10:14 UTC
a663d64 fix kafka spout HeapByteBuffer not serializable problem (#2063) 17 July 2017, 23:16:55 UTC
120cb2d Added stateful processing restore state machine to stmgr. (#2070) * Added stateful processing restore state machine to stmgr. * Added unittest for stateful restorer * Added config file as arg to the test * Added case to test dead instances while in restore * Added test case to check for ckptmgr restart * Added more comments to classes and methods 17 July 2017, 22:19:21 UTC
98e9c69 packaging python with all the modules (#2072) * python packaging * remove tree utility that shows the contents of the python package 17 July 2017, 16:18:47 UTC
20eb2b6 fix the comparison to be string rather than numerical (#2071) 15 July 2017, 01:04:39 UTC
0ec2490 change ci-docker.sh to use sh instead of bash (#2068) 14 July 2017, 22:26:39 UTC
7a1af1e Added stateful processing message handlers in stmgr-server (#2067) * Added stateful processing message handlers in stmgr-server * Made changes based on the feedback 14 July 2017, 22:13:53 UTC
32cf16d Remove API dep on c.t.h.common.basics.TypeUtils (#2061) 14 July 2017, 18:24:25 UTC
back to top