mysql deadlock

transaction isolation

1. RU(read uncommitted)

2. RC(read committed)

3. RR(repeatable read)

4. Serializable

 

 

mysql提供了两种读取方式:快照度(snapshot read)和当前读(current read)

 

current read包含三种情况:

1. select ... lock in share mode   加S锁

2. select ... for update 加X锁

3. insert,update,delete 加X锁

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Kettle连接MySQL时可能会出现死问题,这是因为两个事务住了对方的数据。解决这个问题的方法是使用事务来保证数据的一致性,同时避免出现死。具体的解决方案如下: 1. 在Kettle中使用事务来保证数据的一致性,可以使用“Transaction”步骤来实现。 2. 在MySQL中使用“innodb_lock_wait_timeout”参数来设置等待的超时时间,避免出现死。 3. 在Kettle中使用“Table Input”步骤来读取数据时,可以使用“FOR UPDATE”语句来定数据,避免出现死。 下面是一个使用事务来解决死问题的Kettle作业的例子: ```kettle <?xml version="1.0" encoding="UTF-8"?> <job> <name>test_transaction</name> <description/> <extended_description/> <job_version>1.0</job_version> <job_status>0</job_status> <entry_list> <entry> <name>Start</name> <description/> <type>START</type> <plugin_id>START</plugin_id> <status>0</status> <attributes> <attribute> <code>nr</code> <attribute_key>Nr</attribute_key> <value>0</value> </attribute> </attributes> </entry> <entry> <name>Transaction Start</name> <description/> <type>TRANS</type> <plugin_id>TRANS</plugin_id> <status>0</status> <attributes> <attribute> <code>name</code> <attribute_key>name</attribute_key> <value>transaction_start</value> </attribute> <attribute> <code>use_batch</code> <attribute_key>use_batch</attribute_key> <value>N</value> </attribute> <attribute> <code>use_log</code> <attribute_key>use_log</attribute_key> <value>N</value> </attribute> <attribute> <code>use_thread_priorities</code> <attribute_key>use_thread_priorities</attribute_key> <value>N</value> </attribute> <attribute> <code>use_single_threaded</code> <attribute_key>use_single_threaded</attribute_key> <value>N</value> </attribute> <attribute> <code>set_logfile</code> <attribute_key>set_logfile</attribute_key> <value>N</value> </attribute> <attribute> <code>set_loglevel</code> <attribute_key>set_loglevel</attribute_key> <value>0</value> </attribute> <attribute> <code>set_transaction_size</code> <attribute_key>set_transaction_size</attribute_key> <value>1000</value> </attribute> <attribute> <code>set_commit</code> <attribute_key>set_commit</attribute_key> <value>1000</value> </attribute> <attribute> <code>set_rollback</code> <attribute_key>set_rollback</attribute_key> <value>1000</value> </attribute> </attributes> <connections> <connection> <from>Transaction Start</from> <from_nr>0</from_nr> <to>Table Input</to> <to_nr>0</to_nr> <from_type>TRANS</from_type> <to_type>STEP</to_type> <enabled>Y</enabled> </connection> </connections> </entry> <entry> <name>Table Input</name> <description/> <type>TABLE_INPUT</type> <plugin_id>TableInput</plugin_id> <status>0</status> <attributes> <attribute> <code>connection</code> <attribute_key>connection</attribute_key> <value>test</value> </attribute> <attribute> <code>table</code> <attribute_key>table</attribute_key> <value>test</value> </attribute> <attribute> <code>sql</code> <attribute_key>sql</attribute_key> <value>SELECT * FROM test WHERE id = 1 FOR UPDATE</value> </attribute> </attributes> <connections> <connection> <from>Transaction Start</from> <from_nr>0</from_nr> <to>Table Output</to> <to_nr>0</to_nr> <from_type>STEP</from_type> <to_type>STEP</to_type> <enabled>Y</enabled> </connection> </connections> </entry> <entry> <name>Table Output</name> <description/> <type>TABLE_OUTPUT</type> <plugin_id>TableOutput</plugin_id> <status>0</status> <attributes> <attribute> <code>connection</code> <attribute_key>connection</attribute_key> <value>test</value> </attribute> <attribute> <code>table</code> <attribute_key>table</attribute_key> <value>test</value> </attribute> <attribute> <code>truncate</code> <attribute_key>truncate</attribute_key> <value>N</value> </attribute> <attribute> <code>commit_size</code> <attribute_key>commit_size</attribute_key> <value>1000</value> </attribute> </attributes> <connections> <connection> <from>Table Input</from> <from_nr>0</from_nr> <to>Transaction Commit</to> <to_nr>0</to_nr> <from_type>STEP</from_type> <to_type>TRANS</to_type> <enabled>Y</enabled> </connection> </connections> </entry> <entry> <name>Transaction Commit</name> <description/> <type>TRANS</type> <plugin_id>TRANS</plugin_id> <status>0</status> <attributes> <attribute> <code>name</code> <attribute_key>name</attribute_key> <value>transaction_commit</value> </attribute> <attribute> <code>use_batch</code> <attribute_key>use_batch</attribute_key> <value>N</value> </attribute> <attribute> <code>use_log</code> <attribute_key>use_log</attribute_key> <value>N</value> </attribute> <attribute> <code>use_thread_priorities</code> <attribute_key>use_thread_priorities</attribute_key> <value>N</value> </attribute> <attribute> <code>use_single_threaded</code> <attribute_key>use_single_threaded</attribute_key> <value>N</value> </attribute> <attribute> <code>set_logfile</code> <attribute_key>set_logfile</attribute_key> <value>N</value> </attribute> <attribute> <code>set_loglevel</code> <attribute_key>set_loglevel</attribute_key> <value>0</value> </attribute> <attribute> <code>set_transaction_size</code> <attribute_key>set_transaction_size</attribute_key> <value>1000</value> </attribute> <attribute> <code>set_commit</code> <attribute_key>set_commit</attribute_key> <value>1000</value> </attribute> <attribute> <code>set_rollback</code> <attribute_key>set_rollback</attribute_key> <value>1000</value> </attribute> </attributes> <connections> <connection> <from>Table Output</from> <from_nr>0</from_nr> <to>Success</to> <to_nr>0</to_nr> <from_type>STEP</from_type> <to_type>DUMMY</to_type> <enabled>Y</enabled> </connection> </connections> </entry> <entry> <name>Success</name> <description/> <type>DUMMY</type> <plugin_id>Dummy</plugin_id> <status>0</status> <attributes> <attribute> <code>nr</code> <attribute_key>Nr</attribute_key> <value>0</value> </attribute> </attributes> </entry> </entry_list> <notepads> <notepad> <name/> <value/> </notepad> </notepads> <max_log_lines>0</max_log_lines> <log_size_limit>0</log_size_limit> <log_interval>0</log_interval> <log_file/> <shared_objects_file/> <arguments> <argument> <name>rep</name> <value/> </argument> <argument> <name>dir</name> <value/> </argument> <argument> <name>level</name> <value>Basic</value> </argument> </arguments> <created_user/> <created_date>2021/08/23 16:22:08 CST</created_date> <modified_user/> <modified_date>2021/08/23 16:22:08 CST</modified_date> <size_rowset>5000</size_rowset> <sleep_time_empty>0</sleep_time_empty> <sleep_time_full>0</sleep_time_full> <unique_connections>N</unique_connections> <feedback_shown>Y</feedback_shown> <feedback_size>5000</feedback_size> <using_thread_priorities>N</using_thread_priorities> <shared_objects/> <dependency/> </job> ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值