summaryrefslogtreecommitdiffstats
path: root/storageframework
Commit message (Collapse)AuthorAgeFilesLines
* Implement async putHenning Baldersheim2020-05-041-1/+1
| | | | Implement async remove.
* Revert "- Implement async put"Harald Musum2020-05-041-1/+1
|
* - Implement async putHenning Baldersheim2020-05-041-1/+1
| | | | | | - Move result processing to MessageTracker - Wire putAsync through provider error wrapper too. - Handle both sync and async replies in tests.
* Fix taskinfo printing in storageframework ticking thread test.Tor Egge2020-04-231-1/+1
|
* Remove test of error handling anti-patternTor Brede Vekterli2020-04-171-15/+0
| | | | | Invariant violations should be assertions and not exceptions, so no point in testing that this is handled gracefully.
* Code cleanup, no functional changesTor Brede Vekterli2020-04-172-49/+39
|
* Fix issues detected by clang 10.Tor Egge2020-02-141-1/+1
|
* FastOS_THread::Sleep -> std::chrono::sleep_forHenning Baldersheim2019-12-041-14/+16
| | | | | Renamed Timer -> ScheduledExecutor. Do not include thread.h when not needed in header files.
* time(0) to chrono::steady_clock.Henning Baldersheim2019-08-231-6/+2
|
* Remove CppUnit dependencies in modulesTor Brede Vekterli2019-06-261-1/+0
| | | | Move test config helpers out of cppunit submodule.
* Add missing includes.Tor Egge2019-06-111-0/+1
|
* Use ASSERT_TRUE() where appropriate.Geir Storli2019-05-271-1/+1
|
* Rewrite storageframework tests from cppunit to gtest.Geir Storli2019-05-275-129/+49
|
* Remove empty test.Geir Storli2019-05-275-37/+0
|
* stop using python script for cppunit testsArne Juul2019-03-261-3/+1
|
* Fix format string in storageframework module.Tor Egge2019-03-131-2/+2
|
* Add '()' to macro definition.Geir Storli2019-03-011-1/+1
|
* Simplify.Geir Storli2019-03-011-1/+0
|
* Reduce code duplication in gtest runners.Geir Storli2019-02-221-8/+2
|
* Add gtest runner in storageframework and migrate timetest from CppUnit to gtest.Geir Storli2019-02-185-48/+59
|
* Adjust forward declarations in storageframework.Tor Egge2019-02-038-14/+14
|
* Merge pull request #8109 from vespa-engine/vekterli/fix-tsan-detected-data-racesTor Brede Vekterli2019-01-152-3/+3
|\ | | | | Fix some ThreadSanitizer reported data races
| * Make thread interruption flag atomicTor Brede Vekterli2019-01-092-3/+3
| |
* | improve path/query handlingHåvard Pettersen2019-01-142-17/+40
|/ | | | | | - return attributes by value to avoid referencing deconstructed objects. - use path/query form portal request to avoid dequoting issues - log raw uri instead of dequoted non-parsed uri
* use portal in storage webserverHåvard Pettersen2019-01-022-18/+1
|
* remove legacy tags, always pass vectorArne Juul2018-10-081-1/+1
|
* Remove stringref::c_str()Tor Brede Vekterli2018-07-251-1/+1
| | | | | | | | | | | | | 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.
* use LOG_ABORT not just abort()Arne Juul2018-06-121-1/+3
| | | | | | | | | | * 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).
* clean up remnants of .mak filesArne Juul2018-06-111-1/+0
|
* Remove unused codeHenning Baldersheim2018-04-035-40/+4
|
* Let config enable global bucket space on startup for content nodeTor Brede Vekterli2018-01-111-5/+5
|
* Remove memory manager component from content layerTor Brede Vekterli2017-12-0433-2048/+1
| | | | | | | | | | | | | | We already have resource utilization tracking in both MessageBus and the search core. The memory manager has never been auto-scaled based on the hardware present and adds a _lot_ of complexity without having any known instances where it has actually saved the day. Removing it also removes a mutex on the message hot path. If we need such functionality in the future, should design a lock-free solution. Cleanup
* Use standard locking in StorageBucketDBInitializer.Tor Egge2017-11-242-0/+15
|
* Avoid that we miss a stop that happens while we are STARTING.Henning Baldersheim2017-10-131-6/+2
|
* Cleanup while looking for missing join.Henning Baldersheim2017-10-134-50/+32
|
* WE must listen to everyone who wants to stop.Henning Baldersheim2017-09-053-17/+6
|
* Include only what you need.Henning Baldersheim2017-08-185-31/+24
|
* Update copyright headersJon Bratseth2017-06-1483-83/+83
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1483-83/+83
|
* Update copyright headersJon Bratseth2017-06-1483-83/+83
|
* Revert "Copyright header"Jon Bratseth2017-06-1383-83/+83
|
* Copyright headerJon Bratseth2017-06-1383-83/+83
|
* split log and bufferedlogHenning Baldersheim2017-06-074-15/+8
|
* Forward declare XmlOutputStream and FieldValue::IteratorHandler.Henning Baldersheim2017-06-071-1/+1
|
* Removed storageframework.h from header files.Henning Baldersheim2017-06-0124-127/+51
|
* Use forward declarations to avoid pulling in the whole world when it is not ↵Henning Baldersheim2017-05-312-10/+4
| | | | necessary.
* If you can not reconfigure, just make a note of it and exit quicklyHenning Baldersheim2017-05-311-6/+5
|
* Transfer ownership.Haakon Dybdahl2017-05-231-1/+0
|
* Deinline as compiler makes the best choices.Henning Baldersheim2017-05-092-6/+7
|
* Add missing fileHenning Baldersheim2017-05-021-0/+32
|