- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 mysql 数据库中遇到死锁情况。选择查询正在等待更新查询的锁定,更新查询正在等待选择查询的锁定。我在下面粘贴数据库死锁日志。任何人都可以查看日志并告诉我
1)为什么更新命令在只更新一个表(service_status)时需要锁定表(server_registry)
2)为什么select和insert命令会出现死锁。这两个命令需要使用不同的锁。 select需要使用读锁,update需要使用写锁。
请帮忙。提前致谢。
------------------------
LATEST DETECTED DEADLOCK
------------------------
140422 19:49:35
*** (1) TRANSACTION:
TRANSACTION 58C06, ACTIVE 1 sec starting index read
mysql tables in use 2, locked 2
LOCK WAIT 5 lock struct(s), heap size 320, 4 row lock(s)
MySQL thread id 808, OS thread handle 0x36fc, query id 707213 gemsoft 10.127.127.214 gemsoft Sending data
/* criteria query */ select this_.id as id53_1_, this_.creation_date as creation2_53_1_, this_.last_modified as last3_53_1_, this_.server_registry_id as server5_53_1_, this_.service_type as service4_53_1_, serverregi2_.id as id30_0_, serverregi2_.creation_date as creation2_30_0_, serverregi2_.last_modified as last3_30_0_, serverregi2_.is_active as is4_30_0_, serverregi2_.app_context as app5_30_0_, serverregi2_.ip_address as ip6_30_0_, serverregi2_.last_updated_batch_time as last7_30_0_, serverregi2_.is_moniter_server as is8_30_0_, serverregi2_.port_number as port9_30_0_ from service_status this_ left outer join server_registry serverregi2_ on this_.server_registry_id=serverregi2_.id where this_.service_type='MONITER_SERVICE'
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 595 n bits 72 index `PRIMARY` of table `gemsoft31_08apr`.`server_registry` trx id 58C06 lock mode S locks rec but not gap waiting
Record lock, heap no 3 PHYSICAL RECORD: n_fields 11; compact format; info bits 0
0: len 8; hex 8000000000000001; asc ;;
1: len 6; hex 000000058b02; asc ;;
2: len 7; hex 2f00001e7d24f9; asc / }$ ;;
3: len 8; hex 800012514eb5acaa; asc QN ;;
4: len 8; hex 800012514eb5e69e; asc QN ;;
5: len 1; hex 00; asc ;;
6: len 5; hex 2f64636d61; asc /dcma;;
7: len 12; hex 67616e657368767961733031; asc ganeshvyas01;;
8: SQL NULL;
9: len 1; hex 01; asc ;;
10: len 4; hex 38303830; asc 8080;;
*** (2) TRANSACTION:
TRANSACTION 58B02, ACTIVE 151 sec starting index read, thread declared inside InnoDB 500
mysql tables in use 1, locked 1
6 lock struct(s), heap size 1024, 3 row lock(s), undo log entries 2
MySQL thread id 813, OS thread handle 0xda8, query id 707229 gemsoft 10.127.127.214 gemsoft Updating
/* update com.gemsoft.dcma.da.domain.ServiceStatus */ update service_status set last_modified='2014-04-22 19:49:36', server_registry_id=2, service_type='MONITER_SERVICE' where id=3
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 0 page no 595 n bits 72 index `PRIMARY` of table `gemsoft31_08apr`.`server_registry` trx id 58B02 lock_mode X locks rec but not gap
Record lock, heap no 3 PHYSICAL RECORD: n_fields 11; compact format; info bits 0
0: len 8; hex 8000000000000001; asc ;;
1: len 6; hex 000000058b02; asc ;;
2: len 7; hex 2f00001e7d24f9; asc / }$ ;;
3: len 8; hex 800012514eb5acaa; asc QN ;;
4: len 8; hex 800012514eb5e69e; asc QN ;;
5: len 1; hex 00; asc ;;
6: len 5; hex 2f64636d61; asc /dcma;;
7: len 12; hex 67616e657368767961733031; asc ganeshvyas01;;
8: SQL NULL;
9: len 1; hex 01; asc ;;
10: len 4; hex 38303830; asc 8080;;
*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 748 n bits 80 index `PRIMARY` of table `gemsoft31_08apr`.`service_status` trx id 58B02 lock_mode X locks rec but not gap waiting
Record lock, heap no 7 PHYSICAL RECORD: n_fields 7; compact format; info bits 0
0: len 8; hex 8000000000000003; asc ;;
1: len 6; hex 0000000584dc; asc ;;
2: len 7; hex 160000026015ff; asc ` ;;
3: len 8; hex 800012514eb5acb4; asc QN ;;
4: len 8; hex 800012514eb5e253; asc QN S;;
5: len 15; hex 4c4943454e53455f53455256494345; asc MONITER_SERVICE;;
6: len 8; hex 8000000000000001; asc ;;
*** WE ROLL BACK TRANSACTION (1)
Following sqls will help you in understanding table structure.
CREATE TABLE `server_registry` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`creation_date` DATETIME NOT NULL,
`last_modified` DATETIME NULL DEFAULT NULL,
`is_active` BIT(1) NULL DEFAULT NULL,
`app_context` VARCHAR(255) NULL DEFAULT NULL,
`ip_address` VARCHAR(255) NULL DEFAULT NULL,
`last_updated_batch_time` DATETIME NULL DEFAULT NULL,
`is_moniter_server` BIT(1) NULL DEFAULT b'0',
`port_number` VARCHAR(255) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
)
CREATE TABLE `service_status` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`creation_date` DATETIME NOT NULL,
`last_modified` DATETIME NULL DEFAULT NULL,
`service_type` VARCHAR(255) NULL DEFAULT NULL,
`server_registry_id` BIGINT(20) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
INDEX `FK8F8400BC7513AC46` (`server_registry_id`),
CONSTRAINT `FK8F8400BC7513AC46` FOREIGN KEY (`server_registry_id`) REFERENCES `server_registry` (`id`)
)
最佳答案
mySql 锁定系统(用于 innodb)的工作原理如下:
FOR WRITE 写入操作需要行上的独占锁。同时它在相应的父行上获取包含锁。当它完成对子表的写操作时,它将父表的包含锁转换为排它锁。
FOR READ读取操作只需要对从索引获得的范围进行包含锁定,如果索引不正确,它将对整个表进行包含锁定。
问题可能是当 update 尝试将父表(即 server_registry 表锁)转换为独占锁时,select 尝试获取其对 server_registry 表的锁。
关于MYSQL数据库update和select命令之间死锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23249454/
在 的 React 组件中菜单,我需要设置selected反射(reflect)应用程序状态的选项的属性。 在 render() , optionState从状态所有者传递给 SortMenu 组件
我是初级 Ruby-mysql 程序员,我想知道如何使我的(存储过程)查询结果更快.. 这是我的存储过程我正在使用 SQL_CACHE.. 但我不确定.. 缓存使我的过程更快.. : ( DROP
我一直在 Python 中进行套接字编程,以使用 select.select(rfile, wfile, xlist[, timeout]) 处理由已连接的客户端套接字列表发出的请求,并且我还想用 J
我试图通过用空格填充文本来创建下拉列表中的列效果,如下例所示: [Aux1+1] [*] [Aux1+1] [@Tn=PP] [Main] [*] [Main A
我为 MySQL 编写了以下查询: SELECT subquery.t1_column1, subquery.t2_id, MAX(subquery.val) FROM ( S
为什么我们要用 select 标签来编写.attr('selected','selected') 例如: $('#countryList option').filter(function () {
Lokalizacja: Gdańsk Rzeszów Wrocław 不知道发生了什么,但在那种情况下没有选择的选项,我必须从列表中选择一些东西。当我从选
我的表单中有两个选择字段。第一个是单选,另一个是多选。现在我想做的是根据单选中所选的选项,使用给定的数据选择多选中的选项。为此,我在单选更改时触发 ajax 请求: $.ajax({ type
我在 Firefox 5 中发现了一个奇怪的错误(我现在无法访问 4)。但是,我认为它可能在 Firefox 4 中工作,因为我刚买了一台新电脑,而且我不记得以前见过这个错误。 我有几个选择框。所选值
此 SQL 有何不同: 第一个: select * from table_1 a join table_2 b on a.id = b.acc_id 第二个: select * f
预选 的最佳做法是什么?在 ? 根据不同的网站,两者都有效。但是哪个更好呢?最兼容? Foo Bar 最佳答案 如果您正在编写 XHTML,则 selected="selected" 是必需的。 如
我使用 Angular JS 创建了一个多选选择框:下面是相同的代码: JS: $scope.foobars = [{ 'foobar_id': 'foobar01', 'name':
我在 jqGrid 中有几列 edittype="select"。如何读取特定行中当前选定值的选项值? 例如:当我提供以下选项时,如何获得 FedEx 等的“FE” editoption: { val
这是我更大问题的精简查询,但要点是我试图内部联接到一个选择,其中选择受到外部选择的限制。那可能吗?我在内部选择上收到有关多部分标识符 S.Item 和 S.SerialNum 的错误。 要点是这样的,
如果chat.chat_type IS NULL,我想选择user.*,但如果chat.chat_type = 1 我想选择组。* SELECT CASE WHEN ch
我正在编写一个小脚本来测试表单在提交之前是否已被更改。所以我可以使用普通输入(文本、文本区域等): if(element.defaultValue != element.value) { al
我正在尝试为 Prototype 编写一个插件,用户在其中单击下拉菜单并将其替换为多选元素。我快完成了。在用户选择他们想要显示的内容并将表单提交到同一页面之前,一切都很好。我正在使用 PHP 来使用
你如何在 MongoDB 中进行嵌套选择,类似于 SELECT id FROM table1 WHERE id IN (SELECT id FROM table2) 最佳答案 MongoDB 尚不具备
我有以下用于选择下拉列表的代码: {{unit.Text}} UnitOfMeasurements 数组中的每一项看起来像这样: Selected: false Text: "lb" Va
我正在尝试使用[选定]和[ngValue]来设置表单中包含对象的选择标记的默认值。但出于某种原因,它们似乎无法相提并论。。示例代码:。这段代码最终只显示空白作为缺省值。如果删除[ngValue],它就
我是一名优秀的程序员,十分优秀!