How to reuse tsdpool sessions
YANGJUHEE521 opened this issue · 9 comments
Hello, I would like to know how I can use tdspool. and i use freetds-common 1.3.6-1 version
I tested it.
First of all, msql confirmed that there is no session.
-
I thought I would reuse the existing tdspool session if I went in using mypool in tsql, but I had an additional session.
It's a question.
- Why couldn't I reuse the session in my test?
- How to reuse tsdpool sessions
- Can tdspool be used by on and off processing?
- How to Log tdspool
tdspool
acts as a man-in-the-middle. So, TSQL
(in your example) should connect to tdspool
(so on port 25331
in your case) and tdspool
will reuse connections.
You can specify log with -l
option. Also you can use the TDSDUMP
variable (usually very verbose for debugging).
Thank you so much for your reply !!
Hello, as you said, I tried connecting to tdspool, but it slows down in between, not always. Originally, if it didn't take 50ms to import 1 case of data from mssql, there is a case that sometimes takes 500ms. Why does it take 50ms to get 1 case of the same, and when does it take 500ms? How do I improve it?
In addition, using tds is fast, but as you said, using tdspool is sometimes slow.
Thanks for testing. I would bet on TCP_NODELAY setting (nagle algorithm).
When I looked it up I saw that TCP_NODELAY setting deactivates nagle algorithm and I wanna know its pros&cons
and how to setting a TCP_NODELAY.
When I looked it up I saw that TCP_NODELAY setting deactivates nagle algorithm and I wanna know its pros&cons and how to setting a TCP_NODELAY.
The base idea of the algorithm is to reduce number of TCP packets. See https://en.wikipedia.org/wiki/Nagle%27s_algorithm. However the TDS protocol already group bytes into larger packets so all you get is an increase of delays and round trips.
@YANGJUHEE521 in master
branch Nagle's algorithm is now turned off. Can you try it ?
@freddy77
Sorry for the late reply. I can't use git because I'm not a test server, but I'm actually testing on a production server that doesn't have access to the internet. So I tried manually finding the part you modified and overwriting it on my server, but it doesn't seem to work. Should I do compile again with the file on the release side? How can I test it? Thank you.