summaryrefslogtreecommitdiff
path: root/src/mongo/db/extsort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/extsort.cpp')
-rw-r--r--src/mongo/db/extsort.cpp371
1 files changed, 46 insertions, 325 deletions
diff --git a/src/mongo/db/extsort.cpp b/src/mongo/db/extsort.cpp
index d955acb94cc..a25888c692e 100644
--- a/src/mongo/db/extsort.cpp
+++ b/src/mongo/db/extsort.cpp
@@ -14,343 +14,64 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* As a special exception, the copyright holders give permission to link the
+* code of portions of this program with the OpenSSL library under certain
+* conditions as described in each individual source file and distribute
+* linked combinations including the program with the OpenSSL library. You
+* must comply with the GNU Affero General Public License in all respects for
+* all of the code used other than as permitted herein. If you modify file(s)
+* with this exception, you may extend this exception to your version of the
+* file(s), but you are not obligated to do so. If you do not wish to do so,
+* delete this exception statement from your version. If you delete this
+* exception statement from all source files in the program, then also delete
+* it in the license file.
*/
-#include "mongo/pch.h"
+#include "mongo/platform/basic.h"
#include "mongo/db/extsort.h"
-#if defined(_WIN32)
-# include <io.h>
-#endif
-
-#include <boost/filesystem/convenience.hpp>
-#include <boost/filesystem/operations.hpp>
-#include <fcntl.h>
-#include <fstream>
-#include <sys/stat.h>
-#include <sys/types.h>
-
#include "mongo/db/kill_current_op.h"
-#include "mongo/db/namespace-inl.h"
-#include "mongo/platform/posix_fadvise.h"
-#include "mongo/util/file.h"
+#include "mongo/db/storage_options.h"
namespace mongo {
- HLMutex BSONObjExternalSorter::_extSortMutex("s");
- IndexInterface *BSONObjExternalSorter::extSortIdxInterface;
- Ordering BSONObjExternalSorter::extSortOrder( Ordering::make(BSONObj()) );
- bool BSONObjExternalSorter::extSortMayInterrupt( false );
- unsigned long long BSONObjExternalSorter::_compares = 0;
- unsigned long long BSONObjExternalSorter::_uniqueNumber = 0;
- static SimpleMutex _uniqueNumberMutex( "uniqueNumberMutex" );
-
- /*static*/
- int BSONObjExternalSorter::_compare(IndexInterface& i, const Data& l, const Data& r, const Ordering& order) {
- _compares++;
- int x = i.keyCompare(l.first, r.first, order);
- if ( x )
- return x;
- return l.second.compare( r.second );
- }
-
- /*static*/
- int BSONObjExternalSorter::extSortComp( const void *lv, const void *rv ) {
- DEV RARELY {
- _extSortMutex.dassertLocked(); // must be as we use a global var
- }
-#ifndef __sunos__
- // Some solaris gnu qsort implementations do not support callback exceptions.
- RARELY killCurrentOp.checkForInterrupt(!extSortMayInterrupt);
-#endif
- Data * l = (Data*)lv;
- Data * r = (Data*)rv;
- return _compare(*extSortIdxInterface, *l, *r, extSortOrder);
- };
-
- BSONObjExternalSorter::BSONObjExternalSorter( IndexInterface &i, const BSONObj & order , long maxFileSize )
- : _idxi(i), _order( order.getOwned() ) , _maxFilesize( maxFileSize ) ,
- _arraySize(1000000), _cur(0), _curSizeSoFar(0), _sorted(0) {
-
- stringstream rootpath;
- rootpath << dbpath;
- if ( dbpath[dbpath.size()-1] != '/' )
- rootpath << "/";
-
- unsigned long long thisUniqueNumber;
- {
- SimpleMutex::scoped_lock lk(_uniqueNumberMutex);
- thisUniqueNumber = _uniqueNumber;
- ++_uniqueNumber;
- }
- rootpath << "_tmp/esort." << time(0) << "." << thisUniqueNumber << "/";
- _root = rootpath.str();
-
- LOG(1) << "external sort root: " << _root.string() << endl;
-
- create_directories( _root );
- _compares = 0;
- }
-
- BSONObjExternalSorter::~BSONObjExternalSorter() {
- if ( _cur ) {
- delete _cur;
- _cur = 0;
- }
- unsigned long removed = remove_all( _root );
- wassert( removed == 1 + _files.size() );
- }
-
- void BSONObjExternalSorter::_sortInMem( bool mayInterrupt ) {
- // extSortComp needs to use glpbals
- // qsort_r only seems available on bsd, which is what i really want to use
- HLMutex::scoped_lock lk(_extSortMutex);
- extSortIdxInterface = &_idxi;
- extSortOrder = Ordering::make(_order);
- extSortMayInterrupt = mayInterrupt;
- _cur->sort( BSONObjExternalSorter::extSortComp );
- }
-
- void BSONObjExternalSorter::sort( bool mayInterrupt ) {
- uassert( 10048 , "already sorted" , ! _sorted );
-
- _sorted = true;
-
- if ( _cur && _files.size() == 0 ) {
- _sortInMem( mayInterrupt );
- LOG(1) << "\t\t not using file. size:" << _curSizeSoFar << " _compares:" << _compares << endl;
- return;
- }
-
- if ( _cur ) {
- finishMap( mayInterrupt );
- }
-
- if ( _cur ) {
- delete _cur;
- _cur = 0;
- }
-
- if ( _files.size() == 0 )
- return;
-
- }
-
- void BSONObjExternalSorter::add( const BSONObj& o, const DiskLoc& loc, bool mayInterrupt ) {
- uassert( 10049 , "sorted already" , ! _sorted );
-
- if ( ! _cur ) {
- _cur = new InMemory( _arraySize );
- }
-
- Data& d = _cur->getNext();
- d.first = o.getOwned();
- d.second = loc;
-
- long size = o.objsize();
- _curSizeSoFar += size + sizeof( DiskLoc ) + sizeof( BSONObj );
-
- if ( _cur->hasSpace() == false || _curSizeSoFar > _maxFilesize ) {
- finishMap( mayInterrupt );
- LOG(1) << "finishing map" << endl;
- }
-
- }
-
- void BSONObjExternalSorter::finishMap( bool mayInterrupt ) {
- uassert( 10050 , "bad" , _cur );
-
- _curSizeSoFar = 0;
- if ( _cur->size() == 0 )
- return;
-
- _sortInMem( mayInterrupt );
-
- stringstream ss;
- ss << _root.string() << "/file." << _files.size();
- string file = ss.str();
-
- // todo: it may make sense to fadvise that this not be cached so that building the index doesn't
- // eject other things the db is using from the file system cache. while we will soon be reading
- // this back, if it fit in ram, there wouldn't have been a need for an external sort in the first
- // place.
-
- ofstream out;
- out.open( file.c_str() , ios_base::out | ios_base::binary );
- assertStreamGood( 10051 , (string)"couldn't open file: " + file , out );
-
- int num = 0;
- for ( InMemory::iterator i=_cur->begin(); i != _cur->end(); ++i ) {
- Data p = *i;
- out.write( p.first.objdata() , p.first.objsize() );
- out.write( (char*)(&p.second) , sizeof( DiskLoc ) );
- num++;
- }
-
- _cur->clear();
+ namespace {
+ class ComparatorWithInterruptCheck {
+ public:
+ typedef pair<BSONObj, DiskLoc> Data;
- _files.push_back( file );
- out.close();
+ ComparatorWithInterruptCheck(const ExternalSortComparison* comp,
+ boost::shared_ptr<const bool> mayInterrupt)
+ : _comp(comp)
+ , _mayInterrupt(mayInterrupt)
+ {}
- LOG(2) << "Added file: " << file << " with " << num << "objects for external sort" << endl;
- }
-
- // ---------------------------------
-
- BSONObjExternalSorter::Iterator::Iterator( BSONObjExternalSorter * sorter ) :
- _cmp( sorter->_idxi, sorter->_order ) , _in( 0 ) {
-
- for ( list<string>::iterator i=sorter->_files.begin(); i!=sorter->_files.end(); i++ ) {
- _files.push_back( new FileIterator( *i ) );
- _stash.push_back( pair<Data,bool>( Data( BSONObj() , DiskLoc() ) , false ) );
- }
-
- if ( _files.size() == 0 && sorter->_cur ) {
- _in = sorter->_cur;
- _it = sorter->_cur->begin();
- }
- }
-
- BSONObjExternalSorter::Iterator::~Iterator() {
- for ( vector<FileIterator*>::iterator i=_files.begin(); i!=_files.end(); i++ )
- delete *i;
- _files.clear();
- }
-
- bool BSONObjExternalSorter::Iterator::more() {
-
- if ( _in )
- return _it != _in->end();
+ int operator() (const Data& l, const Data& r) const {
+ RARELY if (*_mayInterrupt) {
+ killCurrentOp.checkForInterrupt(!*_mayInterrupt);
+ }
- for ( vector<FileIterator*>::iterator i=_files.begin(); i!=_files.end(); i++ )
- if ( (*i)->more() )
- return true;
- for ( vector< pair<Data,bool> >::iterator i=_stash.begin(); i!=_stash.end(); i++ )
- if ( i->second )
- return true;
- return false;
- }
-
- BSONObjExternalSorter::Data BSONObjExternalSorter::Iterator::next() {
-
- if ( _in ) {
- Data& d = *_it;
- ++_it;
- return d;
- }
-
- Data best;
- int slot = -1;
-
- for ( unsigned i=0; i<_stash.size(); i++ ) {
-
- if ( ! _stash[i].second ) {
- if ( _files[i]->more() )
- _stash[i] = pair<Data,bool>( _files[i]->next() , true );
- else
- continue;
- }
-
- if ( slot == -1 || _cmp( best , _stash[i].first ) == 0 ) {
- best = _stash[i].first;
- slot = i;
+ return _comp->compare(l, r);
}
- }
-
- verify( slot >= 0 );
- _stash[slot].second = false;
-
- return best;
- }
-
- // -----------------------------------
-
- BSONObjExternalSorter::FileIterator::FileIterator( const std::string& file ) {
-#ifdef _WIN32
- _file = ::_open( file.c_str(), _O_BINARY | _O_RDWR | _O_CREAT , _S_IREAD | _S_IWRITE );
-#else
-#ifndef O_NOATIME
-#define O_NOATIME 0
-#endif
- _file = ::open( file.c_str(), O_CREAT | O_RDWR | O_NOATIME , S_IRUSR | S_IWUSR );
-#endif
- massert( 16392,
- str::stream() << "FileIterator can't open file: "
- << file << errnoWithDescription(),
- _file >= 0 );
-
-#ifdef POSIX_FADV_SEQUENTIAL
- int err = posix_fadvise(_file, 0, 0, POSIX_FADV_SEQUENTIAL );
- if ( err )
- log() << "posix_fadvise failed: " << err << endl;
-#endif
-
- _length = (unsigned long long)boost::filesystem::file_size( file );
- _readSoFar = 0;
- }
- BSONObjExternalSorter::FileIterator::~FileIterator() {
- if ( _file >= 0 ) {
-#ifdef _WIN32
- _close( _file );
-#else
- ::close( _file );
-#endif
- }
- }
-
- bool BSONObjExternalSorter::FileIterator::more() {
- return _readSoFar < _length;
- }
-
-
- bool BSONObjExternalSorter::FileIterator::_read( char* buf, long long count ) {
- long long total = 0;
- while ( total < count ) {
-#ifdef _WIN32
- long long now = ::_read( _file, buf, count );
-#else
- long long now = ::read( _file, buf, count );
-#endif
- if ( now < 0 ) {
- log() << "read failed for BSONObjExternalSorter " << errnoWithDescription() << endl;
- return false;
- }
- if ( now == 0 ) {
- return false;
- }
- total += now;
- buf += now;
- }
- return true;
- }
-
- BSONObjExternalSorter::Data BSONObjExternalSorter::FileIterator::next() {
- // read BSONObj
-
- int size;
- verify( _read( reinterpret_cast<char*>(&size), 4 ) );
- char* buf = reinterpret_cast<char*>( malloc( sizeof(unsigned) + size ) );
- verify( buf );
-
- memset( buf, 0, 4 ); // for Holder
- memcpy( buf+sizeof(unsigned), reinterpret_cast<char*>(&size), sizeof(int) ); // size of doc
- if ( ! _read( buf + sizeof(unsigned) + sizeof(int), size-sizeof(int) ) ) { // doc content
- free( buf );
- msgasserted( 16394, std::string("reading doc for external sort failed:") + errnoWithDescription() );
- }
-
- // read DiskLoc
- DiskLoc l;
- if ( ! _read( reinterpret_cast<char*>(&l), 8 ) ) {
- free( buf );
- msgasserted( 16393, std::string("reading DiskLoc for external sort failed") + errnoWithDescription() );
- }
- _readSoFar += 8 + size;
-
- BSONObj::Holder* h = reinterpret_cast<BSONObj::Holder*>(buf);
- return Data( BSONObj(h), l );
- }
-
+ private:
+ const ExternalSortComparison* _comp;
+ boost::shared_ptr<const bool> _mayInterrupt;
+ };
+ }
+
+ BSONObjExternalSorter::BSONObjExternalSorter(const ExternalSortComparison* comp,
+ long maxFileSize)
+ : _mayInterrupt(boost::make_shared<bool>(false))
+ , _sorter(Sorter<BSONObj, DiskLoc>::make(
+ SortOptions().TempDir(storageGlobalParams.dbpath + "/_tmp")
+ .ExtSortAllowed()
+ .MaxMemoryUsageBytes(maxFileSize),
+ ComparatorWithInterruptCheck(comp, _mayInterrupt)))
+ {}
}
+
+#include "mongo/db/sorter/sorter.cpp"
+MONGO_CREATE_SORTER(mongo::BSONObj, mongo::DiskLoc, mongo::ComparatorWithInterruptCheck);