summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Remove whitespaceHenning Baldersheim2018-08-124-28/+28
|
* Pass stringref by valueHenning Baldersheim2018-08-113-13/+13
|
* Pass stringref by valueHenning Baldersheim2018-08-104-29/+29
|
* Remove stringref::c_str()Tor Brede Vekterli2018-07-252-2/+2
| | | | | | | | | | | | | The expected semantics of c_str() (a null-terminated string) cannot be satisfied with a string reference, so remove the function entirely to prevent people from using it in buggy ways. Replaces c_str() with data() in places where it is presumed safe, otherwise constructs temporary string instances. Certain callsites have been de-stringref'd in favor of regular strings, in particular where C APIs have been transitively called. The vast majority of these were called with string parameters anyway, so should not cause much extra allocation.
* Merge pull request #6444 from vespa-engine/bratseth/java-model-inferenceJon Bratseth2018-07-233-5/+6
|\ | | | | Bratseth/java model inference
| * Model inference WIPJon Bratseth2018-07-053-5/+6
| |
* | Use the guava version from container-dep-versions everywhere.gjoranv2018-07-191-2/+0
| |
* | Add option for printing config in legacy formatHarald Musum2018-07-161-1/+5
| |
* | Replace 'tonytv' with full name in author tagsBjørn Christian Seime2018-07-052-2/+2
|/
* Remove Scala remnants from Maven build filesOlli Virtanen2018-06-251-5/+0
|
* Merge pull request #6180 from vespa-engine/arnej/use-log-abortHenning Baldersheim2018-06-212-2/+5
|\ | | | | use LOG_ABORT not just abort()
| * some more cleanupArne Juul2018-06-201-1/+1
| |
| * use LOG_ABORT not just abort()Arne Juul2018-06-121-1/+4
| | | | | | | | | | | | | | | | | | | | * abort() has the unfortunate effect that nothing is seen in the log, just an event (which is usually not displayed); so ops people don't see that the program is crashing at all. * LOG_ABORT("message") will log an error with the message (and the file and line) before calling abort(), so it's easy to see what happened. * add or move <vespa/log/log.h> include and LOG_SETUP lines before LOG_ABORT is used (or included).
* | Merge pull request #6243 from vespa-engine/bratseth/nonfunctional-changes-2gjoranv2018-06-2010-15/+45
|\ \ | | | | | | Nonfunctional changes
| * | Nonfunctional changesJon Bratseth2018-06-2010-15/+45
| |/
* / Propagate internalRedeploy to the RawConfig instanceJon Bratseth2018-06-202-0/+13
|/
* Merge pull request #6174 from vespa-engine/arnej/cleanup-old-mak-filesHenning Baldersheim2018-06-121-1/+0
|\ | | | | clean up remnants of .mak files
| * clean up remnants of .mak filesArne Juul2018-06-111-1/+0
| |
| * Add temporary loggingJon Bratseth2018-06-111-0/+1
| |
* | Update testsHarald Musum2018-06-102-5/+6
| |
* | Add internal redeploy flag to vespa-get-config debug outputHarald Musum2018-06-105-5/+11
|/
* Propagate internal redeployJon Bratseth2018-06-097-12/+10
|
* Correct parameter orderJon Bratseth2018-06-081-1/+1
|
* Explain validation overridesJon Bratseth2018-06-071-2/+2
|
* Test internalRedepoy persistenceJon Bratseth2018-06-015-4/+5
|
* Remove printlnJon Bratseth2018-06-011-1/+0
|
* Test no config when restart on redeployJon Bratseth2018-06-013-5/+7
|
* Test internalRedeploy propagation in config responsesJon Bratseth2018-06-017-14/+18
|
* Separate internal redeploys from application package changesJon Bratseth2018-06-0123-136/+244
| | | | | | | | | Separate system internal redeploys from application package changes such that we can ignore config updates originating from application package changes if restart on deploy is true, as the config change will be followed by a restart - but continue to effect config changes originating from internal system changes as those will not (and should not) be followed by a restart.
* Run reconfigurer thread even when restartOnRedeploy is trueJon Bratseth2018-05-301-1/+0
|
* Use fallthrough attributes.Tor Egge2018-05-272-2/+2
|
* move perl complexity to simpler shell functionArne Juul2018-05-181-23/+1
|
* update bootstrapArne Juul2018-05-162-6/+12
|
* update perl bootstrapArne Juul2018-05-141-0/+2
|
* update bootstrap section of scriptsArne Juul2018-05-142-0/+21
|
* Remove CachingSearcher and its Cache with SizeCalculatorgjoranv2018-05-041-6/+0
| | | | | | | | - The SizeCalculator uses recursive reflective calls in the object tree, and attempts illegal access to e.g. java.lang.module classes on Java 9+. With this access explicitly allowed via "--add-opens" the calculator returns a much larger size than the actual size of the object.
* Catch ReflectiveOperationException instead of subclasses.gjoranv2018-05-031-2/+1
|
* Replace usage of apis deprecated in Java 9.gjoranv2018-05-022-3/+5
|
* Java 9: Suppress deprecation warning for finalize()gjoranv2018-05-021-0/+1
|
* Revert "Revert "Gjoranv/java9 prep 05""gjoranv2018-05-021-3/+3
|
* Revert "Gjoranv/java9 prep 05"gjoranv2018-05-021-3/+3
|
* Java 9: Replace 'new Double' with 'Double.valueOf'gjoranv2018-05-011-1/+1
|
* Java 9: Replace 'new Long' with 'Long.valueOf'gjoranv2018-05-011-1/+1
|
* Java 9: Replace 'new Integer' with 'Integer.valueOf'gjoranv2018-04-301-1/+1
|
* Remove explicit maven-compiler-plugin config. Inherit from parent.gjoranv2018-04-251-8/+0
|
* handle VESPA_CONFIGSERVERSArne Juul2018-04-161-17/+23
| | | | | | | | * also some refactoring * also, make C++ code (in defaults) handle same variable variants, like services__addr_configserver * also, update some error messages to indicate that VESPA_CONFIGSERVERS is the variable we expected to use
* Revert "Revert "Balder/quick restart of slobrok""Henning Baldersheim2018-04-051-1/+1
|
* Revert "Balder/quick restart of slobrok"Henning Baldersheim2018-04-051-1/+1
|
* Giving up if it fails constructing the StateServer for a long enough period.Henning Baldersheim2018-04-051-1/+1
|
* Add TensorFlow variable converterJon Bratseth2018-03-081-3/+3
|