- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我发现很多人从 MySQL 收到相同的错误消息,具有相同的错误状态 = 41000 amd 相同的错误代码 = 1205。
然而,其中大多数涉及 2 个事务和一个死锁。
根据SHOW ENGINE INNODB STATUS
输出,只有1个事务:
=====================================140715 4:42:37 INNODB MONITOR OUTPUT=====================================Per second averages calculated from the last 21 seconds----------SEMAPHORES----------OS WAIT ARRAY INFO: reservation count 1630, signal count 1612Mutex spin waits 0, rounds 10461, OS waits 205RW-shared spins 2051, OS waits 1024; RW-excl spins 407, OS waits 380------------TRANSACTIONS------------Trx id counter 0 8450727Purge done for trx's n:o < 0 8450719 undo n:o < 0 0History list length 10LIST OF TRANSACTIONS FOR EACH SESSION:---TRANSACTION 0 0, not started, process no 8967, OS thread id 140114720237312MySQL thread id 31142, query id 6206904 localhost rootSHOW ENGINE INNODB STATUS---TRANSACTION 0 8450588, not started, process no 8967, OS thread id 140114589861632MySQL thread id 30909, query id 6153062 [my IP] [my username]---TRANSACTION 0 8450484, not started, process no 8967, OS thread id 140114719172352MySQL thread id 30899, query id 6152893 [my IP] [my username]---TRANSACTION 0 8450702, not started, process no 8967, OS thread id 140114586134272MySQL thread id 28747, query id 6206903 [my IP] [my username]---TRANSACTION 0 8450726, ACTIVE 34 sec, process no 8967, OS thread id 140114484233984 insertingmysql tables in use 1, locked 1LOCK WAIT 3 lock struct(s), heap size 1216, 1 row lock(s)MySQL thread id 31147, query id 6206832 [my IP] [my username] updateINSERT INTO [My table] [the rest of the statement....]------- TRX HAS BEEN WAITING 34 SEC FOR THIS LOCK TO BE GRANTED:RECORD LOCKS space id 0 page no 45066 n bits 432 index `PRIMARY` of table `[My DB]`.`[some table]` trx id 0 8450726 lock mode S locks rec but not gap waitingRecord lock, heap no 359 PHYSICAL RECORD: n_fields 6; compact format; info bits 0 0: len 8; hex 000000000000bdca; asc ;; 1: len 6; hex 00000080f2a0; asc ;; 2: len 7; hex 80000000390110; asc 9 ;; 3: len 6; hex 73797374656d; asc system;; 4: len 1; hex 02; asc ;; 5: len 4; hex 53c4b11b; asc S ;;---------------------TRANSACTION 0 8450725, ACTIVE 35 sec, process no 8967, OS thread id 140114588530432MySQL thread id 31146, query id 6206822 [my IP] [my username]Trx read view will not see trx with id >= 0 8450726, sees < 0 8450720---TRANSACTION 0 8450720, ACTIVE 36 sec, process no 8967, OS thread id 140114590127872393 lock struct(s), heap size 47088, 31495 row lock(s), undo log entries 229MySQL thread id 31145, query id 6206823 [my IP] [my username]--------FILE I/O--------I/O thread 0 state: waiting for i/o request (insert buffer thread)I/O thread 1 state: waiting for i/o request (log thread)I/O thread 2 state: waiting for i/o request (read thread)I/O thread 3 state: waiting for i/o request (write thread)Pending normal aio reads: 0, aio writes: 0, ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0Pending flushes (fsync) log: 0; buffer pool: 010744 OS file reads, 25629 OS file writes, 18087 OS fsyncs0.00 reads/s, 0 avg bytes/read, 0.00 writes/s, 0.00 fsyncs/s-------------------------------------INSERT BUFFER AND ADAPTIVE HASH INDEX-------------------------------------Ibuf: size 1, free list len 5, seg size 7,519 inserts, 519 merged recs, 76 mergesHash table size 17393, node heap has 12 buffer(s)0.00 hash searches/s, 0.00 non-hash searches/s---LOG---Log sequence number 5 2505544157Log flushed up to 5 2505544157Last checkpoint at 5 25055441570 pending log writes, 0 pending chkp writes15981 log i/o's done, 0.00 log i/o's/second----------------------BUFFER POOL AND MEMORY----------------------Total memory allocated 21017578; in additional pool allocated 1048576Dictionary memory allocated 466176Buffer pool size 512Free buffers 0Database pages 498Modified db pages 0Pending reads 0Pending writes: LRU 0, flush list 0, single page 0Pages read 12504, created 289, written 108380.00 reads/s, 0.00 creates/s, 0.00 writes/sBuffer pool hit rate 1000 / 1000--------------ROW OPERATIONS--------------0 queries inside InnoDB, 0 queries in queue2 read views open inside InnoDBMain thread process no. 8967, id 140114495788800, state: waiting for server activityNumber of rows inserted 38311, updated 16430, deleted 36, read 64568220.00 inserts/s, 0.00 updates/s, 0.00 deletes/s, 0.00 reads/s----------------------------END OF INNODB MONITOR OUTPUT============================
mysql> SELECT @@GLOBAL.tx_isolation, @@tx_isolation, @@session.tx_isolation;
+-----------------------+-----------------+------------------------+
| @@GLOBAL.tx_isolation | @@tx_isolation | @@session.tx_isolation |
+-----------------------+-----------------+------------------------+
| REPEATABLE-READ | REPEATABLE-READ | REPEATABLE-READ |
+-----------------------+-----------------+------------------------+
1 row in set (0.00 sec)
如果我在将自动提交设置为 true 的情况下建立连接(我使用的是 Apache Common DBCP 1.4),则不存在此问题。
最佳答案
我发现了这个问题。
问题在于,MySQL 期望同一事务中的所有查询都在同一个 TCP 连接中完成,而通过 QueryRunner 执行的每个 SQL 都可能启动到数据库的新 TCP 连接(尽管可以通过多种方式进行控制)。
关于java - MySQL错误: Lock wait timeout exceeded; try restarting transaction Query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24750412/
我不明白注释之间的实际区别是什么javax.transaction.Transactional和org.springframework.transaction.annotation.Transacti
我不明白注释 javax.transaction.Transactional 和 org.springframework.transaction.annotation.Transactional 之间
我正在尝试删除一个节点。 我知道要先删除节点,我必须删除关系。 MATCH (n:`Dummy`) WHERE n.uuid='1aa41234-aaaa-xxxx-ffff-xxxx11xx0x62
假设我有一个共享钱包,可以为我和我的兄弟收集以太币。我们彼此分享这个钱包的 50%。 如果有一笔 ETH 交易进入这个钱包,是否有一种自动方式可以将收到的以太币自动发送到我的个人钱包和我兄弟的钱包,而
我已经阅读并重新阅读了文档 re: mnesia:activity/3、mnesia:activity/4 和 mnesia/transaction/2,但它们对我来说仍然像是一种晦涩难懂的外语。 在
精简版: 在 Firebase 事务(在 Java 中)中,如果我从 MutableData.getValue() 中得到意外的或不一致的(陈旧的)值,我应该如何进行错误检查并确保事务在必要时重复运行
使用 Spring 时@Transcational在服务层,我需要放置 在 xml 文件上。 我想知道 可以javax.jdo.annotations.Transactional像spring一样用在
这是我的情况。 我正在构建一个 RESTful Web 服务,从客户端接收数据,然后根据该数据创建一个事件,然后我想将这个新事件推送到 celery 以异步处理它。 我使用 Pyramid 构建 RE
这是我的情况。 我正在构建一个 RESTful web 服务,它从客户端接收数据,然后从该数据创建一个事件,然后我想将这个新事件推送到 celery 以异步处理它。 我使用 pyramid 构建 RE
当我启动 jetty 时,以下行出现在日志中: :INFO:oejpw.PlusConfiguration:No Transaction manager found - if your webapp
@Transactional(rollbackFor = someException.class) public void methodA() throws someException { t
我花了几个小时试图解决这个问题。谷歌和 Stackoverflow 也没有多大帮助。所以这里非常欢迎任何建议。 我正在尝试在更新两个相关表时对事务应用回滚逻辑: 一般的代码是: // ... $em
我在 Service 类中看到了一个方法,它被标记为 @Transactional,但它还在同一个类中调用了一些其他方法,这些方法没有被标记为 @Transactional。 这是否意味着对单独方法的
我目前正在使用 Microsoft Enterprise Library 5.0,我想知道下面的代码是否是处理事务的可接受方式。 我已经稍微简化了场景,但本质是我想在同一个事务中在不同的数据库中执行多
我已将以下服务方法注释为事务性: /* (non-Javadoc) * @see a.b.service.CustomerService#activateCustomer(a.b.m
以下是我的代码的一个代表性片段,其中在 transaction.Rollback() 处抛出了一个意外的异常,至少对我而言是这样。声明。 异常(exception)是类型 NHibernate.Tra
我试过将 COMMIT TRAN 放在 if else 循环中,但我仍然收到此错误。 我必须为一个类(class)招收一名学生。如果注册后的座位数为负数,我必须将其反转并打印一条消息说不能注册。我已经
我已经实现了一个具有事务的路由。当用户通过单击“后退”按钮移出这条路线时,我希望用户能够确认退出并丢失通过回滚事务所做的任何更改。 问题是,如果用户返回路由,Ember Data 会引发错误并指出:
当我从另一个事务方法调用一个事务方法时会发生什么,现在我的第二个事务方法已完成,并且它返回到第一个事务方法,不幸的是它失败了,所以它会回滚所有内容,意味着它会回滚第二个事务方法吗?交易方式改变..??
这个问题在这里已经有了答案: @Transactional method called from another method doesn't obtain a transaction (4 个回答)
我是一名优秀的程序员,十分优秀!