Forum Discussion
Ken_Wong_48678
Sep 11, 2006Historic F5 Account
tcl memory keep growing and LTM no response
Hi,
One of our customer uses the following iRules to perform persistent and finds the tcl memory in statistics keep growing and caused the LTM no response.
Has anyone seen the symptoms? I think the iRule is quite common. Thanks in advance!
rule us_web_iRule {
when CLIENT_ACCEPTED {
set add_persist 1
}
when HTTP_RESPONSE {
if { [HTTP::cookie exists "JSESSIONID"] and $add_persist } {
persist add uie [HTTP::cookie "JSESSIONID"]
set add_persist 0
}
}
when HTTP_REQUEST {
if { [HTTP::cookie exists "JSESSIONID"] } {
persist uie [HTTP::cookie "JSESSIONID"]
} else {
set jsess [findstr [HTTP::uri] "jsessionid" 11 ";"]
if { $jsess != "" } {
persist uie $jsess
}
}
}
}
Regards,
Ken (k.wong@f5.com)
- Colin_Walker_12Historic F5 AccountI don't see anything in that rule that would cause the memory consumption to continue increasing.
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects