summaryrefslogtreecommitdiff
path: root/same/src/main/java/com
AgeCommit message (Collapse)Author
2012-05-02Disable RPC logging per default.Kjetil Ørbekk
RPC logging is really slow and should only be used for debugging.
2012-05-02Add CyclicCountDownLatch.Kjetil Ørbekk
(You may not want to use this.)
2012-05-01Add license header to all source files.Kjetil Ørbekk
2012-05-01Fix interrupt handling in VariableUpdaterTask.Kjetil Ørbekk
2012-05-01Fix DelayedOperation.Kjetil Ørbekk
Use a CountDownLatch instead of manual synchronization.
2012-05-01Add SystemService.Kjetil Ørbekk
The SystemService is meant for debugging commands. It currently supports GetSystemStatus() which prints the state of all components.
2012-05-01Enable RPC logging.Kjetil Ørbekk
2012-05-01Remove too verbose logging in State.Kjetil Ørbekk
2012-04-30Fix threading bug.Kjetil Ørbekk
2012-04-30Send state updates after master takeover.Kjetil Ørbekk
2012-04-30Fix error handling in ConnectionManagerImpl.Kjetil Ørbekk
2012-04-30Make fields final in ResponseHandler.Kjetil Ørbekk
2012-04-30Add master kill switch.Kjetil Ørbekk
2012-04-25Fix SameController.0.5Kjetil Ørbekk
– Register network from master controller. – Make fields final.
2012-04-25Make sure to report the *correct* failed master.Kjetil Ørbekk
2012-04-25Fix thread starvation bug in Client.Kjetil Ørbekk
2012-04-25Add RpcFactory.Kjetil Ørbekk
2012-04-25Add debug messages in Paxos service.Kjetil Ørbekk
– Remove old PaxosService.
2012-04-25Set timeouts for all RPCs.Kjetil Ørbekk
Implemented with an RpcFactory.
2012-04-24Remove Broadcaster.Kjetil Ørbekk
– Broadcaster is not needed anymore with asynchronous RPC.
2012-04-24Remove unused code.Kjetil Ørbekk
– Remove old HTTP code. – Remove Jetty, Jsonrpc and servlet dependencies. – Remove state viewer servlet. – Remove unmaintained tests (rely on functional tests instead).
2012-04-24Fix off-by-one error in MasterProposer.Kjetil Ørbekk
2012-04-24Remember to register client service.Kjetil Ørbekk
2012-04-24Remove unused code.Kjetil Ørbekk
2012-04-24Fix master takeover code.Kjetil Ørbekk
– Use the new services to send a MasterTakeover(). – Remove some old broadcast code. – Remove MasterProposerTest because this functionality is well enough covered by the functional test. – Remove HTTP services from PaxosServiceFunctionalTest. – Fix master takeover test.
2012-04-24Switch to protobuf based Paxos in functional test.Kjetil Ørbekk
2012-04-24Fix compiler error in Client.Kjetil Ørbekk
2012-04-24Asynchronous paxos client using the protobuf interface.Kjetil Ørbekk
2012-04-24Add protobuf version of Paxos service.Kjetil Ørbekk
2012-04-17Master→Client communication uses protobuf services.Kjetil Ørbekk
– This change causes inconsistency in the .participants list and as a result some Paxos related tests run infinitely.
2012-04-17Master sends update requests using protobuf service.Kjetil Ørbekk
2012-04-17Client.startMasterElection() uses protobuf service.Kjetil Ørbekk
2012-04-17Client registers with protobuf service location.Kjetil Ørbekk
2012-04-17Add 'location' field to ClientState.Kjetil Ørbekk
This field will hold the location of the client service.
2012-04-17Add new participants list.Kjetil Ørbekk
The new list, '.participants0' will hold the location of the protobuf services of clients.
2012-04-17Add Services.Client to ConnectionManager.Kjetil Ørbekk
2012-04-11Client → Master communication now only protobuf-rpc.Kjetil Ørbekk
2012-04-11Use new RPC in Client.joinNetwork().Kjetil Ørbekk
2012-04-11Change Client.joinNetwork.Kjetil Ørbekk
Take MasterState instead of a simple URL.
2012-04-11Add "masterLocation" variable.Kjetil Ørbekk
This is the protobuffer service location for the master.
2012-04-11Same hosts a protobuf server.Kjetil Ørbekk
2012-04-11Rename NewRpcChannel => RpcChannel.Kjetil Ørbekk
2012-04-11Register network when it is created.Kjetil Ørbekk
2012-04-11Remove old DirectoryService.Kjetil Ørbekk
2012-04-11Use Rpc.await() functionality.Kjetil Ørbekk
2012-04-10Convert Directory service to using a protobuffer based service.Kjetil Ørbekk
2012-04-10Add protobuf Master service.Kjetil Ørbekk
2012-04-10Always run done() in protobuf services.Kjetil Ørbekk
2012-04-10Add protobuf based Client service.protobuf-benchmarkKjetil Ørbekk
Use the new service internally in Client.
2012-04-09Run benchmark from Activities.Kjetil Ørbekk