summaryrefslogtreecommitdiffstats
path: root/zkfacade
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Revert "Aressem/remove post install script""Arnstein Ressem2017-09-271-0/+2
|
* Revert "Aressem/remove post install script"Arnstein Ressem2017-09-271-2/+0
|
* Merge pull request #3556 from vespa-engine/hmusum/fix-messageValerij Fredriksen2017-09-271-1/+1
|\ | | | | Remove superfluous characters in exception message
| * Remove superfluous characters in exception messageHarald Musum2017-09-271-1/+1
| |
* | Remove global install of files and put this in the modules that owns them.Arnstein Ressem2017-09-251-0/+2
|/
* Revert "Freva/node admin shutdown"Valerij Fredriksen2017-09-221-2/+2
|
* Add locks to ComponentsProviderImplValerij Fredriksen2017-09-221-2/+2
|
* Revert "Upgrade to Curator 2.12.0"Harald Musum2017-09-1812-91/+51
|
* Upgrade to Curator 2.12.0Harald Musum2017-09-1512-51/+91
|
* Pass extra args in zkcli to ZooKeeperMainMartin Polden2017-09-141-1/+1
|
* Add preferred Orchestrator lockHåkon Hallingstad2017-09-062-8/+17
|
* Remove Netty by replacing cookie codec with Jetty + Java SEBjørn Christian Seime2017-09-011-5/+0
|
* Revert "Bjorncs/remove netty"Harald Musum2017-08-301-0/+5
|
* Remove Netty by replacing cookie codec with Jetty + Java SEBjørn Christian Seime2017-08-301-5/+0
|
* Revert "Remove Netty by replacing cookie codec with Jetty + Java SE"Henning Baldersheim2017-08-291-0/+5
|
* Remove Netty by replacing cookie codec with Jetty + Java SEBjørn Christian Seime2017-08-291-5/+0
|
* Create a mock lock in Lock when possibleJon Bratseth2017-08-081-1/+9
|
* Make curator locks functional within a runtimeJon Bratseth2017-07-041-10/+33
|
* Optimize importsJon Bratseth2017-07-041-1/+1
|
* Make mock accessibleJon Bratseth2017-07-041-0/+5
|
* Expose methodJon Bratseth2017-07-031-1/+5
|
* Nonfunctional changes onlyJon Bratseth2017-06-291-0/+1
|
* Simpler nameJon Bratseth2017-06-281-2/+2
|
* Move CuratorMutex to make it reusableJon Bratseth2017-06-281-0/+53
|
* Revert "Revert 2856 revert 2842 hmusum/shutdown zookeeper properly"Harald Musum2017-06-231-46/+19
|
* Shutdown correctly when running a zookeeper server standaloneHarald Musum2017-06-221-6/+13
|
* Revert "Revert "Shutdown zookeeper properly""Harald Musum2017-06-221-18/+38
|
* Revert "Shutdown zookeeper properly"Harald Musum2017-06-221-38/+18
|
* Shutdown zookeeper properlyHarald Musum2017-06-201-18/+38
|
* import getDefaultsArne H Juul2017-06-191-5/+5
|
* use underVespaHome()Arne H Juul2017-06-171-3/+3
|
* VESPA_HOME should not end with / anymoreArne H Juul2017-06-174-8/+0
| | | | | * best practice for HOME-like env vars is to be just the name of the directory without trailing slash.
* Update copyright headersJon Bratseth2017-06-1448-46/+48
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1448-48/+46
|
* Update copyright headersJon Bratseth2017-06-1448-46/+48
|
* Remove carriage returnJon Bratseth2017-06-142-2/+2
|
* Revert "Copyright header"Jon Bratseth2017-06-1348-50/+48
|
* Copyright headerJon Bratseth2017-06-1348-48/+50
|
* use VESPA_USER env varArne H Juul2017-06-081-1/+4
|
* Make sure to always set data for a node when creating itHarald Musum2017-05-021-2/+2
| | | | | * Curator library by default sets the data for a node to the IP address of the client that creates the node
* Add /nodes/v2/maintenanceJon Bratseth2017-04-251-0/+2
|
* Revert "Revert "Revert "Bump Curator version to 2.12.0"""Harald Musum2017-04-0412-91/+51
|
* Revert "Revert "Bump Curator version to 2.12.0""Harald Musum2017-04-0312-51/+91
|
* Catch exception in RemoteSession insteadHarald Musum2017-03-311-12/+1
|
* Handle NoNodeException for notifyInternalHarald Musum2017-03-311-1/+13
| | | | | | | | * This might happen if deploy prepare is returned successfully to client (majority of config servers have done prepare) and then client deletes application. The one config server that did not prepare will try to notify that it is finished but the path to the node it creates has gone when the application was deleted.
* Revert "Bump Curator version to 2.12.0"Harald Musum2017-03-2812-91/+51
|
* Bump Curator version to 2.12.0Harald Musum2017-03-2212-51/+91
|
* Add zkcli for interactive ZooKeeper shellHåkon Hallingstad2017-03-032-1/+64
|
* Split vespa_zkfacade__restrict on space tooJon Bratseth2017-01-291-3/+6
|
* return as expected but close the socketArne H Juul2016-11-151-10/+23
| | | | | | | | | | | | * rejecting a connection by throwing an exception didn't work in practice, we got gigabytes of NullPointerException warnings and the configserver couldn't respond to requests anymore. * instead, make the requested object normally, but check the SocketChannel and close it for traffic if it's not allowed before returning. This should make the normal handling of closed connections do cleanup for us. * Log any unexpected exceptions (since we're not quite sure where the NullPointerException came from).