aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib
Commit message (Collapse)AuthorAgeFilesLines
* Reduce from warning to infoHenning Baldersheim2020-05-131-1/+1
|
* /proc/self/smaps is linux specific.Tor Egge2020-04-211-0/+4
|
* Disable some unit tests on Darwin.Tor Egge2020-04-141-2/+7
|
* Add control for kind_of_watermark and reaction time.Henning Baldersheim2020-04-065-8/+44
|
* Fix format string in SequencedTaskExecutor benchmark.Tor Egge2020-04-061-1/+2
|
* Fix merge conflict after revert.Henning Baldersheim2020-04-061-2/+2
|
* Merge branch 'master' into ↵Henning Baldersheim2020-04-052-13/+3
|\ | | | | | | balder/move-sequenced-task-executors-to-staging_vespalib
| * Revert "Balder/control naptime"Henning Baldersheim2020-04-052-13/+3
| |
* | Also allow for testing of the adaptive task executor.Henning Baldersheim2020-04-041-8/+13
| |
* | Move sequenced task executors to staging vespalibHenning Baldersheim2020-04-0418-0/+1627
|/
* Control nap timeHenning Baldersheim2020-04-042-3/+13
|
* pointre => pointerHenning Baldersheim2020-03-301-1/+1
|
* Avoid double lookup.Henning Baldersheim2020-03-302-12/+12
|
* Only start LRU mode once half fullHenning Baldersheim2020-03-291-1/+1
|
* Merge pull request #12727 from ↵Henning Baldersheim2020-03-262-13/+23
|\ | | | | | | | | vespa-engine/balder/let-optimize-flag-control-index-and-summary-executor-too Add shutdown to thread interface.
| * Add shutdown to thread interface.Henning Baldersheim2020-03-232-13/+23
| | | | | | | | Let the optimize config control index and summary executor too.
* | Unify the metrics for queuesize similar to what we have for the spi queues.Henning Baldersheim2020-03-252-8/+6
|/
* Use fundamental integer types in vespalib::visit.Tor Egge2020-03-222-16/+32
|
* Revert "Revert "Since the most important aspect our use of hash maps/sets is ↵Henning Baldersheim2020-03-202-20/+20
| | | | for spee…""
* Revert "Since the most important aspect our use of hash maps/sets is for ↵Harald Musum2020-03-202-20/+20
| | | | spee…"
* Merge pull request #12646 from ↵Henning Baldersheim2020-03-202-20/+20
|\ | | | | | | | | vespa-engine/balder/make-default-hashing-use-2N-and-instead-of-prime-mod Since the most important aspect our use of hash maps/sets is for spee…
| * Since the most important aspect our use of hash maps/sets is for speed we ↵Henning Baldersheim2020-03-202-20/+20
| | | | | | | | | | | | change from using prime numbers as table size and modulo to using 2^N and using simple AND.
* | Reserve space for vector.Henning Baldersheim2020-03-201-1/+1
|/ | | | Varoius code cleanup for c++11.
* - Use a single common lock.Henning Baldersheim2020-03-122-22/+39
| | | | | - Introduce 2 stage startSync/sync. - avoid loosing wakeup on sync.
* Use std::mutex/condition_variable.Henning Baldersheim2020-03-122-42/+28
| | | | Use shorter wait during sync, as that is urgent and synchronous.
* In order to drain Q faster on sync, and also detect that we are in sync faster,Henning Baldersheim2020-03-112-12/+39
| | | | we wake the consumer unconditionally on sync, and also unconditionally wake the producer when consumer is idle.
* Use aquire over relaxed.Henning Baldersheim2020-03-051-1/+1
|
* Use acquire/release semantics for _rpHenning Baldersheim2020-03-022-2/+2
|
* Use proper memory_orderingHenning Baldersheim2020-02-282-13/+16
|
* Thread safe on put.Henning Baldersheim2020-02-282-17/+21
|
* Add single threaded thoughput optimized executor with high and low watermark ↵Henning Baldersheim2020-02-276-0/+269
| | | | at 25% / 75%.
* Fix format string in ProcessMemoryStats::create method.Tor Egge2020-02-071-1/+1
|
* Increase memory sampling frequency to every 20s instead of every 60s in ↵Henning Baldersheim2020-02-051-0/+2
| | | | | | order to detect changes faster. Also log anomalies.
* Move the transaction implementation from StructuredFieldValue to DocumentHenning Baldersheim2020-01-231-4/+4
|
* c_str -> dataHenning Baldersheim2020-01-212-10/+10
|
* GC a load of unused code. ByteBuffer towards read only.Henning Baldersheim2020-01-202-2/+2
|
* Remove unused lambda capture in findMissing function.Tor Egge2020-01-091-2/+2
|
* Merge pull request #11705 from vespa-engine/arnej/use-visit-rangesArne H Juul2020-01-091-49/+27
|\ | | | | use vespalib::visitRanges
| * use vespalib::visitRangesArne Juul2020-01-081-49/+27
| |
* | Fix format strings.Tor Egge2020-01-071-1/+2
|/
* Drop all of TimeStamp too.Henning Baldersheim2019-12-161-21/+22
|
* fastos::TimeStamp -> vespalib::durationHenning Baldersheim2019-12-163-10/+11
|
* Convert to double before computations.Henning Baldersheim2019-12-162-21/+5
|
* No need to use explicit namespace here.Henning Baldersheim2019-12-162-2/+2
|
* Use std::chrono.Henning Baldersheim2019-12-096-38/+41
|
* Use std::chrono.Henning Baldersheim2019-12-095-17/+17
|
* Be xplicit.Henning Baldersheim2019-12-061-1/+1
|
* Replace UTCTimeStamp with std::chrono::system_clock::time_pointHenning Baldersheim2019-12-051-4/+5
|
* Äddress review comments.Henning Baldersheim2019-12-052-2/+2
|
* FastOS_THread::Sleep -> std::chrono::sleep_forHenning Baldersheim2019-12-048-49/+33
| | | | | Renamed Timer -> ScheduledExecutor. Do not include thread.h when not needed in header files.