HugoTransactions.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:57k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "HugoTransactions.hpp"
  14. #include <NdbSleep.h>
  15. HugoTransactions::HugoTransactions(const NdbDictionary::Table& _tab):
  16.   HugoOperations(_tab),
  17.   row(_tab){
  18.   m_defaultScanUpdateMethod = 3;
  19. }
  20. HugoTransactions::~HugoTransactions(){
  21.   deallocRows();
  22. }
  23. int
  24. HugoTransactions::scanReadRecords(Ndb* pNdb, 
  25.   int records,
  26.   int abortPercent,
  27.   int parallelism, 
  28.   NdbOperation::LockMode lm)
  29. {
  30.   
  31.   int                  retryAttempt = 0;
  32.   const int            retryMax = 100;
  33.   int                  check, a;
  34.   NdbScanOperation        *pOp;
  35.   while (true){
  36.     if (retryAttempt >= retryMax){
  37.       g_err << "ERROR: has retried this operation " << retryAttempt 
  38.     << " times, failing!" << endl;
  39.       return NDBT_FAILED;
  40.     }
  41.     pTrans = pNdb->startTransaction();
  42.     if (pTrans == NULL) {
  43.       const NdbError err = pNdb->getNdbError();
  44.       if (err.status == NdbError::TemporaryError){
  45. ERR(err);
  46. NdbSleep_MilliSleep(50);
  47. retryAttempt++;
  48. continue;
  49.       }
  50.       ERR(err);
  51.       return NDBT_FAILED;
  52.     }
  53.     pOp = pTrans->getNdbScanOperation(tab.getName());
  54.     if (pOp == NULL) {
  55.       ERR(pTrans->getNdbError());
  56.       closeTransaction(pNdb);
  57.       return NDBT_FAILED;
  58.     }
  59.     NdbResultSet * rs;
  60.     rs = pOp ->readTuples(lm);
  61.     if( rs == 0 ) {
  62.       ERR(pTrans->getNdbError());
  63.       closeTransaction(pNdb);
  64.       return NDBT_FAILED;
  65.     }
  66.     
  67.     check = pOp->interpret_exit_ok();
  68.     if( check == -1 ) {
  69.       ERR(pTrans->getNdbError());
  70.       closeTransaction(pNdb);
  71.       return NDBT_FAILED;
  72.     }
  73.   
  74.     for(a = 0; a<tab.getNoOfColumns(); a++){
  75.       if((row.attributeStore(a) = 
  76.   pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  77. ERR(pTrans->getNdbError());
  78. closeTransaction(pNdb);
  79. return NDBT_FAILED;
  80.       }
  81.     }
  82.     check = pTrans->execute(NoCommit);
  83.     if( check == -1 ) {
  84.       const NdbError err = pTrans->getNdbError();
  85.       if (err.status == NdbError::TemporaryError){
  86. ERR(err);
  87. closeTransaction(pNdb);
  88. NdbSleep_MilliSleep(50);
  89. retryAttempt++;
  90. continue;
  91.       }
  92.       ERR(err);
  93.       closeTransaction(pNdb);
  94.       return NDBT_FAILED;
  95.     }
  96.     // Abort after 1-100 or 1-records rows
  97.     int ranVal = rand();
  98.     int abortCount = ranVal % (records == 0 ? 100 : records); 
  99.     bool abortTrans = false;
  100.     if (abort > 0){
  101.       // Abort if abortCount is less then abortPercent 
  102.       if (abortCount < abortPercent) 
  103. abortTrans = true;
  104.     }
  105.     
  106.     int eof;
  107.     int rows = 0;
  108.     while((eof = rs->nextResult(true)) == 0){
  109.       rows++;
  110.       if (calc.verifyRowValues(&row) != 0){
  111. closeTransaction(pNdb);
  112. return NDBT_FAILED;
  113.       }
  114.       if (abortCount == rows && abortTrans == true){
  115. ndbout << "Scan is aborted" << endl;
  116. g_info << "Scan is aborted" << endl;
  117. rs->close();
  118. if( check == -1 ) {
  119.   ERR(pTrans->getNdbError());
  120.   closeTransaction(pNdb);
  121.   return NDBT_FAILED;
  122. }
  123. closeTransaction(pNdb);
  124. return NDBT_OK;
  125.       }
  126.     }
  127.     if (eof == -1) {
  128.       const NdbError err = pTrans->getNdbError();
  129.       
  130.       if (err.status == NdbError::TemporaryError){
  131. ERR_INFO(err);
  132. closeTransaction(pNdb);
  133. NdbSleep_MilliSleep(50);
  134. switch (err.code){
  135. case 488:
  136. case 245:
  137. case 490:
  138.   // Too many active scans, no limit on number of retry attempts
  139.   break;
  140. default:
  141.   retryAttempt++;
  142. }
  143. continue;
  144.       }
  145.       ERR(err);
  146.       closeTransaction(pNdb);
  147.       return NDBT_FAILED;
  148.     }
  149.     closeTransaction(pNdb);
  150.     g_info << rows << " rows have been read" << endl;
  151.     if (records != 0 && rows != records){
  152.       g_err << "Check expected number of records failed" << endl 
  153.     << "  expected=" << records <<", " << endl
  154.     << "  read=" << rows << endl;
  155.       return NDBT_FAILED;
  156.     }
  157.     
  158.     return NDBT_OK;
  159.   }
  160.   return NDBT_FAILED;
  161. }
  162. int
  163. HugoTransactions::scanReadRecords(Ndb* pNdb, 
  164.   const NdbDictionary::Index * pIdx,
  165.   int records,
  166.   int abortPercent,
  167.   int parallelism, 
  168.   NdbOperation::LockMode lm,
  169.   bool sorted)
  170. {
  171.   
  172.   int                  retryAttempt = 0;
  173.   const int            retryMax = 100;
  174.   int                  check, a;
  175.   NdbIndexScanOperation        *pOp;
  176.   while (true){
  177.     if (retryAttempt >= retryMax){
  178.       g_err << "ERROR: has retried this operation " << retryAttempt 
  179.     << " times, failing!" << endl;
  180.       return NDBT_FAILED;
  181.     }
  182.     pTrans = pNdb->startTransaction();
  183.     if (pTrans == NULL) {
  184.       const NdbError err = pNdb->getNdbError();
  185.       if (err.status == NdbError::TemporaryError){
  186. ERR(err);
  187. NdbSleep_MilliSleep(50);
  188. retryAttempt++;
  189. continue;
  190.       }
  191.       ERR(err);
  192.       return NDBT_FAILED;
  193.     }
  194.     pOp = pTrans->getNdbIndexScanOperation(pIdx->getName(), tab.getName());
  195.     if (pOp == NULL) {
  196.       ERR(pTrans->getNdbError());
  197.       closeTransaction(pNdb);
  198.       return NDBT_FAILED;
  199.     }
  200.     NdbResultSet * rs;
  201.     rs = pOp ->readTuples(lm, 0, parallelism, sorted);
  202.     if( rs == 0 ) {
  203.       ERR(pTrans->getNdbError());
  204.       closeTransaction(pNdb);
  205.       return NDBT_FAILED;
  206.     }
  207.     
  208.     check = pOp->interpret_exit_ok();
  209.     if( check == -1 ) {
  210.       ERR(pTrans->getNdbError());
  211.       closeTransaction(pNdb);
  212.       return NDBT_FAILED;
  213.     }
  214.   
  215.     for(a = 0; a<tab.getNoOfColumns(); a++){
  216.       if((row.attributeStore(a) = 
  217.   pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  218. ERR(pTrans->getNdbError());
  219. closeTransaction(pNdb);
  220. return NDBT_FAILED;
  221.       }
  222.     }
  223.     check = pTrans->execute(NoCommit);
  224.     if( check == -1 ) {
  225.       const NdbError err = pTrans->getNdbError();
  226.       if (err.status == NdbError::TemporaryError){
  227. ERR(err);
  228. closeTransaction(pNdb);
  229. NdbSleep_MilliSleep(50);
  230. retryAttempt++;
  231. continue;
  232.       }
  233.       ERR(err);
  234.       closeTransaction(pNdb);
  235.       return NDBT_FAILED;
  236.     }
  237.     // Abort after 1-100 or 1-records rows
  238.     int ranVal = rand();
  239.     int abortCount = ranVal % (records == 0 ? 100 : records); 
  240.     bool abortTrans = false;
  241.     if (abort > 0){
  242.       // Abort if abortCount is less then abortPercent 
  243.       if (abortCount < abortPercent) 
  244. abortTrans = true;
  245.     }
  246.     
  247.     int eof;
  248.     int rows = 0;
  249.     while((eof = rs->nextResult(true)) == 0){
  250.       rows++;
  251.       if (calc.verifyRowValues(&row) != 0){
  252. closeTransaction(pNdb);
  253. return NDBT_FAILED;
  254.       }
  255.       if (abortCount == rows && abortTrans == true){
  256. ndbout << "Scan is aborted" << endl;
  257. g_info << "Scan is aborted" << endl;
  258. rs->close();
  259. if( check == -1 ) {
  260.   ERR(pTrans->getNdbError());
  261.   closeTransaction(pNdb);
  262.   return NDBT_FAILED;
  263. }
  264. closeTransaction(pNdb);
  265. return NDBT_OK;
  266.       }
  267.     }
  268.     if (eof == -1) {
  269.       const NdbError err = pTrans->getNdbError();
  270.       
  271.       if (err.status == NdbError::TemporaryError){
  272. ERR_INFO(err);
  273. closeTransaction(pNdb);
  274. NdbSleep_MilliSleep(50);
  275. switch (err.code){
  276. case 488:
  277. case 245:
  278. case 490:
  279.   // Too many active scans, no limit on number of retry attempts
  280.   break;
  281. default:
  282.   retryAttempt++;
  283. }
  284. continue;
  285.       }
  286.       ERR(err);
  287.       closeTransaction(pNdb);
  288.       return NDBT_FAILED;
  289.     }
  290.     closeTransaction(pNdb);
  291.     g_info << rows << " rows have been read" << endl;
  292.     if (records != 0 && rows != records){
  293.       g_err << "Check expected number of records failed" << endl 
  294.     << "  expected=" << records <<", " << endl
  295.     << "  read=" << rows << endl;
  296.       return NDBT_FAILED;
  297.     }
  298.     
  299.     return NDBT_OK;
  300.   }
  301.   return NDBT_FAILED;
  302. }
  303. #define RESTART_SCAN 99
  304. int
  305. HugoTransactions::scanUpdateRecords(Ndb* pNdb, 
  306.     int records,
  307.     int abortPercent,
  308.     int parallelism){
  309.   if(m_defaultScanUpdateMethod == 1){
  310.     return scanUpdateRecords1(pNdb, records, abortPercent, parallelism);
  311.   } else if(m_defaultScanUpdateMethod == 2){
  312.     return scanUpdateRecords2(pNdb, records, abortPercent, parallelism);
  313.   } else {
  314.     return scanUpdateRecords3(pNdb, records, abortPercent, parallelism);
  315.   }
  316. }
  317. // Scan all records exclusive and update 
  318. // them one by one
  319. int
  320. HugoTransactions::scanUpdateRecords1(Ndb* pNdb, 
  321.      int records,
  322.      int abortPercent,
  323.      int parallelism){
  324. #if 1
  325.   return scanUpdateRecords3(pNdb, records, abortPercent, 1);
  326. #else
  327.   int                  retryAttempt = 0;
  328.   const int            retryMax = 100;
  329.   int check, a;
  330.   NdbOperation *pOp;
  331.   while (true){
  332.     if (retryAttempt >= retryMax){
  333.       g_info << "ERROR: has retried this operation " << retryAttempt 
  334.      << " times, failing!" << endl;
  335.       return NDBT_FAILED;
  336.     }
  337.     pTrans = pNdb->startTransaction();
  338.     if (pTrans == NULL) {
  339.       const NdbError err = pNdb->getNdbError();
  340.       if (err.status == NdbError::TemporaryError){
  341. ERR(err);
  342. NdbSleep_MilliSleep(50);
  343. retryAttempt++;
  344. continue;
  345.       }
  346.       ERR(err);
  347.       return NDBT_FAILED;
  348.     }
  349.     pOp = pTrans->getNdbOperation(tab.getName());
  350.     if (pOp == NULL) {
  351.       ERR(pTrans->getNdbError());
  352.       closeTransaction(pNdb);
  353.       return NDBT_FAILED;
  354.     }
  355.     check = pOp->openScanExclusive(parallelism);
  356.     if( check == -1 ) {
  357.       ERR(pTrans->getNdbError());
  358.       closeTransaction(pNdb);
  359.       return NDBT_FAILED;
  360.     }
  361.     check = pOp->interpret_exit_ok();
  362.     if( check == -1 ) {
  363.       ERR(pTrans->getNdbError());
  364.       closeTransaction(pNdb);
  365.       return NDBT_FAILED;
  366.     }
  367.     // Read all attributes from this table    
  368.     for(a=0; a<tab.getNoOfColumns(); a++){
  369.       if((row.attributeStore(a) = pOp->getValue(tab.getColumn(a)->getName())) == NULL){
  370. ERR(pTrans->getNdbError());
  371. closeTransaction(pNdb);
  372. return NDBT_FAILED;
  373.       }
  374.     }
  375.     check = pTrans->executeScan();   
  376.     if( check == -1 ) {
  377.       const NdbError err = pTrans->getNdbError();
  378.       if (err.status == NdbError::TemporaryError){
  379. ERR(err);
  380. closeTransaction(pNdb);
  381. NdbSleep_MilliSleep(50);
  382. retryAttempt++;
  383. continue;
  384.       }
  385.       ERR(err);
  386.       closeTransaction(pNdb);
  387.       return NDBT_FAILED;
  388.     }
  389.     // Abort after 1-100 or 1-records rows
  390.     int ranVal = rand();
  391.     int abortCount = ranVal % (records == 0 ? 100 : records); 
  392.     bool abortTrans = false;
  393.     if (abort > 0){
  394.       // Abort if abortCount is less then abortPercent 
  395.       if (abortCount < abortPercent) 
  396. abortTrans = true;
  397.     }
  398.   
  399.     int eof;
  400.     int rows = 0;
  401.     eof = pTrans->nextScanResult();
  402.     while(eof == 0){
  403.       rows++;
  404.       
  405.       if (abortCount == rows && abortTrans == true){
  406. g_info << "Scan is aborted" << endl;
  407. // This scan should be aborted
  408. check = pTrans->stopScan();
  409. if( check == -1 ) {
  410.   ERR(pTrans->getNdbError());
  411.   closeTransaction(pNdb);
  412.   return NDBT_FAILED;
  413. }
  414. closeTransaction(pNdb);
  415. return NDBT_OK;
  416.       }
  417.       int res = takeOverAndUpdateRecord(pNdb, pOp);
  418.       if(res == RESTART_SCAN){
  419. eof = -2;
  420. continue;
  421.       }
  422.       if (res != 0){
  423. closeTransaction(pNdb);
  424. return res;
  425.       }
  426.       
  427.       eof = pTrans->nextScanResult();
  428.     }  
  429.     if (eof == -1) {
  430.       const NdbError err = pTrans->getNdbError();
  431.       if (err.status == NdbError::TemporaryError){
  432. ERR(err);
  433. NdbSleep_MilliSleep(50);
  434. switch (err.code){
  435. case 488:
  436. case 245:
  437. case 490:
  438.   // Too many active scans, no limit on number of retry attempts
  439.   break;
  440. default:
  441.   retryAttempt++;
  442. }
  443. continue;
  444.       }
  445.       ERR(err);
  446.       closeTransaction(pNdb);
  447.       return NDBT_FAILED;
  448.     }
  449.     if(eof == -2){
  450.       closeTransaction(pNdb);
  451.       NdbSleep_MilliSleep(50);
  452.       retryAttempt++;
  453.       continue;
  454.     }
  455.     
  456.     closeTransaction(pNdb);
  457.     g_info << rows << " rows have been updated" << endl;
  458.     return NDBT_OK;
  459.   }
  460.   return NDBT_FAILED;
  461. #endif
  462. }
  463. // Scan all records exclusive and update 
  464. // them batched by asking nextScanResult to
  465. // give us all cached records before fetching new 
  466. // records from db
  467. int
  468. HugoTransactions::scanUpdateRecords2(Ndb* pNdb, 
  469.      int records,
  470.      int abortPercent,
  471.      int parallelism){
  472. #if 1
  473.   return scanUpdateRecords3(pNdb, records, abortPercent, parallelism);
  474. #else
  475.   int                  retryAttempt = 0;
  476.   const int            retryMax = 100;
  477.   int check, a;
  478.   NdbOperation *pOp;
  479.   while (true){
  480.     if (retryAttempt >= retryMax){
  481.       g_info << "ERROR: has retried this operation " << retryAttempt 
  482.      << " times, failing!" << endl;
  483.       return NDBT_FAILED;
  484.     }
  485.     pTrans = pNdb->startTransaction();
  486.     if (pTrans == NULL) {
  487.       const NdbError err = pNdb->getNdbError();
  488.       if (err.status == NdbError::TemporaryError){
  489. ERR(err);
  490. NdbSleep_MilliSleep(50);
  491. retryAttempt++;
  492. continue;
  493.       }
  494.       ERR(err);
  495.       return NDBT_FAILED;
  496.     }
  497.     pOp = pTrans->getNdbOperation(tab.getName());
  498.     if (pOp == NULL) {
  499.       ERR(pTrans->getNdbError());
  500.       closeTransaction(pNdb);
  501.       return NDBT_FAILED;
  502.     }
  503.     check = pOp->openScanExclusive(parallelism);
  504.     if( check == -1 ) {
  505.       ERR(pTrans->getNdbError());
  506.       closeTransaction(pNdb);
  507.       return NDBT_FAILED;
  508.     }
  509.     check = pOp->interpret_exit_ok();
  510.     if( check == -1 ) {
  511.       ERR(pTrans->getNdbError());
  512.       closeTransaction(pNdb);
  513.       return NDBT_FAILED;
  514.     }
  515.     // Read all attributes from this table    
  516.     for(a=0; a<tab.getNoOfColumns(); a++){
  517.       if((row.attributeStore(a) = pOp->getValue(tab.getColumn(a)->getName())) == NULL){
  518. ERR(pTrans->getNdbError());
  519. closeTransaction(pNdb);
  520. return NDBT_FAILED;
  521.       }
  522.     }
  523.     check = pTrans->executeScan();   
  524.     if( check == -1 ) {
  525.       const NdbError err = pTrans->getNdbError();
  526.       if (err.status == NdbError::TemporaryError){
  527. ERR(err);
  528. closeTransaction(pNdb);
  529. NdbSleep_MilliSleep(50);
  530. retryAttempt++;
  531. continue;
  532.       }
  533.       ERR(err);
  534.       closeTransaction(pNdb);
  535.       return NDBT_FAILED;
  536.     }
  537.   
  538.     // Abort after 1-100 or 1-records rows
  539.     int ranVal = rand();
  540.     int abortCount = ranVal % (records == 0 ? 100 : records); 
  541.     bool abortTrans = false;
  542.     if (abort > 0){
  543.       // Abort if abortCount is less then abortPercent 
  544.       if (abortCount < abortPercent) 
  545. abortTrans = true;
  546.     }
  547.     int eof;
  548.     int rows = 0;
  549.     while((eof = pTrans->nextScanResult(true)) == 0){
  550.       pUpTrans = pNdb->startTransaction();
  551.       if (pUpTrans == NULL) {
  552. const NdbError err = pNdb->getNdbError();
  553. if (err.status == NdbError::TemporaryError){
  554.   ERR(err);
  555.   NdbSleep_MilliSleep(50);
  556.   retryAttempt++;
  557.   continue;
  558. }
  559. ERR(err);
  560. return NDBT_FAILED;
  561.       }
  562.       do {
  563. rows++;
  564. if (addRowToUpdate(pNdb, pUpTrans, pOp) != 0){
  565.   pNdb->closeTransaction(pUpTrans);
  566.   closeTransaction(pNdb);
  567.   return NDBT_FAILED;
  568. }
  569.       } while((eof = pTrans->nextScanResult(false)) == 0);
  570.       if (abortCount == rows && abortTrans == true){
  571. g_info << "Scan is aborted" << endl;
  572. // This scan should be aborted
  573. check = pTrans->stopScan();
  574. if( check == -1 ) {
  575.   ERR(pTrans->getNdbError());
  576.   closeTransaction(pNdb);
  577.   pNdb->closeTransaction(pUpTrans);
  578.   return NDBT_FAILED;
  579. }
  580. closeTransaction(pNdb);
  581. pNdb->closeTransaction(pUpTrans);
  582. return NDBT_OK;
  583.       }
  584.       check = pUpTrans->execute(Commit);   
  585.       if( check == -1 ) {
  586. const NdbError err = pUpTrans->getNdbError();    
  587. ERR(err);
  588. pNdb->closeTransaction(pUpTrans);
  589. closeTransaction(pNdb);
  590. return NDBT_FAILED;
  591.       }
  592.       pNdb->closeTransaction(pUpTrans);
  593.     }
  594.     if (eof == -1) {
  595.       const NdbError err = pTrans->getNdbError();
  596.       if (err.status == NdbError::TemporaryError){
  597. ERR(err);
  598. closeTransaction(pNdb);
  599. NdbSleep_MilliSleep(50);
  600. retryAttempt++;
  601. continue;
  602.       }
  603.       ERR(err);
  604.       closeTransaction(pNdb);
  605.       return NDBT_FAILED;
  606.     }
  607.     closeTransaction(pNdb);
  608.     g_info << rows << " rows have been updated" << endl;
  609.     return NDBT_OK;
  610.   }
  611.   return NDBT_FAILED;
  612. #endif
  613. }
  614. int
  615. HugoTransactions::scanUpdateRecords3(Ndb* pNdb, 
  616.      int records,
  617.      int abortPercent,
  618.      int parallelism){
  619.   int                  retryAttempt = 0;
  620.   const int            retryMax = 100;
  621.   int check, a;
  622.   NdbScanOperation *pOp;
  623.   while (true){
  624. restart:
  625.     if (retryAttempt++ >= retryMax){
  626.       g_info << "ERROR: has retried this operation " << retryAttempt 
  627.      << " times, failing!" << endl;
  628.       return NDBT_FAILED;
  629.     }
  630.     pTrans = pNdb->startTransaction();
  631.     if (pTrans == NULL) {
  632.       const NdbError err = pNdb->getNdbError();
  633.       ERR(err);
  634.       if (err.status == NdbError::TemporaryError){
  635. NdbSleep_MilliSleep(50);
  636. continue;
  637.       }
  638.       return NDBT_FAILED;
  639.     }
  640.     pOp = pTrans->getNdbScanOperation(tab.getName());
  641.     if (pOp == NULL) {
  642.       ERR(pTrans->getNdbError());
  643.       closeTransaction(pNdb);
  644.       return NDBT_FAILED;
  645.     }
  646.     
  647.     NdbResultSet *rs = pOp->readTuplesExclusive(parallelism);
  648.     if( rs == 0 ) {
  649.       ERR(pTrans->getNdbError());
  650.       closeTransaction(pNdb);
  651.       return NDBT_FAILED;
  652.     }
  653.     
  654.     // Read all attributes from this table    
  655.     for(a=0; a<tab.getNoOfColumns(); a++){
  656.       if((row.attributeStore(a) = pOp->getValue(tab.getColumn(a)->getName())) == NULL){
  657. ERR(pTrans->getNdbError());
  658. closeTransaction(pNdb);
  659. return NDBT_FAILED;
  660.       }
  661.     }
  662.     
  663.     check = pTrans->execute(NoCommit);
  664.     if( check == -1 ) {
  665.       const NdbError err = pTrans->getNdbError();
  666.       ERR(err);
  667.       closeTransaction(pNdb);
  668.       if (err.status == NdbError::TemporaryError){
  669. NdbSleep_MilliSleep(50);
  670. continue;
  671.       }
  672.       return NDBT_FAILED;
  673.     }
  674.   
  675.     // Abort after 1-100 or 1-records rows
  676.     int ranVal = rand();
  677.     int abortCount = ranVal % (records == 0 ? 100 : records); 
  678.     bool abortTrans = false;
  679.     if (abort > 0){
  680.       // Abort if abortCount is less then abortPercent 
  681.       if (abortCount < abortPercent) 
  682. abortTrans = true;
  683.     }
  684.     
  685.     int rows = 0;
  686.     while((check = rs->nextResult(true)) == 0){
  687.       do {
  688. rows++;
  689. NdbOperation* pUp = rs->updateTuple();
  690. if(pUp == 0){
  691.   ERR(pTrans->getNdbError());
  692.   closeTransaction(pNdb);
  693.   return NDBT_FAILED;
  694. }
  695. const int updates = calc.getUpdatesValue(&row) + 1;
  696. const int r = calc.getIdValue(&row);
  697.    for(a = 0; a<tab.getNoOfColumns(); a++){
  698.   if (tab.getColumn(a)->getPrimaryKey() == false){
  699.     if(setValueForAttr(pUp, a, r, updates ) != 0){
  700.       ERR(pTrans->getNdbError());
  701.       closeTransaction(pNdb);
  702.       return NDBT_FAILED;
  703.     }
  704.   }
  705. }
  706. if (rows == abortCount && abortTrans == true){
  707.   g_info << "Scan is aborted" << endl;
  708.   // This scan should be aborted
  709.   closeTransaction(pNdb);
  710.   return NDBT_OK;
  711. }
  712.       } while((check = rs->nextResult(false)) == 0);
  713.       if(check != -1){
  714. check = pTrans->execute(Commit);   
  715. pTrans->restart();
  716.       }
  717.       const NdbError err = pTrans->getNdbError();    
  718.       if( check == -1 ) {
  719. closeTransaction(pNdb);
  720. ERR(err);
  721. if (err.status == NdbError::TemporaryError){
  722.   NdbSleep_MilliSleep(50);
  723.   goto restart;
  724. }
  725. return NDBT_FAILED;
  726.       }
  727.     }
  728.     
  729.     const NdbError err = pTrans->getNdbError();    
  730.     if( check == -1 ) {
  731.       closeTransaction(pNdb);
  732.       ERR(err);
  733.       if (err.status == NdbError::TemporaryError){
  734. NdbSleep_MilliSleep(50);
  735. goto restart;
  736.       }
  737.       return NDBT_FAILED;
  738.     }
  739.     
  740.     closeTransaction(pNdb);
  741.     
  742.     g_info << rows << " rows have been updated" << endl;
  743.     return NDBT_OK;
  744.   }
  745.   return NDBT_FAILED;
  746. }
  747. int
  748. HugoTransactions::loadTable(Ndb* pNdb, 
  749.     int records,
  750.     int batch,
  751.     bool allowConstraintViolation,
  752.     int doSleep,
  753.                             bool oneTrans){
  754.   int             check, a;
  755.   int             retryAttempt = 0;
  756.   int             retryMax = 5;
  757.   NdbOperation   *pOp;
  758.   bool            first_batch = true;
  759.   const int org = batch;
  760.   const int cols = tab.getNoOfColumns();
  761.   const int brow = tab.getRowSizeInBytes();
  762.   const int bytes = 12 + brow + 4 * cols;
  763.   batch = (batch * 256); // -> 512 -> 65536k per commit
  764.   batch = batch/bytes;   // 
  765.   batch = batch == 0 ? 1 : batch;
  766.  
  767.   if(batch != org){
  768.     g_info << "batch = " << org << " rowsize = " << bytes
  769.    << " -> rows/commit = " << batch << endl;
  770.   }
  771.   
  772.   g_info << "|- Inserting records..." << endl;
  773.   for (int c=0 ; c<records ; ){
  774.     bool closeTrans;
  775.     if (retryAttempt >= retryMax){
  776.       g_info << "Record " << c << " could not be inserted, has retried "
  777.      << retryAttempt << " times " << endl;
  778.       // Reset retry counters and continue with next record
  779.       retryAttempt = 0;
  780.       c++;
  781.     }
  782.     if (doSleep > 0)
  783.       NdbSleep_MilliSleep(doSleep);
  784.     //    if (first_batch || !oneTrans) {
  785.     if (first_batch || !pTrans) {
  786.       first_batch = false;
  787.       pTrans = pNdb->startTransaction();
  788.       if (pTrans == NULL) {
  789.         const NdbError err = pNdb->getNdbError();
  790.         if (err.status == NdbError::TemporaryError){
  791.           ERR(err);
  792.   NdbSleep_MilliSleep(50);
  793.   retryAttempt++;
  794.   continue;
  795.         }
  796.         ERR(err);
  797.         return NDBT_FAILED;
  798.       }
  799.     }
  800.     for(int b = 0; b < batch && c+b<records; b++){ 
  801.       pOp = pTrans->getNdbOperation(tab.getName());
  802.       if (pOp == NULL) {
  803. ERR(pTrans->getNdbError());
  804. closeTransaction(pNdb);
  805. return NDBT_FAILED;
  806.       }
  807.       check = pOp->insertTuple();
  808.       if( check == -1 ) {
  809. ERR(pTrans->getNdbError());
  810. closeTransaction(pNdb);
  811. return NDBT_FAILED;
  812.       }
  813.       // Set a calculated value for each attribute in this table  
  814.       for (a = 0; a<tab.getNoOfColumns(); a++){
  815. if(setValueForAttr(pOp, a, c+b, 0 ) != 0){   
  816.   ERR(pTrans->getNdbError());
  817.   closeTransaction(pNdb);
  818.   return NDBT_FAILED;
  819. }
  820.       }
  821.     }
  822.     
  823.     // Execute the transaction and insert the record
  824.     if (!oneTrans || (c + batch) >= records) {
  825.       //      closeTrans = true;
  826.       closeTrans = false;
  827.       check = pTrans->execute( Commit );
  828.       pTrans->restart();
  829.     } else {
  830.       closeTrans = false;
  831.       check = pTrans->execute( NoCommit );
  832.     }
  833.     if(check == -1 ) {
  834.       const NdbError err = pTrans->getNdbError();
  835.       closeTransaction(pNdb);
  836.       pTrans= 0;
  837.       switch(err.status){
  838.       case NdbError::Success:
  839. ERR(err);
  840. g_info << "ERROR: NdbError reports success when transcaction failed"
  841.        << endl;
  842. return NDBT_FAILED;
  843. break;
  844.       case NdbError::TemporaryError:      
  845. ERR(err);
  846. NdbSleep_MilliSleep(50);
  847. retryAttempt++;
  848. continue;
  849. break;
  850.       case NdbError::UnknownResult:
  851. ERR(err);
  852. return NDBT_FAILED;
  853. break;
  854.       case NdbError::PermanentError:
  855. if (allowConstraintViolation == true){
  856.   switch (err.classification){
  857.   case NdbError::ConstraintViolation:
  858.     // Tuple already existed, OK but should be reported
  859.     g_info << c << ": " << err.code << " " << err.message << endl;
  860.     c++;
  861.     continue;
  862.     break;
  863.   default:     
  864.     break;
  865.   }
  866. }
  867. ERR(err);
  868. return err.code;
  869. break;
  870.       }
  871.     }
  872.     else{
  873.       if (closeTrans) {
  874.         closeTransaction(pNdb);
  875. pTrans= 0;
  876.       }
  877.     }
  878.     
  879.     // Step to next record
  880.     c = c+batch; 
  881.     retryAttempt = 0;
  882.   }
  883.   return NDBT_OK;
  884. }
  885. int
  886. HugoTransactions::fillTable(Ndb* pNdb, 
  887.     int batch){
  888.   int             check, a, b;
  889.   int             retryAttempt = 0;
  890.   int             retryMax = 5;
  891.   NdbOperation   *pOp;
  892.   
  893.   g_info << "|- Inserting records..." << endl;
  894.   for (int c=0 ; ; ){
  895.     if (retryAttempt >= retryMax){
  896.       g_info << "Record " << c << " could not be inserted, has retried "
  897.      << retryAttempt << " times " << endl;
  898.       // Reset retry counters and continue with next record
  899.       retryAttempt = 0;
  900.       c++;
  901.     }
  902.     
  903.     pTrans = pNdb->startTransaction();
  904.     if (pTrans == NULL) {
  905.       const NdbError err = pNdb->getNdbError();
  906.       if (err.status == NdbError::TemporaryError){
  907. ERR(err);
  908. NdbSleep_MilliSleep(50);
  909. retryAttempt++;
  910. continue;
  911.       }
  912.       ERR(err);
  913.       return NDBT_FAILED;
  914.     }
  915.     for(b = 0; b < batch; b++){ 
  916.       pOp = pTrans->getNdbOperation(tab.getName());
  917.       if (pOp == NULL) {
  918. ERR(pTrans->getNdbError());
  919. closeTransaction(pNdb);
  920. return NDBT_FAILED;
  921.       }
  922.       check = pOp->insertTuple();
  923.       if( check == -1 ) {
  924. ERR(pTrans->getNdbError());
  925. closeTransaction(pNdb);
  926. return NDBT_FAILED;
  927.       }
  928.       // Set a calculated value for each attribute in this table  
  929.       for (a = 0; a<tab.getNoOfColumns(); a++){
  930. if(setValueForAttr(pOp, a, c+b, 0 ) != 0){   
  931.   ERR(pTrans->getNdbError());
  932.   closeTransaction(pNdb);
  933.   return NDBT_FAILED;
  934. }
  935.       }
  936.     }
  937.     
  938.     // Execute the transaction and insert the record
  939.     check = pTrans->execute( Commit, CommitAsMuchAsPossible ); 
  940.     if(check == -1 ) {
  941.       const NdbError err = pTrans->getNdbError();
  942.       closeTransaction(pNdb);
  943.       
  944.       switch(err.status){
  945.       case NdbError::Success:
  946. ERR(err);
  947. g_info << "ERROR: NdbError reports success when transcaction failed"
  948.        << endl;
  949. return NDBT_FAILED;
  950. break;
  951.       case NdbError::TemporaryError:      
  952. ERR(err);
  953. NdbSleep_MilliSleep(50);
  954. retryAttempt++;
  955. continue;
  956. break;
  957.       case NdbError::UnknownResult:
  958. ERR(err);
  959. return NDBT_FAILED;
  960. break;
  961.       case NdbError::PermanentError:
  962. //  if (allowConstraintViolation == true){
  963. //    switch (err.classification){
  964. //    case NdbError::ConstraintViolation:
  965. //      // Tuple already existed, OK but should be reported
  966. //      g_info << c << ": " << err.code << " " << err.message << endl;
  967. //      c++;
  968. //      continue;
  969. //      break;
  970. //    default:     
  971. //      break;es
  972. //     }
  973. //   }
  974. // Check if this is the "db full" error 
  975. if (err.classification==NdbError::InsufficientSpace){
  976.   ERR(err);
  977.   return NDBT_OK;
  978. }
  979. if (err.classification == NdbError::ConstraintViolation){
  980.   ERR(err);
  981.   break;
  982. }
  983. ERR(err);
  984. return NDBT_FAILED;
  985. break;
  986.       }
  987.     }
  988.     else{      
  989.       closeTransaction(pNdb);
  990.     }
  991.     
  992.     // Step to next record
  993.     c = c+batch; 
  994.     retryAttempt = 0;
  995.   }
  996.   return NDBT_OK;
  997. }
  998. int 
  999. HugoTransactions::createEvent(Ndb* pNdb){
  1000.   char eventName[1024];
  1001.   sprintf(eventName,"%s_EVENT",tab.getName());
  1002.   NdbDictionary::Dictionary *myDict = pNdb->getDictionary();
  1003.   if (!myDict) {
  1004.     printf("Event Creation failedDictionary not found");
  1005.     return NDBT_FAILED;
  1006.   }
  1007.   NdbDictionary::Event myEvent(eventName);
  1008.   myEvent.setTable(tab.getName());
  1009.   myEvent.addTableEvent(NdbDictionary::Event::TE_ALL); 
  1010.   //  myEvent.addTableEvent(NdbDictionary::Event::TE_INSERT); 
  1011.   //  myEvent.addTableEvent(NdbDictionary::Event::TE_UPDATE); 
  1012.   //  myEvent.addTableEvent(NdbDictionary::Event::TE_DELETE);
  1013.   //  const NdbDictionary::Table *_table = myDict->getTable(tab.getName());
  1014.   for(int a = 0; a < tab.getNoOfColumns(); a++){
  1015.     //    myEvent.addEventColumn(_table->getColumn(a)->getName());
  1016.     myEvent.addEventColumn(a);
  1017.   }
  1018.   int res = myDict->createEvent(myEvent); // Add event to database
  1019.   if (res == 0)
  1020.     myEvent.print();
  1021.   else {
  1022.     g_info << "Event creation failedn";
  1023.     g_info << "trying drop Event, maybe event existsn";
  1024.     res = myDict->dropEvent(eventName);
  1025.     if (res) {
  1026.       g_err << "failed to drop eventn";
  1027.       return NDBT_FAILED;
  1028.     }
  1029.     // try again
  1030.     res = myDict->createEvent(myEvent); // Add event to database
  1031.     if (res) {
  1032.       g_err << "failed to create eventn";
  1033.       return NDBT_FAILED;
  1034.     }
  1035.   }
  1036.   return NDBT_OK;
  1037. }
  1038. #include <NdbEventOperation.hpp>
  1039. #include "TestNdbEventOperation.hpp"
  1040. #include <NdbAutoPtr.hpp>
  1041. struct receivedEvent {
  1042.   Uint32 pk;
  1043.   Uint32 count;
  1044.   Uint32 event;
  1045. };
  1046. int XXXXX = 0;
  1047. int 
  1048. HugoTransactions::eventOperation(Ndb* pNdb, void* pstats,
  1049.  int records) {
  1050.   int myXXXXX = XXXXX++;
  1051.   Uint32 i;
  1052.   const char function[] = "HugoTransactions::eventOperation: ";
  1053.   struct receivedEvent* recInsertEvent;
  1054.   NdbAutoObjArrayPtr<struct receivedEvent>
  1055.     p00( recInsertEvent = new struct receivedEvent[3*records] );
  1056.   struct receivedEvent* recUpdateEvent = &recInsertEvent[records];
  1057.   struct receivedEvent* recDeleteEvent = &recInsertEvent[2*records];
  1058.   EventOperationStats &stats = *(EventOperationStats*)pstats;
  1059.   stats.n_inserts = 0;
  1060.   stats.n_deletes = 0;
  1061.   stats.n_updates = 0;
  1062.   stats.n_consecutive = 0;
  1063.   stats.n_duplicates = 0;
  1064.   stats.n_inconsistent_gcis = 0;
  1065.   for (i = 0; i < records; i++) {
  1066.     recInsertEvent[i].pk    = 0xFFFFFFFF;
  1067.     recInsertEvent[i].count = 0;
  1068.     recInsertEvent[i].event = 0xFFFFFFFF;
  1069.     recUpdateEvent[i].pk    = 0xFFFFFFFF;
  1070.     recUpdateEvent[i].count = 0;
  1071.     recUpdateEvent[i].event = 0xFFFFFFFF;
  1072.     recDeleteEvent[i].pk    = 0xFFFFFFFF;
  1073.     recDeleteEvent[i].count = 0;
  1074.     recDeleteEvent[i].event = 0xFFFFFFFF;
  1075.   }
  1076.   NdbDictionary::Dictionary *myDict = pNdb->getDictionary();
  1077.   if (!myDict) {
  1078.     g_err << function << "Event Creation failedDictionary not foundn";
  1079.     return NDBT_FAILED;
  1080.   }
  1081.   int                  r = 0;
  1082.   NdbEventOperation    *pOp;
  1083.   char eventName[1024];
  1084.   sprintf(eventName,"%s_EVENT",tab.getName());
  1085.   int noEventColumnName = tab.getNoOfColumns();
  1086.   g_info << function << "create EventOperationn";
  1087.   pOp = pNdb->createEventOperation(eventName, 100);
  1088.   if ( pOp == NULL ) {
  1089.     g_err << function << "Event operation creation failedn";
  1090.     return NDBT_FAILED;
  1091.   }
  1092.   g_info << function << "get valuesn";
  1093.   NdbRecAttr* recAttr[1024];
  1094.   NdbRecAttr* recAttrPre[1024];
  1095.   const NdbDictionary::Table *_table = myDict->getTable(tab.getName());
  1096.   for (int a = 0; a < noEventColumnName; a++) {
  1097.     recAttr[a]    = pOp->getValue(_table->getColumn(a)->getName());
  1098.     recAttrPre[a] = pOp->getPreValue(_table->getColumn(a)->getName());
  1099.   }
  1100.   
  1101.   // set up the callbacks
  1102.   g_info << function << "executen";
  1103.   if (pOp->execute()) { // This starts changes to "start flowing"
  1104.     g_err << function << "operation execution failedn";
  1105.     return NDBT_FAILED;
  1106.   }
  1107.   g_info << function << "okn";
  1108.   int count = 0;
  1109.   Uint32 last_inconsitant_gci = 0xEFFFFFF0;
  1110.   while (r < records){
  1111.     //printf("now waiting for event...n");
  1112.     int res = pNdb->pollEvents(1000); // wait for event or 1000 ms
  1113.     if (res > 0) {
  1114.       //printf("got data! %dn", r);
  1115.       int overrun;
  1116.       while (pOp->next(&overrun) > 0) {
  1117. r++;
  1118. r += overrun;
  1119. count++;
  1120. Uint32 gci = pOp->getGCI();
  1121. Uint32 pk = recAttr[0]->u_32_value();
  1122.         if (!pOp->isConsistent()) {
  1123.   if (last_inconsitant_gci != gci) {
  1124.     last_inconsitant_gci = gci;
  1125.     stats.n_inconsistent_gcis++;
  1126.   }
  1127.   g_warning << "A node failure has occured and events might be missingn";
  1128. }
  1129. g_info << function << "GCI " << gci << ": " << count;
  1130. struct receivedEvent* recEvent;
  1131. switch (pOp->getEventType()) {
  1132. case NdbDictionary::Event::TE_INSERT:
  1133.   stats.n_inserts++;
  1134.   g_info << " INSERT: ";
  1135.   recEvent = recInsertEvent;
  1136.   break;
  1137. case NdbDictionary::Event::TE_DELETE:
  1138.   stats.n_deletes++;
  1139.   g_info << " DELETE: ";
  1140.   recEvent = recDeleteEvent;
  1141.   break;
  1142. case NdbDictionary::Event::TE_UPDATE:
  1143.   stats.n_updates++;
  1144.   g_info << " UPDATE: ";
  1145.   recEvent = recUpdateEvent;
  1146.   break;
  1147. case NdbDictionary::Event::TE_ALL:
  1148.   abort();
  1149. }
  1150. if ((int)pk < records) {
  1151.   recEvent[pk].pk = pk;
  1152.   recEvent[pk].count++;
  1153. }
  1154. g_info << "overrun " << overrun << " pk " << pk;
  1155. for (i = 1; i < noEventColumnName; i++) {
  1156.   if (recAttr[i]->isNULL() >= 0) { // we have a value
  1157.     g_info << " post[" << i << "]=";
  1158.     if (recAttr[i]->isNULL() == 0) // we have a non-null value
  1159.       g_info << recAttr[i]->u_32_value();
  1160.     else                           // we have a null value
  1161.       g_info << "NULL";
  1162.   }
  1163.   if (recAttrPre[i]->isNULL() >= 0) { // we have a value
  1164.     g_info << " pre[" << i << "]=";
  1165.     if (recAttrPre[i]->isNULL() == 0) // we have a non-null value
  1166.       g_info << recAttrPre[i]->u_32_value();
  1167.     else                              // we have a null value
  1168.       g_info << "NULL";
  1169.   }
  1170. }
  1171. g_info << endl;
  1172.       }
  1173.     } else
  1174.       ;//printf("timed outn");
  1175.   }
  1176.   //  sleep ((XXXXX-myXXXXX)*2);
  1177.   g_info << myXXXXX << "dropping event operation" << endl;
  1178.   int res = pNdb->dropEventOperation(pOp);
  1179.   if (res != 0) {
  1180.     g_err << "operation execution failedn";
  1181.     return NDBT_FAILED;
  1182.   }
  1183.   g_info << myXXXXX << " ok" << endl;
  1184.   if (stats.n_inserts > 0) {
  1185.     stats.n_consecutive++;
  1186.   }
  1187.   if (stats.n_deletes > 0) {
  1188.     stats.n_consecutive++;
  1189.   }
  1190.   if (stats.n_updates > 0) {
  1191.     stats.n_consecutive++;
  1192.   }
  1193.   for (i = 0; i < (Uint32)records/3; i++) {
  1194.     if (recInsertEvent[i].pk != i) {
  1195.       stats.n_consecutive ++;
  1196.       ndbout << "missing insert pk " << i << endl;
  1197.     } else if (recInsertEvent[i].count > 1) {
  1198.       ndbout << "duplicates insert pk " << i
  1199.      << " count " << recInsertEvent[i].count << endl;
  1200.       stats.n_duplicates += recInsertEvent[i].count-1;
  1201.     }
  1202.     if (recUpdateEvent[i].pk != i) {
  1203.       stats.n_consecutive ++;
  1204.       ndbout << "missing update pk " << i << endl;
  1205.     } else if (recUpdateEvent[i].count > 1) {
  1206.       ndbout << "duplicates update pk " << i
  1207.      << " count " << recUpdateEvent[i].count << endl;
  1208.       stats.n_duplicates += recUpdateEvent[i].count-1;
  1209.     }
  1210.     if (recDeleteEvent[i].pk != i) {
  1211.       stats.n_consecutive ++;
  1212.       ndbout << "missing delete pk " << i << endl;
  1213.     } else if (recDeleteEvent[i].count > 1) {
  1214.       ndbout << "duplicates delete pk " << i
  1215.      << " count " << recDeleteEvent[i].count << endl;
  1216.       stats.n_duplicates += recDeleteEvent[i].count-1;
  1217.     }
  1218.   }
  1219.   return NDBT_OK;
  1220. }
  1221. int 
  1222. HugoTransactions::pkReadRecords(Ndb* pNdb, 
  1223. int records,
  1224. int batchsize,
  1225. NdbOperation::LockMode lm){
  1226.   int                  reads = 0;
  1227.   int                  r = 0;
  1228.   int                  retryAttempt = 0;
  1229.   const int            retryMax = 100;
  1230.   int                  check, a;
  1231.   NdbOperation        *pOp;
  1232.   if (batchsize == 0) {
  1233.     g_info << "ERROR: Argument batchsize == 0 in pkReadRecords(). Not allowed." << endl;
  1234.     return NDBT_FAILED;
  1235.   }
  1236.   allocRows(batchsize);
  1237.   while (r < records){
  1238.     if (retryAttempt >= retryMax){
  1239.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1240.      << " times, failing!" << endl;
  1241.       return NDBT_FAILED;
  1242.     }
  1243.     pTrans = pNdb->startTransaction();
  1244.     if (pTrans == NULL) {
  1245.       const NdbError err = pNdb->getNdbError();
  1246.       
  1247.       if (err.status == NdbError::TemporaryError){
  1248. ERR(err);
  1249. NdbSleep_MilliSleep(50);
  1250. retryAttempt++;
  1251. continue;
  1252.       }
  1253.       ERR(err);
  1254.       return NDBT_FAILED;
  1255.     }
  1256.     
  1257.     for(int b=0; (b<batchsize) && (r+b < records); b++){
  1258.       pOp = pTrans->getNdbOperation(tab.getName());
  1259.       if (pOp == NULL) {
  1260. ERR(pTrans->getNdbError());
  1261. closeTransaction(pNdb);
  1262. return NDBT_FAILED;
  1263.       }
  1264.   rand_lock_mode:
  1265.       switch(lm){
  1266.       case NdbOperation::LM_Read:
  1267. check = pOp->readTuple();
  1268. break;
  1269.       case NdbOperation::LM_Exclusive:
  1270. check = pOp->readTupleExclusive();
  1271. break;
  1272.       case NdbOperation::LM_CommittedRead:
  1273. check = pOp->dirtyRead();
  1274. break;
  1275.       default:
  1276. lm = (NdbOperation::LockMode)((rand() >> 16) & 3);
  1277. goto rand_lock_mode;
  1278.       }
  1279.       
  1280.       if( check == -1 ) {
  1281. ERR(pTrans->getNdbError());
  1282. closeTransaction(pNdb);
  1283. return NDBT_FAILED;
  1284.       }
  1285.       // Define primary keys
  1286.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1287. if (tab.getColumn(a)->getPrimaryKey() == true){
  1288.   if(equalForAttr(pOp, a, r+b) != 0){
  1289.     ERR(pTrans->getNdbError());
  1290.     closeTransaction(pNdb);
  1291.     return NDBT_FAILED;
  1292.   }
  1293. }
  1294.       }
  1295.     
  1296.       // Define attributes to read  
  1297.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1298. if((rows[b]->attributeStore(a) = 
  1299.     pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  1300.   ERR(pTrans->getNdbError());
  1301.   closeTransaction(pNdb);
  1302.   return NDBT_FAILED;
  1303. }
  1304.       }
  1305.       
  1306.     }
  1307.     check = pTrans->execute(Commit);   
  1308.     if( check == -1 ) {
  1309.       const NdbError err = pTrans->getNdbError();
  1310.       if (err.status == NdbError::TemporaryError){
  1311. ERR(err);
  1312. closeTransaction(pNdb);
  1313. NdbSleep_MilliSleep(50);
  1314. retryAttempt++;
  1315. continue;
  1316.       }
  1317.       switch(err.code){
  1318.       case 626: // Tuple did not exist
  1319. g_info << r << ": " << err.code << " " << err.message << endl;
  1320. r++;
  1321. break;
  1322.       default:
  1323. ERR(err);
  1324. closeTransaction(pNdb);
  1325. return NDBT_FAILED;
  1326.       }
  1327.     } else{
  1328.       for (int b=0; (b<batchsize) && (r+b<records); b++){ 
  1329. if (calc.verifyRowValues(rows[b]) != 0){
  1330.   closeTransaction(pNdb);
  1331.   return NDBT_FAILED;
  1332. }
  1333. reads++;
  1334. r++;
  1335.       }
  1336.     }
  1337.     closeTransaction(pNdb);
  1338.   }
  1339.   deallocRows();
  1340.   g_info << reads << " records read" << endl;
  1341.   return NDBT_OK;
  1342. }
  1343. int 
  1344. HugoTransactions::pkUpdateRecords(Ndb* pNdb, 
  1345.   int records,
  1346.   int batch,
  1347.   int doSleep){
  1348.   int updated = 0;
  1349.   int                  r = 0;
  1350.   int                  retryAttempt = 0;
  1351.   const int            retryMax = 100;
  1352.   int                  check, a, b;
  1353.   NdbOperation        *pOp;
  1354.   allocRows(batch);
  1355.   g_info << "|- Updating records (batch=" << batch << ")..." << endl;
  1356.   while (r < records){
  1357.     
  1358.     if (retryAttempt >= retryMax){
  1359.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1360.      << " times, failing!" << endl;
  1361.       return NDBT_FAILED;
  1362.     }
  1363.     
  1364.     if (doSleep > 0)
  1365.       NdbSleep_MilliSleep(doSleep);
  1366.     pTrans = pNdb->startTransaction();
  1367.     if (pTrans == NULL) {
  1368.       const NdbError err = pNdb->getNdbError();
  1369.       
  1370.       if (err.status == NdbError::TemporaryError){
  1371. ERR(err);
  1372. NdbSleep_MilliSleep(50);
  1373. retryAttempt++;
  1374. continue;
  1375.       }
  1376.       ERR(err);
  1377.       return NDBT_FAILED;
  1378.     }
  1379.     for(b = 0; b<batch && (r+b) < records; b++){
  1380.       pOp = pTrans->getNdbOperation(tab.getName());
  1381.       if (pOp == NULL) {
  1382. ERR(pTrans->getNdbError());
  1383. closeTransaction(pNdb);
  1384. return NDBT_FAILED;
  1385.       }
  1386.       
  1387.       check = pOp->readTupleExclusive();
  1388.       if( check == -1 ) {
  1389. ERR(pTrans->getNdbError());
  1390. closeTransaction(pNdb);
  1391. return NDBT_FAILED;
  1392.       }
  1393.       // Define primary keys
  1394.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1395. if (tab.getColumn(a)->getPrimaryKey() == true){
  1396.   if(equalForAttr(pOp, a, r+b) != 0){
  1397.     ERR(pTrans->getNdbError());
  1398.     closeTransaction(pNdb);
  1399.     return NDBT_FAILED;
  1400.   }
  1401. }
  1402.       }
  1403.       
  1404.       // Define attributes to read  
  1405.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1406. if((rows[b]->attributeStore(a) = 
  1407.     pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  1408.   ERR(pTrans->getNdbError());
  1409.   closeTransaction(pNdb);
  1410.   return NDBT_FAILED;
  1411. }
  1412.       }
  1413.     }
  1414.     check = pTrans->execute(NoCommit);   
  1415.     if( check == -1 ) {
  1416.       const NdbError err = pTrans->getNdbError();
  1417.       
  1418.       if (err.status == NdbError::TemporaryError){
  1419. ERR(err);
  1420. closeTransaction(pNdb);
  1421. NdbSleep_MilliSleep(50);
  1422. retryAttempt++;
  1423. continue;
  1424.       }
  1425.       ERR(err);
  1426.       closeTransaction(pNdb);
  1427.       return NDBT_FAILED;
  1428.     }
  1429.     
  1430.     for(b = 0; b<batch && (b+r)<records; b++){
  1431.       if (calc.verifyRowValues(rows[b]) != 0){
  1432. closeTransaction(pNdb);
  1433. return NDBT_FAILED;
  1434.       }
  1435.       
  1436.       int updates = calc.getUpdatesValue(rows[b]) + 1;
  1437.       
  1438.       NdbOperation* pUpdOp;
  1439.       pUpdOp = pTrans->getNdbOperation(tab.getName());
  1440.       if (pUpdOp == NULL) {
  1441. ERR(pTrans->getNdbError());
  1442. closeTransaction(pNdb);
  1443. return NDBT_FAILED;
  1444.       }
  1445.       
  1446.       check = pUpdOp->updateTuple();
  1447.       if( check == -1 ) {
  1448. ERR(pTrans->getNdbError());
  1449. closeTransaction(pNdb);
  1450. return NDBT_FAILED;
  1451.       }
  1452.       
  1453.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1454. if (tab.getColumn(a)->getPrimaryKey() == true){
  1455.   if(equalForAttr(pUpdOp, a, r+b) != 0){
  1456.     ERR(pTrans->getNdbError());
  1457.     closeTransaction(pNdb);
  1458.     return NDBT_FAILED;
  1459.   }
  1460. }
  1461.       }
  1462.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1463. if (tab.getColumn(a)->getPrimaryKey() == false){
  1464.   if(setValueForAttr(pUpdOp, a, r+b, updates ) != 0){
  1465.     ERR(pTrans->getNdbError());
  1466.     closeTransaction(pNdb);
  1467.     return NDBT_FAILED;
  1468.   }
  1469. }
  1470.       }
  1471.     }
  1472.     check = pTrans->execute(Commit);   
  1473.     if( check == -1 ) {
  1474.       const NdbError err = pTrans->getNdbError();
  1475.       if (err.status == NdbError::TemporaryError){
  1476. ERR(err);
  1477. closeTransaction(pNdb);
  1478. NdbSleep_MilliSleep(50);
  1479. retryAttempt++;
  1480. continue;
  1481.       }
  1482.       ERR(err);
  1483.       ndbout << "r = " << r << endl;
  1484.       closeTransaction(pNdb);
  1485.       return NDBT_FAILED;
  1486.     }
  1487.     else{
  1488.       updated += batch;
  1489.     }
  1490.     closeTransaction(pNdb);
  1491.     r += batch; // Read next record
  1492.   }
  1493.   deallocRows();
  1494.   g_info << "|- " << updated << " records updated" << endl;
  1495.   return NDBT_OK;
  1496. }
  1497. int 
  1498. HugoTransactions::pkInterpretedUpdateRecords(Ndb* pNdb, 
  1499.      int records,
  1500.      int batch){
  1501.   int updated = 0;
  1502.   int r = 0;
  1503.   int retryAttempt = 0;
  1504.   const int retryMax = 100;
  1505.   int check, a;
  1506.   while (r < records){
  1507.     
  1508.     if (retryAttempt >= retryMax){
  1509.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1510.      << " times, failing!" << endl;
  1511.       return NDBT_FAILED;
  1512.     }
  1513.     
  1514.     pTrans = pNdb->startTransaction();
  1515.     if (pTrans == NULL) {
  1516.       const NdbError err = pNdb->getNdbError();
  1517.       
  1518.       if (err.status == NdbError::TemporaryError){
  1519. ERR(err);
  1520. NdbSleep_MilliSleep(50);
  1521. retryAttempt++;
  1522. continue;
  1523.       }
  1524.       ERR(err);
  1525.       return NDBT_FAILED;
  1526.     }
  1527.    NdbOperation* pOp = pTrans->getNdbOperation(tab.getName());
  1528.    if (pOp == NULL) {
  1529.      ERR(pTrans->getNdbError());
  1530.      closeTransaction(pNdb);
  1531.      return NDBT_FAILED;
  1532.    }
  1533.    
  1534.    check = pOp->readTupleExclusive();
  1535.    if( check == -1 ) {
  1536.      ERR(pTrans->getNdbError());
  1537.      closeTransaction(pNdb);
  1538.       return NDBT_FAILED;
  1539.    }
  1540.    
  1541.    // Define primary keys
  1542.    for(a = 0; a<tab.getNoOfColumns(); a++){
  1543.      if (tab.getColumn(a)->getPrimaryKey() == true){
  1544.        if(equalForAttr(pOp, a, r) != 0){
  1545.  ERR(pTrans->getNdbError());
  1546.  closeTransaction(pNdb);
  1547.  return NDBT_FAILED;
  1548.        }
  1549.      }
  1550.    }
  1551.    
  1552.    // Read update value
  1553.    for(a = 0; a<tab.getNoOfColumns(); a++){
  1554.      if (calc.isUpdateCol(a) == true){
  1555.        if((row.attributeStore(a) = 
  1556.    pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  1557.  ERR(pTrans->getNdbError());
  1558.  closeTransaction(pNdb);
  1559.  return NDBT_FAILED;
  1560.        }
  1561.      }
  1562.    }
  1563.    
  1564.     check = pTrans->execute(NoCommit);   
  1565.     if( check == -1 ) {
  1566.       const NdbError err = pTrans->getNdbError();
  1567.       if (err.status == NdbError::TemporaryError){
  1568. ERR(err);
  1569. closeTransaction(pNdb);
  1570. NdbSleep_MilliSleep(50);
  1571. retryAttempt++;
  1572. continue;
  1573.       }
  1574.       ERR(err);
  1575.       closeTransaction(pNdb);
  1576.       return NDBT_FAILED;
  1577.     }
  1578.     int updates = calc.getUpdatesValue(&row) + 1;
  1579.     NdbOperation* pUpdOp;
  1580.     pUpdOp = pTrans->getNdbOperation(tab.getName());
  1581.     if (pUpdOp == NULL) {
  1582.       ERR(pTrans->getNdbError());
  1583.       closeTransaction(pNdb);
  1584.       return NDBT_FAILED;
  1585.     }
  1586.     check = pUpdOp->interpretedUpdateTuple();
  1587.     if( check == -1 ) {
  1588.       ERR(pTrans->getNdbError());
  1589.       closeTransaction(pNdb);
  1590.       return NDBT_FAILED;
  1591.     }
  1592.     // PKs
  1593.     for(a = 0; a<tab.getNoOfColumns(); a++){
  1594.       if (tab.getColumn(a)->getPrimaryKey() == true){
  1595. if(equalForAttr(pUpdOp, a, r) != 0){
  1596.   ERR(pTrans->getNdbError());
  1597.   closeTransaction(pNdb);
  1598.   return NDBT_FAILED;
  1599. }
  1600.       }
  1601.     }
  1602.     // Update col
  1603.     for(a = 0; a<tab.getNoOfColumns(); a++){
  1604.       if ((tab.getColumn(a)->getPrimaryKey() == false) && 
  1605.   (calc.isUpdateCol(a) == true)){
  1606. // TODO switch for 32/64 bit
  1607. const NdbDictionary::Column* attr = tab.getColumn(a);
  1608. Uint32 valToIncWith = 1;
  1609. check = pUpdOp->incValue(attr->getName(), valToIncWith);
  1610. if( check == -1 ) {
  1611.   ERR(pTrans->getNdbError());
  1612.   closeTransaction(pNdb);
  1613.   return NDBT_FAILED;
  1614. }
  1615.       }
  1616.     }
  1617.     // Remaining attributes
  1618.     for(a = 0; a<tab.getNoOfColumns(); a++){
  1619.       if ((tab.getColumn(a)->getPrimaryKey() == false) && 
  1620.   (calc.isUpdateCol(a) == false)){
  1621. if(setValueForAttr(pUpdOp, a, r, updates ) != 0){
  1622.   ERR(pTrans->getNdbError());
  1623.   closeTransaction(pNdb);
  1624.   return NDBT_FAILED;
  1625. }
  1626.       }
  1627.     }
  1628.     
  1629.     check = pTrans->execute(Commit);   
  1630.     if( check == -1 ) {
  1631.       const NdbError err = pTrans->getNdbError();
  1632.       if (err.status == NdbError::TemporaryError){
  1633. ERR(err);
  1634. closeTransaction(pNdb);
  1635. NdbSleep_MilliSleep(50);
  1636. retryAttempt++;
  1637. continue;
  1638.       }
  1639.       ERR(err);
  1640.       ndbout << "r = " << r << endl;
  1641.       closeTransaction(pNdb);
  1642.       return NDBT_FAILED;
  1643.     }
  1644.     else{
  1645.       updated++;
  1646.     }
  1647.     closeTransaction(pNdb);
  1648.     r++; // Read next record
  1649.   }
  1650.   g_info << "|- " << updated << " records updated" << endl;
  1651.   return NDBT_OK;
  1652. }
  1653. int 
  1654. HugoTransactions::pkDelRecords(Ndb* pNdb, 
  1655.        int records,
  1656.        int batch,
  1657.        bool allowConstraintViolation,
  1658.        int doSleep){
  1659.   // TODO Batch is not implemented
  1660.   int deleted = 0;
  1661.   int                  r = 0;
  1662.   int                  retryAttempt = 0;
  1663.   const int            retryMax = 100;
  1664.   int                  check, a;
  1665.   NdbOperation        *pOp;
  1666.   g_info << "|- Deleting records..." << endl;
  1667.   while (r < records){
  1668.     if (retryAttempt >= retryMax){
  1669.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1670.      << " times, failing!" << endl;
  1671.       return NDBT_FAILED;
  1672.     }
  1673.     if (doSleep > 0)
  1674.       NdbSleep_MilliSleep(doSleep);
  1675.     pTrans = pNdb->startTransaction();
  1676.     if (pTrans == NULL) {
  1677.       const NdbError err = pNdb->getNdbError();
  1678.       if (err.status == NdbError::TemporaryError){
  1679. ERR(err);
  1680. NdbSleep_MilliSleep(50);
  1681. retryAttempt++;
  1682. continue;
  1683.       }
  1684.       ERR(err);
  1685.       return NDBT_FAILED;
  1686.     }
  1687.     pOp = pTrans->getNdbOperation(tab.getName());
  1688.     if (pOp == NULL) {
  1689.       ERR(pTrans->getNdbError());
  1690.       closeTransaction(pNdb);
  1691.       return NDBT_FAILED;
  1692.     }
  1693.     check = pOp->deleteTuple();
  1694.     if( check == -1 ) {
  1695.       ERR(pTrans->getNdbError());
  1696.       closeTransaction(pNdb);
  1697.       return NDBT_FAILED;
  1698.     }
  1699.     // Define primary keys
  1700.     for(a = 0; a<tab.getNoOfColumns(); a++){
  1701.       if (tab.getColumn(a)->getPrimaryKey() == true){
  1702. if(equalForAttr(pOp, a, r) != 0){
  1703.   ERR(pTrans->getNdbError());
  1704.   closeTransaction(pNdb);
  1705.   return NDBT_FAILED;
  1706. }
  1707.       }
  1708.     }
  1709.     check = pTrans->execute(Commit);   
  1710.     if( check == -1) {
  1711.       const NdbError err = pTrans->getNdbError();
  1712.       
  1713.       switch(err.status){
  1714.       case NdbError::TemporaryError:
  1715. ERR(err);
  1716. closeTransaction(pNdb);
  1717. NdbSleep_MilliSleep(50);
  1718. retryAttempt++;
  1719. continue;
  1720. break;
  1721.       case NdbError::PermanentError:
  1722. if (allowConstraintViolation == true){
  1723.   switch (err.classification){
  1724.   case NdbError::ConstraintViolation:
  1725.     // Tuple did not exist, OK but should be reported
  1726.     g_info << r << ": " << err.code << " " << err.message << endl;
  1727.     continue;
  1728.     break;
  1729.   default:     
  1730.     break;
  1731.   }
  1732. }
  1733. ERR(err);
  1734. closeTransaction(pNdb);
  1735. return NDBT_FAILED;
  1736. break;
  1737.       default:
  1738. ERR(err);
  1739. closeTransaction(pNdb);
  1740. return NDBT_FAILED;
  1741.       }
  1742.     }
  1743.     else {
  1744.       deleted++;
  1745.     }
  1746.     closeTransaction(pNdb);
  1747.     r++; // Read next record
  1748.   }
  1749.   g_info << "|- " << deleted << " records deleted" << endl;
  1750.   return NDBT_OK;
  1751. }
  1752. int 
  1753. HugoTransactions::lockRecords(Ndb* pNdb, 
  1754.       int records,
  1755.       int percentToLock,
  1756.       int lockTime){
  1757.   // Place a lock on percentToLock% of the records in the Db
  1758.   // Keep the locks for lockTime ms, commit operation
  1759.   // and lock som other records
  1760.   int                  r = 0;
  1761.   int                  retryAttempt = 0;
  1762.   const int            retryMax = 100;
  1763.   int                  check, a, b;
  1764.   NdbOperation        *pOp;
  1765.   // Calculate how many records to lock in each batch
  1766.   if (percentToLock <= 0)
  1767.     percentToLock = 1;
  1768.   double percentVal = (double)percentToLock / 100;
  1769.   int lockBatch = (int)(records * percentVal);
  1770.   if (lockBatch <= 0)
  1771.     lockBatch = 1;
  1772.   allocRows(lockBatch);
  1773.   
  1774.   while (r < records){
  1775.     g_info << "|- Locking " << lockBatch << " records..." << endl;
  1776.     if (retryAttempt >= retryMax){
  1777.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1778.      << " times, failing!" << endl;
  1779.       return NDBT_FAILED;
  1780.     }
  1781.     pTrans = pNdb->startTransaction();
  1782.     if (pTrans == NULL) {
  1783.       const NdbError err = pNdb->getNdbError();
  1784.       if (err.status == NdbError::TemporaryError){
  1785. ERR(err);
  1786. NdbSleep_MilliSleep(50);
  1787. retryAttempt++;
  1788. continue;
  1789.       }
  1790.       ERR(err);
  1791.       return NDBT_FAILED;
  1792.     }
  1793.     for(b = 0; (b<lockBatch) && (r+b < records); b++){ 
  1794.       pOp = pTrans->getNdbOperation(tab.getName());
  1795.       if (pOp == NULL) {
  1796. ERR(pTrans->getNdbError());
  1797. closeTransaction(pNdb);
  1798. return NDBT_FAILED;
  1799.       }
  1800.       
  1801.       check = pOp->readTupleExclusive();
  1802.       if( check == -1 ) {
  1803. ERR(pTrans->getNdbError());
  1804. closeTransaction(pNdb);
  1805. return NDBT_FAILED;
  1806.       }
  1807.       
  1808.       // Define primary keys
  1809.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1810. if (tab.getColumn(a)->getPrimaryKey() == true){
  1811.   if(equalForAttr(pOp, a, r+b) != 0){
  1812.     ERR(pTrans->getNdbError());
  1813.     closeTransaction(pNdb);
  1814.     return NDBT_FAILED;
  1815.   }
  1816. }
  1817.       }
  1818.           
  1819.       // Define attributes to read  
  1820.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1821. if((rows[b]->attributeStore(a) = 
  1822.     pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  1823.   ERR(pTrans->getNdbError());
  1824.   closeTransaction(pNdb);
  1825.   return NDBT_FAILED;
  1826. }
  1827.       }
  1828.     }
  1829.     // NoCommit lockTime times with 100 millis interval
  1830.     int sleepInterval = 50;
  1831.     int lockCount = lockTime / sleepInterval;
  1832.     int commitCount = 0;
  1833.     do {
  1834.       check = pTrans->execute(NoCommit);   
  1835.       if( check == -1) {
  1836. const NdbError err = pTrans->getNdbError();
  1837. if (err.status == NdbError::TemporaryError){
  1838.   ERR(err);
  1839.   closeTransaction(pNdb);
  1840.   NdbSleep_MilliSleep(50);
  1841.   retryAttempt++;
  1842.   continue;
  1843. }
  1844. ERR(err);
  1845. closeTransaction(pNdb);
  1846. return NDBT_FAILED;
  1847.       }
  1848.       for (int b=0; (b<lockBatch) && (r+b<records); b++){ 
  1849. if (calc.verifyRowValues(rows[b]) != 0){
  1850.   closeTransaction(pNdb);
  1851.   return NDBT_FAILED;
  1852. }
  1853.       }
  1854.       commitCount++;
  1855.       NdbSleep_MilliSleep(sleepInterval);
  1856.     } while (commitCount < lockCount);
  1857.     
  1858.     // Really commit the trans, puuh!
  1859.     check = pTrans->execute(Commit);   
  1860.     if( check == -1) {
  1861.       const NdbError err = pTrans->getNdbError();
  1862.       
  1863.       if (err.status == NdbError::TemporaryError){
  1864. ERR(err);
  1865. closeTransaction(pNdb);
  1866. NdbSleep_MilliSleep(50);
  1867. retryAttempt++;
  1868. continue;
  1869.       }
  1870.       ERR(err);
  1871.       closeTransaction(pNdb);
  1872.       return NDBT_FAILED;
  1873.     }
  1874.     else{
  1875.       for (int b=0; (b<lockBatch) && (r<records); b++){ 
  1876. if (calc.verifyRowValues(rows[b]) != 0){
  1877.   closeTransaction(pNdb);
  1878.   return NDBT_FAILED;
  1879. }
  1880. r++; // Read next record
  1881.       }
  1882.     }
  1883.     
  1884.     closeTransaction(pNdb);
  1885.   }
  1886.   deallocRows();
  1887.   g_info << "|- Record locking completed" << endl;
  1888.   return NDBT_OK;
  1889. }
  1890. int 
  1891. HugoTransactions::indexReadRecords(Ndb* pNdb, 
  1892.    const char * idxName,
  1893.    int records,
  1894.    int batchsize){
  1895.   int                  reads = 0;
  1896.   int                  r = 0;
  1897.   int                  retryAttempt = 0;
  1898.   const int            retryMax = 100;
  1899.   int                  check, a;
  1900.   NdbOperation *pOp;
  1901.   NdbIndexScanOperation *sOp;
  1902.   NdbResultSet * rs;
  1903.   const NdbDictionary::Index* pIndex
  1904.     = pNdb->getDictionary()->getIndex(idxName, tab.getName());
  1905.   
  1906.   const bool ordered = (pIndex->getType()==NdbDictionary::Index::OrderedIndex);
  1907.   if (batchsize == 0) {
  1908.     g_info << "ERROR: Argument batchsize == 0 in indexReadRecords(). "
  1909.    << "Not allowed." << endl;
  1910.     return NDBT_FAILED;
  1911.   }
  1912.   
  1913.   if (ordered) {
  1914.     batchsize = 1;
  1915.   }
  1916.   allocRows(batchsize);
  1917.   
  1918.   while (r < records){
  1919.     if (retryAttempt >= retryMax){
  1920.       g_info << "ERROR: has retried this operation " << retryAttempt 
  1921.      << " times, failing!" << endl;
  1922.       return NDBT_FAILED;
  1923.     }
  1924.     pTrans = pNdb->startTransaction();
  1925.     if (pTrans == NULL) {
  1926.       const NdbError err = pNdb->getNdbError();
  1927.       
  1928.       if (err.status == NdbError::TemporaryError){
  1929. ERR(err);
  1930. NdbSleep_MilliSleep(50);
  1931. retryAttempt++;
  1932. continue;
  1933.       }
  1934.       ERR(err);
  1935.       return NDBT_FAILED;
  1936.     }
  1937.     
  1938.     for(int b=0; (b<batchsize) && (r+b < records); b++){
  1939.       if(!ordered){
  1940. pOp = pTrans->getNdbIndexOperation(idxName, tab.getName());
  1941. if (pOp == NULL) {
  1942.   ERR(pTrans->getNdbError());
  1943.   closeTransaction(pNdb);
  1944.   return NDBT_FAILED;
  1945. }
  1946. check = pOp->readTuple();
  1947.       } else {
  1948. pOp = sOp = pTrans->getNdbIndexScanOperation(idxName, tab.getName());
  1949. if (sOp == NULL) {
  1950.   ERR(pTrans->getNdbError());
  1951.   closeTransaction(pNdb);
  1952.   return NDBT_FAILED;
  1953. }
  1954.       
  1955. check = 0;
  1956. rs = sOp->readTuples();
  1957.       }
  1958.       
  1959.       if( check == -1 ) {
  1960. ERR(pTrans->getNdbError());
  1961. closeTransaction(pNdb);
  1962. return NDBT_FAILED;
  1963.       }
  1964.       
  1965.       // Define primary keys
  1966.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1967. if (tab.getColumn(a)->getPrimaryKey() == true){
  1968.   if(equalForAttr(pOp, a, r+b) != 0){
  1969.     ERR(pTrans->getNdbError());
  1970.     closeTransaction(pNdb);
  1971.     return NDBT_FAILED;
  1972.   }
  1973. }
  1974.       }
  1975.       
  1976.       // Define attributes to read  
  1977.       for(a = 0; a<tab.getNoOfColumns(); a++){
  1978. if((rows[b]->attributeStore(a) = 
  1979.     pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  1980.   ERR(pTrans->getNdbError());
  1981.   closeTransaction(pNdb);
  1982.   return NDBT_FAILED;
  1983. }
  1984.       }
  1985.     }
  1986.     check = pTrans->execute(Commit);   
  1987.     check = (check == -1 ? -1 : !ordered ? check : rs->nextResult(true));
  1988.     if( check == -1 ) {
  1989.       const NdbError err = pTrans->getNdbError();
  1990.       
  1991.       if (err.status == NdbError::TemporaryError){
  1992. ERR(err);
  1993. closeTransaction(pNdb);
  1994. NdbSleep_MilliSleep(50);
  1995. retryAttempt++;
  1996. continue;
  1997.       }
  1998.       switch(err.code){
  1999.       case 626: // Tuple did not exist
  2000.   g_info << r << ": " << err.code << " " << err.message << endl;
  2001.   r++;
  2002.   break;
  2003.   
  2004.       default:
  2005. ERR(err);
  2006. closeTransaction(pNdb);
  2007. return NDBT_FAILED;
  2008.       }
  2009.     } else{
  2010.       for (int b=0; (b<batchsize) && (r+b<records); b++){ 
  2011. if (calc.verifyRowValues(rows[b]) != 0){
  2012.   closeTransaction(pNdb);
  2013.   return NDBT_FAILED;
  2014. }
  2015. reads++;
  2016. r++;
  2017.       }
  2018.       if(ordered && rs->nextResult(true) == 0){
  2019. ndbout << "Error when comparing records "
  2020.        << " - index op next_result to many" << endl;
  2021. closeTransaction(pNdb);
  2022. return NDBT_FAILED;
  2023.       }
  2024.     }
  2025.     closeTransaction(pNdb);
  2026.   }
  2027.   deallocRows();
  2028.   g_info << reads << " records read" << endl;
  2029.   return NDBT_OK;
  2030. }
  2031. int 
  2032. HugoTransactions::indexUpdateRecords(Ndb* pNdb, 
  2033.      const char * idxName,
  2034.      int records,
  2035.      int batchsize){
  2036.   int updated = 0;
  2037.   int                  r = 0;
  2038.   int                  retryAttempt = 0;
  2039.   const int            retryMax = 100;
  2040.   int                  check, a, b;
  2041.   NdbOperation *pOp;
  2042.   NdbScanOperation * sOp;
  2043.   NdbResultSet * rs;
  2044.   const NdbDictionary::Index* pIndex
  2045.     = pNdb->getDictionary()->getIndex(idxName, tab.getName());
  2046.   
  2047.   const bool ordered = (pIndex->getType()==NdbDictionary::Index::OrderedIndex);
  2048.   if (ordered){
  2049.     batchsize = 1;
  2050.   }
  2051.   allocRows(batchsize);
  2052.   
  2053.   while (r < records){
  2054.     if (retryAttempt >= retryMax){
  2055.       g_info << "ERROR: has retried this operation " << retryAttempt 
  2056.      << " times, failing!" << endl;
  2057.       return NDBT_FAILED;
  2058.     }
  2059.     
  2060.     pTrans = pNdb->startTransaction();
  2061.     if (pTrans == NULL) {
  2062.       const NdbError err = pNdb->getNdbError();
  2063.       
  2064.       if (err.status == NdbError::TemporaryError){
  2065. ERR(err);
  2066. NdbSleep_MilliSleep(50);
  2067. retryAttempt++;
  2068. continue;
  2069.       }
  2070.       ERR(err);
  2071.       return NDBT_FAILED;
  2072.     }
  2073.     for(b = 0; b<batchsize && (b+r)<records; b++){
  2074.       if(!ordered){
  2075. pOp = pTrans->getNdbIndexOperation(idxName, tab.getName());
  2076. if (pOp == NULL) {
  2077.   ERR(pTrans->getNdbError());
  2078.   closeTransaction(pNdb);
  2079.   return NDBT_FAILED;
  2080. }
  2081. check = pOp->readTupleExclusive();
  2082. if( check == -1 ) {
  2083.   ERR(pTrans->getNdbError());
  2084.   closeTransaction(pNdb);
  2085.   return NDBT_FAILED;
  2086. }
  2087.       } else {
  2088. pOp = sOp = pTrans->getNdbIndexScanOperation(idxName, tab.getName());
  2089. if (pOp == NULL) {
  2090.   ERR(pTrans->getNdbError());
  2091.   closeTransaction(pNdb);
  2092.   return NDBT_FAILED;
  2093. }
  2094. check = 0;
  2095. rs = sOp->readTuplesExclusive();
  2096.       }
  2097.       
  2098.       // Define primary keys
  2099.       for(a = 0; a<tab.getNoOfColumns(); a++){
  2100. if (tab.getColumn(a)->getPrimaryKey() == true){
  2101.   if(equalForAttr(pOp, a, r+b) != 0){
  2102.     ERR(pTrans->getNdbError());
  2103.     closeTransaction(pNdb);
  2104.     return NDBT_FAILED;
  2105.   }
  2106. }
  2107.       }
  2108.       
  2109.       // Define attributes to read  
  2110.       for(a = 0; a<tab.getNoOfColumns(); a++){
  2111. if((rows[b]->attributeStore(a) = 
  2112.     pOp->getValue(tab.getColumn(a)->getName())) == 0) {
  2113.   ERR(pTrans->getNdbError());
  2114.   closeTransaction(pNdb);
  2115.   return NDBT_FAILED;
  2116. }
  2117.       }
  2118.     }
  2119.      
  2120.     check = pTrans->execute(NoCommit);   
  2121.     check = (check == -1 ? -1 : !ordered ? check : rs->nextResult(true));
  2122.     if( check == -1 ) {
  2123.       const NdbError err = pTrans->getNdbError();
  2124.       ERR(err);
  2125.       closeTransaction(pNdb);
  2126.       
  2127.       if (err.status == NdbError::TemporaryError){
  2128. NdbSleep_MilliSleep(50);
  2129. retryAttempt++;
  2130. continue;
  2131.       }
  2132.       return NDBT_FAILED;
  2133.     }
  2134.     if(ordered && check != 0){
  2135.       g_err << "Row: " << r << " not found!!" << endl;
  2136.       closeTransaction(pNdb);
  2137.       return NDBT_FAILED;    
  2138.     }
  2139.     
  2140.     for(b = 0; b<batchsize && (b+r)<records; b++){
  2141.       if (calc.verifyRowValues(rows[b]) != 0){
  2142. closeTransaction(pNdb);
  2143. return NDBT_FAILED;
  2144.       }
  2145.       
  2146.       int updates = calc.getUpdatesValue(rows[b]) + 1;
  2147.       
  2148.       NdbOperation* pUpdOp;
  2149.       if(!ordered){
  2150. pUpdOp = pTrans->getNdbIndexOperation(idxName, tab.getName());
  2151. check = (pUpdOp == 0 ? -1 : pUpdOp->updateTuple());
  2152.       } else {
  2153. pUpdOp = rs->updateTuple();
  2154.       }
  2155.       if (pUpdOp == NULL) {
  2156. ERR(pTrans->getNdbError());
  2157. closeTransaction(pNdb);
  2158. return NDBT_FAILED;
  2159.       }
  2160.       
  2161.       if( check == -1 ) {
  2162. ERR(pTrans->getNdbError());
  2163. closeTransaction(pNdb);
  2164. return NDBT_FAILED;
  2165.       }
  2166.       
  2167.       if(!ordered){
  2168. for(a = 0; a<tab.getNoOfColumns(); a++){
  2169.   if (tab.getColumn(a)->getPrimaryKey() == true){
  2170.     if(equalForAttr(pUpdOp, a, r+b) != 0){
  2171.       ERR(pTrans->getNdbError());
  2172.       closeTransaction(pNdb);
  2173.       return NDBT_FAILED;
  2174.     }
  2175.   }
  2176. }
  2177.       }
  2178.       
  2179.       for(a = 0; a<tab.getNoOfColumns(); a++){
  2180. if (tab.getColumn(a)->getPrimaryKey() == false){
  2181.   if(setValueForAttr(pUpdOp, a, r+b, updates ) != 0){
  2182.     ERR(pTrans->getNdbError());
  2183.     closeTransaction(pNdb);
  2184.     return NDBT_FAILED;
  2185.   }
  2186. }
  2187.       }
  2188.     }
  2189.     
  2190.     check = pTrans->execute(Commit);   
  2191.     if( check == -1 ) {
  2192.       const NdbError err = pTrans->getNdbError();
  2193.       ERR(err);
  2194.       closeTransaction(pNdb);
  2195.       
  2196.       if (err.status == NdbError::TemporaryError){
  2197. NdbSleep_MilliSleep(50);
  2198. retryAttempt++;
  2199. continue;
  2200.       }
  2201.       ndbout << "r = " << r << endl;
  2202.       return NDBT_FAILED;
  2203.     } else {
  2204.       updated += batchsize;
  2205.     }
  2206.     
  2207.     closeTransaction(pNdb);
  2208.     
  2209.     r+= batchsize; // Read next record
  2210.   }
  2211.   
  2212.   g_info << "|- " << updated << " records updated" << endl;
  2213.   return NDBT_OK;
  2214. }
  2215. template class Vector<NDBT_ResultRow*>;