You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			136 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Copyright (C) 2014 InfiniDB, Inc.
 | 
						|
 | 
						|
   This program is free software; you can redistribute it and/or
 | 
						|
   modify it under the terms of the GNU General Public License
 | 
						|
   as published by the Free Software Foundation; version 2 of
 | 
						|
   the License.
 | 
						|
 | 
						|
   This program is distributed in the hope that it will be useful,
 | 
						|
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
   GNU General Public License for more details.
 | 
						|
 | 
						|
   You should have received a copy of the GNU General Public License
 | 
						|
   along with this program; if not, write to the Free Software
 | 
						|
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 | 
						|
   MA 02110-1301, USA. */
 | 
						|
 | 
						|
/***************************************************************************
 | 
						|
 * $Id: sessionwalker.cpp 3072 2013-04-04 19:04:45Z rdempsey $
 | 
						|
 *
 | 
						|
 *   jrodriguez@calpont.com
 | 
						|
 *                                                                         *
 | 
						|
 ***************************************************************************/
 | 
						|
 | 
						|
#include <iostream>
 | 
						|
using namespace std;
 | 
						|
 | 
						|
#include "sessionmonitor.h"
 | 
						|
using namespace execplan;
 | 
						|
 | 
						|
#include "vendordmlstatement.h"
 | 
						|
#include "calpontdmlpackage.h"
 | 
						|
#include "calpontdmlfactory.h"
 | 
						|
using namespace dmlpackage;
 | 
						|
 | 
						|
#include "bytestream.h"
 | 
						|
#include "messagequeue.h"
 | 
						|
using namespace messageqcpp;
 | 
						|
 | 
						|
namespace
 | 
						|
{
 | 
						|
void usage()
 | 
						|
{
 | 
						|
  cout << "sessionwalker [-d|-h]" << endl
 | 
						|
       << "   -r rollback all transactions found" << endl
 | 
						|
       << "   -h display this help" << endl;
 | 
						|
}
 | 
						|
 | 
						|
void rollback(const SessionMonitor::MonSIDTIDEntry& txn)
 | 
						|
{
 | 
						|
  VendorDMLStatement dmlStmt("ROLLBACK;", txn.sessionid);
 | 
						|
  CalpontDMLPackage* pDMLPackage = CalpontDMLFactory::makeCalpontDMLPackage(dmlStmt);
 | 
						|
 | 
						|
  if (pDMLPackage == 0)
 | 
						|
  {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  ByteStream bytestream;
 | 
						|
  pDMLPackage->write(bytestream);
 | 
						|
  delete pDMLPackage;
 | 
						|
  MessageQueueClient mq("DMLProc");
 | 
						|
 | 
						|
  try
 | 
						|
  {
 | 
						|
    cout << "sending ROLLBACK for sessionID " << txn.sessionid << endl;
 | 
						|
    mq.write(bytestream);
 | 
						|
    bytestream = mq.read();
 | 
						|
  }
 | 
						|
  catch (...)
 | 
						|
  {
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  bool rflg = false;
 | 
						|
  opterr = 0;
 | 
						|
  int c;
 | 
						|
 | 
						|
  while ((c = getopt(argc, argv, "rh")) != EOF)
 | 
						|
    switch (c)
 | 
						|
    {
 | 
						|
      case 'r': rflg = true; break;
 | 
						|
 | 
						|
      case 'h':
 | 
						|
        usage();
 | 
						|
        return 0;
 | 
						|
        break;
 | 
						|
 | 
						|
      default:
 | 
						|
        usage();
 | 
						|
        return 1;
 | 
						|
        break;
 | 
						|
    }
 | 
						|
 | 
						|
  vector<SessionMonitor::MonSIDTIDEntry*> toTxns;
 | 
						|
  SessionMonitor* monitor = new SessionMonitor();
 | 
						|
 | 
						|
  toTxns.clear();
 | 
						|
  toTxns = monitor->timedOutTxns();  // get timed out txns
 | 
						|
 | 
						|
  vector<SessionMonitor::MonSIDTIDEntry*>::iterator iter = toTxns.begin();
 | 
						|
  vector<SessionMonitor::MonSIDTIDEntry*>::iterator end = toTxns.end();
 | 
						|
 | 
						|
  vector<SessionMonitor::MonSIDTIDEntry*> tmp;
 | 
						|
 | 
						|
  while (iter != end)
 | 
						|
  {
 | 
						|
    if ((*iter)->sessionid > 0)
 | 
						|
      tmp.push_back(*iter);
 | 
						|
 | 
						|
    ++iter;
 | 
						|
  }
 | 
						|
 | 
						|
  toTxns.swap(tmp);
 | 
						|
 | 
						|
  cout << toTxns.size() << " timed out transactions." << endl;
 | 
						|
 | 
						|
  for (unsigned idx = 0; idx < toTxns.size(); idx++)
 | 
						|
  {
 | 
						|
    monitor->printTxns(*toTxns[idx]);
 | 
						|
 | 
						|
    if (rflg)
 | 
						|
    {
 | 
						|
      rollback(*toTxns[idx]);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  delete monitor;
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 |