GithubHelp home page GithubHelp logo

Comments (4)

gidgreen avatar gidgreen commented on July 1, 2024

Thanks. Can you say anything about what happened in the transaction which triggered this? Or what sorts of things you were doing in general on the chain?

from multichain-explorer.

TronBlack avatar TronBlack commented on July 1, 2024

We were running load tests and adding 3000+ Assets. The problem is not with multichain, but with the explorer db construction.

We have a "fix" for it that allows it to continue. It is essentially just handling the Integrity exception so it doesn't get stuck.

I added two lines in Mce/SqlAbstraction.py.

@@ -405,6 +405,8 @@ class SqlAbstraction(object):
     def _execute(sql, stmt, params):
         try:
             sql.cursor().execute(stmt, params)
+        except (sql.module.IntegrityError) as e:
+            print "Found Integrity Error - continuing..."        
         except (sql.module.OperationalError, sql.module.InternalError, sql.module.ProgrammingError) as e:
             if sql.in_transaction or not sql.auto_reconnect:
                 raise

from multichain-explorer.

gidgreen avatar gidgreen commented on July 1, 2024

Thanks. Do you have any more information about the integrity exception that was thrown? Foreign key? Unique key? And what SQL statement was executing at the time?

from multichain-explorer.

bitcartel avatar bitcartel commented on July 1, 2024

@TronBlack Can you print the entire exception object?

from multichain-explorer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.