summaryrefslogtreecommitdiff
path: root/src/mongo/db/sessions_collection_sharded.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-42508 Get rid of some additional unused code in SessionsCollectionKaloian Manassiev2019-10-311-31/+20
| | | | ... and also improve comments.
* SERVER-42508 Convert SessionsCollection to throw instead of return statusMarcos José Grillo Ramírez2019-10-301-31/+21
| | | | Change the remaining public functions: refreshSessions, removeRecords and findRemovedSessions
* SERVER-42508 Convert SessionsCollection to throw instead of return statusMarcos José Grillo Ramírez2019-10-291-3/+3
| | | | Change the return value of checkSessionsCollectionExists from Status to void and throws exception on error
* SERVER-42508 Convert SessionsCollection to throw instead of return status ↵Marcos José Grillo Ramírez2019-10-241-2/+3
| | | | Part One: setupSessionsCollection
* SERVER-37837 Get rid of TransactionReaper (Part 1)Kaloian Manassiev2019-05-091-3/+65
| | | | | | | | | This change gets rid of the TransactionReaper's usage of the ReplicationCoordinator for checking whether it is primary or not and makes the LogicalSessionCache joinable on shutdown. It also removes the TransactionReaper's grouping per-shard optimization and moves it all under SessionCollectionSharded.
* SERVER-37837 Move `config.transactions` manipulation out of SessionsCollectionKaloian Manassiev2019-05-021-5/+0
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-21/+23
|
* SERVER-36964 Prevent secondaries in SessionsCollectionRS from attempting to ↵Blake Oler2018-10-131-1/+5
| | | | set up the sessions collection.
* SERVER-36020 Redesign CursorResponseBuilder to allow usage of DocumentSequenceGregory Noma2018-07-241-3/+6
| | | | Co-authored-by: Anthony Roy <anthony.roy@10gen.com>
* SERVER-32198 Move the sessions collection namespace constant to NamespaceStringKaloian Manassiev2018-05-241-8/+8
|
* SERVER-34805 Refactor the network libraries and move messages types to ↵Andrew Morrow2018-05-051-1/+1
| | | | rpc/protocol
* SERVER-34773 Use kSessionsNamespaceString instead of its constituent ↵Kaloian Manassiev2018-05-021-7/+8
| | | | StringData entries
* SERVER-32677 Prevent sessions periodic refresh from prematurely accessing ↵Blake Oler2018-04-201-0/+5
| | | | sharding internals
* SERVER-29908 Consolidate some sharding libraries to help break dependency cyclesKaloian Manassiev2018-02-121-1/+1
|
* SERVER-32684 Make mongos write command objects hold Status directlyMathias Stearn2018-01-171-15/+2
|
* SERVER-32586 Convert ResolvedView to use ErrorExtraInfoMathias Stearn2018-01-171-7/+7
|
* SERVER-31629 Replace ErrorCodes::fromInt() with ErrorCodes::Error()Mathias Stearn2017-11-021-2/+2
| | | | | No reason to have two ways to express the same thing, and we can't get rid of ErrorCodes::Error().
* SERVER-31184 Make servers automatically set up config.system.sessionssamantharitter2017-10-111-0/+23
|
* SERVER-30731 Add expr support in MatchExpression outside of aggregationTess Avitabile2017-10-051-2/+1
|
* SERVER-28336 endSessions commandGabriel Russell2017-09-211-3/+2
|
* SERVER-31011 Provide transaction record deletion hookJason Carey2017-09-201-3/+9
|
* SERVER-30805 add LSC::findRemovedSessions()Jason Carey2017-08-311-0/+49
| | | | | Implements a findRemovedSessions method for the logical session collection and impls for the various backends.
* SERVER-29203 Implement SessionsCollectionShardedsamantharitter2017-08-181-0/+97