How would you solve that?
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Joan Murt wrote:
I've tried to speak to the manufacturer of that software without result...
So they don't acknowledge it? Or there isn't support any more?
Joan Murt wrote:
My only guess is to set up a virtual machine in order to serve that service and make it to reset each day.
Why do you need a VM for that? Can't you reset the machine, are there any other things on it?
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern
-
Joan Murt wrote:
I've tried to speak to the manufacturer of that software without result...
So they don't acknowledge it? Or there isn't support any more?
Joan Murt wrote:
My only guess is to set up a virtual machine in order to serve that service and make it to reset each day.
Why do you need a VM for that? Can't you reset the machine, are there any other things on it?
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern
Zoltan Balazs wrote:
So they don't acknowledge it? Or there isn't support any more?
It is complicated... they will solve it in the next version... but this will take too much time, it seems that the next version will be in the market in one year...
Zoltan Balazs wrote:
Why do you need a VM for that? Can't you reset the machine, are there any other things on it?
As a server we are using it for several things, resetting the entire machine each day is not a good solution for me.
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Can you gather the Performance Statistics so that the tech support of that company can be convinced that their product is at fault.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep! -
Joan Murt wrote:
I've tried to speak to the manufacturer of that software without result...
So they don't acknowledge it? Or there isn't support any more?
Joan Murt wrote:
My only guess is to set up a virtual machine in order to serve that service and make it to reset each day.
Why do you need a VM for that? Can't you reset the machine, are there any other things on it?
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern
Zoltan Balazs wrote:
So they don't acknowledge it? Or there isn't support any more?
Many Indian software cos do that. They go behind you whacking its tongue like anything till you buy them and give the cheque. After that they think they are the rulers and we are slaves.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep! -
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
How about installing something like a ram optimizer clickety - basically it tries to free memory once the available memory falls below a certain level which you configure. Guy
Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Go into the services manager and double-click on the services involved. Look at the top of the dialog for Service name:. Now create a batch file with the following:
sc stop *service name goes here*
sleep 30 ; give it some time to shut down
sc start *service name goes here*Now go into control panel and Scheduled Taks > Add Scheduled Task We had to do this for a 3rd party app which kept dropping its database connection (probably during nightly backups) and wouldn't automatcially restore the connection. The only way to fix it was a restart. So we setup a scheduled task to start and stop the services during the night so all would be good in the morning when the service would acutally get used.
Todd Smith
-
Go into the services manager and double-click on the services involved. Look at the top of the dialog for Service name:. Now create a batch file with the following:
sc stop *service name goes here*
sleep 30 ; give it some time to shut down
sc start *service name goes here*Now go into control panel and Scheduled Taks > Add Scheduled Task We had to do this for a 3rd party app which kept dropping its database connection (probably during nightly backups) and wouldn't automatcially restore the connection. The only way to fix it was a restart. So we setup a scheduled task to start and stop the services during the night so all would be good in the morning when the service would acutally get used.
Todd Smith
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Maybe use ProcessExplorer to see what threads it's creating. Maybe there's a thread that is leaking the memory, and yet another bug is that when you stop the service, the thread isn't being stopped. Of course, you're not getting paid to find their bugs! I'm curious, what kind of software works only with one kind of software repository? Marc
-
Maybe use ProcessExplorer to see what threads it's creating. Maybe there's a thread that is leaking the memory, and yet another bug is that when you stop the service, the thread isn't being stopped. Of course, you're not getting paid to find their bugs! I'm curious, what kind of software works only with one kind of software repository? Marc
Marc Clifton wrote:
I'm curious, what kind of software works only with one kind of software repository?
Crappy!
-
Sometimes you don't have a choice but to accept such things and work around them.
Todd Smith
-
Go into the services manager and double-click on the services involved. Look at the top of the dialog for Service name:. Now create a batch file with the following:
sc stop *service name goes here*
sleep 30 ; give it some time to shut down
sc start *service name goes here*Now go into control panel and Scheduled Taks > Add Scheduled Task We had to do this for a 3rd party app which kept dropping its database connection (probably during nightly backups) and wouldn't automatcially restore the connection. The only way to fix it was a restart. So we setup a scheduled task to start and stop the services during the night so all would be good in the morning when the service would acutally get used.
Todd Smith
-
Zoltan Balazs wrote:
So they don't acknowledge it? Or there isn't support any more?
Many Indian software cos do that. They go behind you whacking its tongue like anything till you buy them and give the cheque. After that they think they are the rulers and we are slaves.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep! -
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Get one of those timer plugs. Every night at midnight it switches off and then on. Server reboots. Memory leak fixed. (Had a friend who had his computer on a timer plug. I gave up explaining why it wasn't a great idea.)
cheers, Paul M. Watson.
-
Zoltan Balazs wrote:
So they don't acknowledge it? Or there isn't support any more?
It is complicated... they will solve it in the next version... but this will take too much time, it seems that the next version will be in the market in one year...
Zoltan Balazs wrote:
Why do you need a VM for that? Can't you reset the machine, are there any other things on it?
As a server we are using it for several things, resetting the entire machine each day is not a good solution for me.
Joan Murt wrote:
As a server we are using it for several things, resetting the entire machine each day is not a good solution for me.
Could you not buy a cheap server solely for use as teh repository, and schedule a reboot each night?
Take a chill pill, Daddy-o .\\axxx (That's an 'M')
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
I will not do some sort of advertisements, but really try RAM optimizer programs, if these programs can access and analyze the RAM completely, they will solve your problem. Although freeing a huge amount of memory will solve your problem :-O , but also a lot of system cached resources and data will be freed too; meaning some undesirable affect on your machine. Since it's a server machine, so many active services' resources will be freed, which yield to do caching for them "extra unneeded overhead" :doh:
Best wishes, Redwan Al-Bougha
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Joan Murt wrote:
this is like killing a fly using a thermonuclear bomb...
another excellent programming motto. :)
-
Hello all, in our department we are using a software that works as a software repository (a kind of subversion) that is the only one that exists/works for the software that we are using. It seems that the service that runs on our server (the one that handles all the queries from our computers) leaks memory. Even if I stop the service it doesn't frees all the memory that it has occupied. I've tried to speak to the manufacturer of that software without result... My only guess is to set up a virtual machine in order to serve that service and make it to reset each day. Any other idea? this is like killing a fly using a thermonuclear bomb... :~ As always thank you in advance.
Joan Murt wrote:
Any other idea?
Pour snake oil directly into the machine. Repeat daily until the situation improves. Send snake oil invoices to software vendor.
----
You're right. These facts that you've laid out totally contradict the wild ramblings that I pulled off the back of cornflakes packets.
-
That doesn't help in this case. The OP said the memory is not recovered when the service is shut down. Cheers, Drew.
If the memory isn't recovered when the service is shut down, this is a bug in windows. When a process exits, ALL resources used by that process are freed. Anything else is a serious problem. I'd suggest the memory is going somewhere. Something else besides the service...