inactive sessiono

http://blog.youkuaiyun.com/aaaaaaaa2000/article/details/7392431
在这个里面看到885的进程阻塞了很多其他进程,但是885进程的状态竟然是inactive session的,那这个inactive session 到底是干啥的?这个状态什么含义?



http://blog.youkuaiyun.com/tianlesoftware/article/details/6539297--这个文件里有对inactive

当设置了resource_limit=true 。通过idle_time限制session idle 时间。session idle超过设置时间,状态为sniped (v$session).,然而OS下的process并不会释放,当session(user process) 再次与server process 通讯,将关闭相应的server process.

sqlnet.expire_time 的原理不一样,Oracle Server 发送包探测dead connection ,如果连接关闭,或者不再用,则关闭相应的server process.

以上两者组合使用,减少server process,防止process超过init$ORACLE_SID极限值。




有关状态的说明:

1active处于此状态的会话,表示正在执行,处于活动状态。

官方文档说明:

Any session that is connected to the database and is waiting for an event that does not belong to the Idle wait class is considered as an active session.

2killed处于此状态的会话,被标注为删除,表示出现了错误,正在回滚。

当然,也是占用系统资源的。还有一点就是,killed的状态一般会持续较长时间,而且用windows下的工具pl/sql developer来kill掉,是不管用的,要用命令:alter system kill session 'sid,serial#' ;

3inactive处于此状态的会话表示不是正在执行的

该状态处于等待操作(即等待需要执行的SQL语句),通常当DML语句已经完成。但连接没有释放,这个可能是程序中没有释放,如果是使用中间件来连接的话,也可能是中间件的配置或者是bug导致。

inactive对数据库本身没有什么影响,但是如果程序没有及时commit,那么就会造成占用过多会话。容易是DB的session达到极限值。

.处理inactive状态的session

在前面说不处理inactive状态的session,但是还是有方法来解决的。有两种方法。

2.1sqlnet.ora文件中设置expire_time参数

官网有关这个参数的说明:

http://download.oracle.com/docs/cd/B19306_01/network.102/b14213/sqlnet.htm

SQLNET.EXPIRE_TIME

Purpose

Use parameter SQLNET.EXPIRE_TIME to specify a the time interval,in minutes, to send a probe to verify that client/server connections are active.Setting a value greater than 0 ensures that connections are not left open indefinitely, due to an abnormal client termination.If the probe finds a terminated connection, or a connection that is no longer in use, it returns an error, causing the server process to exit.This parameter is primarily intended for the database server, which typically handles multiple connections at any one time.

sqlnet.expire_time的原理:Oracle Server发送包探测dead connection,如果连接关闭,或者不再用,则关闭相应的server process.

Limitations on using this terminated connection detection feature are:

(1)It is not allowed on bequeathed connections.-----对bequeathed connections说明

Simply an Oracle client-server connection that usesIPC(Inter Process Communication) and notTCP(network connection established via the Listener).
In other words, the client and server process communicates directly (via IPC) with one another. There's no network layer in between that serves as the communication layer.
Obviously, this also means that both client process and server process run on the same kernel - as IPC is a communication method that the kernel provides for processes it is executing, to communicate with one another.
(是否可以理解为client与server是在同一机器上)

(2)Though very small, a probe packet generates additional traffic that may downgrade network performance.---会占用网络带宽

(3)Depending on which operating system is in use, the server may need to perform additional processing to distinguish the connection probing event from other events that occur. This can also result in degraded network performance.

Default0

Minimum Value:0

Recommended Value10

Example

SQLNET.EXPIRE_TIME=10----(分钟)
修改完之后需要reload监听

2.2设置用户profileidle_time参数

之前整理的一篇有关profile的文章:

Oracle用户profile属性

http://blog.youkuaiyun.com/tianlesoftware/archive/2011/03/10/6238279.aspx

注意,要启用idle_time要先启用RESOURCE_LIMIT参数。该参数默认是False。官网说明如下:

RESOURCE_LIMIT

Property

Description

Parameter type

Boolean

Default value

false

Modifiable

ALTER SYSTEM

Range of values

true | false

RESOURCE_LIMIT determines whether resource limits are enforced in database profiles.

Values:

TRUE:Enables the enforcement of resource limits

FALSE:Disables the enforcement of resource limits

如下blog在这块说的比较清楚,并提供了相关的脚本:

sqlnet.expire_time and IDLE_TIME

http://space.itpub.net/10687595/viewspace-420407

IDLE_TIME Specify the permitted periods of continuous inactive time during a session,expressed in minutes. Long-running queries and other operations are not subject to this limit.

A valid database connection that is idle will respond to the probe packet causing no action on the part of the Server ,whereas the resource_limit will snipe the session when idle_time is exceeded.The 'sniped' session will get disconnected when the user(or the user process) tries to communicate with the server again.

--通过idle_time限制session idle时间。session idle超过设置时间,状态为sniped (v$session).,然而OS下的process并不会释放,当session(user process)再次与server process通讯,将关闭相应的server process.

What does 'SNIPED' status in v$session mean?

When IDLE_TIME is set in the users' profiles or the default profile.This will kill the sessions in the database (status in v$session now becomes SNIPED)and they will eventually disconnect. It does not always clean up the Unix session (LOCAL=NO sessions).

At this time all oracle resources are released but the shadow processes remains and OS resources are not released. This shadow process is still counted towards the parameters of init.ora.

This process is killed and entry from v$session is released only when user again tries to do something.Another way of forcing disconnect (if your users come in via SQL*Net) is to put the file sqlnet.ora on every client machine and include the parameter "SQLNET.EXPIRE_TIME" in it to force the close of the SQL*Net session

sqlnet.expire_time

sqlnet.expire_time actually works on a different principle and is used to detect dead connections as opposed to disconnecting(actually 'sniping') a session based on idle_time which the profile accomplishes.


But again, as you mentioned,expire_time works globally while idle_time profile works for that user. You can use both of them to make sure that the client not only gets sniped but also gets disconnected if the user process abnormally terminates.

修改示例:

SQL>alter profile default limit idle_time 10;

--需要重启下oracle







### LVGL按钮在INACTIVE状态下自锁功能的实现 为了实现在LVGL框架中按钮处于INACTIVE状态下的自锁功能,可以采取以下方法: #### 定义按钮的状态变量 创建一个全局或局部布尔型变量来跟踪按钮是否被锁定。当设置为`true`时,表示按钮已被锁定;反之则未锁定。 ```c static bool btn_locked = false; ``` #### 修改按钮事件回调函数 修改按钮点击事件处理器,在其中加入逻辑判断当前按钮是否已锁定。如果已经锁定,则忽略此次点击操作并返回;如果没有锁定,则执行相应动作并将按钮置为锁定状态。 ```c void button_event_cb(lv_obj_t * obj, lv_event_t event) { if (event == LV_EVENT_CLICKED && !btn_locked) { /* 执行按钮按下后的具体业务逻辑 */ // 将按钮设为不可用(INACTIVE),模拟锁定效果 lv_btn_set_state(obj, LV_BTN_STATE_INA); // 设置标志位表明该按钮已经被锁定 btn_locked = true; // 可选:启动定时器或其他机制用于解锁按钮 } } ``` #### 使用计时器自动解除锁定 可以通过设定一定时间间隔后恢复按钮可用性的方案来达到限时自锁的效果。利用lvgl内置的延迟调用接口`lv_timer_create()`注册一个一次性任务,在指定毫秒数过后重置上述定义的状态标记以及更新UI上的表现形式。 ```c // 延迟一段时间后再解锁按钮 lv_timer_create(unlock_button_task, DELAY_MS_TO_UNLOCK, NULL); ... static void unlock_button_task(void* param) { // 清除之前记录下来的锁定标识符 btn_locked = false; // 更新界面上对应控件样式使其恢复正常可交互模式 lv_btn_set_state(button_object_ref, LV_BTN_STATE_REL); } ``` 通过以上方式能够有效地控制LVGL中的按钮组件在其变为INA(即inactive)期间保持自锁特性,并且可以根据实际需求灵活调整具体的触发条件和持续周期[^1]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值