• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 01:50
CET 06:50
KST 14:50
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team Liquid Map Contest #22 - Presented by Monster Energy5ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13
Community News
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool31Weekly Cups (March 9-15): herO, Clem, ByuN win42026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains18
StarCraft 2
General
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Potential Updates Coming to the SC2 CN Server Weekly Cups (March 2-8): ByuN overcomes PvT block Weekly Cups (August 25-31): Clem's Last Straw? Weekly Cups (March 9-15): herO, Clem, ByuN win
Tourneys
World University TeamLeague (500$+) | Signups Open RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament WardiTV Team League Season 10 KSL Week 87
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026]
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
Gypsy to Korea BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion JaeDong's form before ASL BSL Season 22
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours Small VOD Thread 2.0 IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates
Other Games
General Games
General RTS Discussion Thread Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread Mexico's Drug War
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread Tokyo Olympics 2021 Thread General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 3993 users

Java RMI timeouts

Blogs > Freezard
Post a Reply
Freezard
Profile Blog Joined April 2007
Sweden1019 Posts
February 13 2011 16:23 GMT
#1
I'm doing a server/client program in Java using RMI. When server crashes it's not a problem, clients get a RemoteException and disconnects.

However I have problems when clients crashes. My server uses a Timer to ping all client objects every now and then, when it gets no connection to a client it will catch a RemoteException.

Then, it's supposed to remove the client object from the server (just by removing it from a list), but it's impossible because when I try to do anything with the proxy client object it will throw another RemoteException. How can I solve this problem?

*
2Pacalypse-
Profile Joined October 2006
Croatia9530 Posts
February 13 2011 16:25 GMT
#2
By posting in a more appropriate place, ie. http://stackoverflow.com/
Moderator"We're a community of geniuses because we've found how to extract 95% of the feeling of doing something amazing without actually doing anything." - Chill
Freezard
Profile Blog Joined April 2007
Sweden1019 Posts
February 13 2011 16:32 GMT
#3
I will try :-)
Cambium
Profile Blog Joined June 2004
United States16368 Posts
Last Edited: 2011-02-13 17:05:32
February 13 2011 16:59 GMT
#4
You need to be more specific and post some code. There could literally be 1000 things wrong with your code.

If you are just removing the client proxy objects from a list, I don't understand why you would need to invoke any actions upon the object itself...?

edit:

Let me rephrase it better: if you are simply removing an object from the list, you aren't actually doing anything with the object itself. You are merely removing its reference from the container.

edit2:

Also, I don't understand your design: you have your host ping your clients? A better approach would be to have your clients send a pulse to your server, and you can determine which client is down from that.
When you want something, all the universe conspires in helping you to achieve it.
Freezard
Profile Blog Joined April 2007
Sweden1019 Posts
February 13 2011 17:09 GMT
#5
I have never done remote programming. Isn't it common that servers ping their clients? Anyway I posted it here and I got some answers, will check it out.

http://stackoverflow.com/questions/4985343/java-rmi-timeouts-crashes
Cambium
Profile Blog Joined June 2004
United States16368 Posts
February 13 2011 17:13 GMT
#6
They are correct.

You call "getUser()" on a broken client, it will obviously throw exceptions.

A lot of valuable information in that thread if you are patient enough to sift through it.

re: client pinging

It's inefficient as the number of clients can grow without bound, and your server is doing all the work. If you have your clients ping your server, you distribute the workload onto the clients.
When you want something, all the universe conspires in helping you to achieve it.
Freezard
Profile Blog Joined April 2007
Sweden1019 Posts
February 13 2011 17:49 GMT
#7
Was a stupid mistake. I'm thinking about your method of pinging server instead. But I don't know how you could do that more efficient...
Trap
Profile Blog Joined May 2009
United States395 Posts
February 13 2011 18:43 GMT
#8
Your question makes no sense. By itself, the RMI server (registry) has no way of calling a method on a client; the server simply exposes a set of methods that a RMI client can call.

If your question is what happens if a client makes a RMI call on your RMI server and while the RMI server is processing the request, the server becomes unresponsive: you can set the socket timeout on the client and / or server to cleanly handle such a situation without resorting to polling (check out rmi socket factory or write a custom one).
coffeetoss | "Team Liquid Fantasy Proleague: Tales of Miserable Failure and Deep Regret" -Kanil
Macavenger
Profile Blog Joined January 2008
United States1132 Posts
February 13 2011 19:04 GMT
#9
On February 14 2011 02:49 Freezard wrote:
Was a stupid mistake. I'm thinking about your method of pinging server instead. But I don't know how you could do that more efficient...

You have (for example) each client ping the server once every minute. Every two minutes, the server goes through its list of clients and dumps any that it hasn't heard from since its last sweep. This is a lot more efficient for your server, as all it has to do is listen (which it does anyway) and go through a list checking a flag once every couple minutes. If you put your server in charge of the pinging, it has to periodically go through all the clients, ping each one, wait for responses, tag all of them, decide what an appropriate timeout is, etc. The total amount of work may be similar, but you'd rather have that work distributed to the clients which only have to maintain one connection each, rather than the server maintaining many connections.
Freezard
Profile Blog Joined April 2007
Sweden1019 Posts
February 13 2011 20:04 GMT
#10
On February 14 2011 04:04 Macavenger wrote:
Show nested quote +
On February 14 2011 02:49 Freezard wrote:
Was a stupid mistake. I'm thinking about your method of pinging server instead. But I don't know how you could do that more efficient...

You have (for example) each client ping the server once every minute. Every two minutes, the server goes through its list of clients and dumps any that it hasn't heard from since its last sweep. This is a lot more efficient for your server, as all it has to do is listen (which it does anyway) and go through a list checking a flag once every couple minutes. If you put your server in charge of the pinging, it has to periodically go through all the clients, ping each one, wait for responses, tag all of them, decide what an appropriate timeout is, etc. The total amount of work may be similar, but you'd rather have that work distributed to the clients which only have to maintain one connection each, rather than the server maintaining many connections.

OK. So in my case I would add a list of users. Every client pings the server with its user as argument. Server adds the user to the list plus any new clients who connect. After two minutes server checks for every user in the Map<User, Client> if the user also exists in the list. If not - remove that user. End by clearing the list.

Is this what you mean? I guess it's more efficient like you say.
Macavenger
Profile Blog Joined January 2008
United States1132 Posts
February 13 2011 20:27 GMT
#11
On February 14 2011 05:04 Freezard wrote:
Show nested quote +
On February 14 2011 04:04 Macavenger wrote:
On February 14 2011 02:49 Freezard wrote:
Was a stupid mistake. I'm thinking about your method of pinging server instead. But I don't know how you could do that more efficient...

You have (for example) each client ping the server once every minute. Every two minutes, the server goes through its list of clients and dumps any that it hasn't heard from since its last sweep. This is a lot more efficient for your server, as all it has to do is listen (which it does anyway) and go through a list checking a flag once every couple minutes. If you put your server in charge of the pinging, it has to periodically go through all the clients, ping each one, wait for responses, tag all of them, decide what an appropriate timeout is, etc. The total amount of work may be similar, but you'd rather have that work distributed to the clients which only have to maintain one connection each, rather than the server maintaining many connections.

OK. So in my case I would add a list of users. Every client pings the server with its user as argument. Server adds the user to the list plus any new clients who connect. After two minutes server checks for every user in the Map<User, Client> if the user also exists in the list. If not - remove that user. End by clearing the list.

Is this what you mean? I guess it's more efficient like you say.

Well, I'm not familiar with exactly what data structures you're using, or network coding in Java (I've only done it in C++), but that sounds essentially correct. I'm used to doing it as something like a list of IP/port pairs (clients) that the server has active connections to, and storing a boolean flag for each of them that indicates whether it has heard from them recently, and just clearing that flag, or logging out the client if the flag isn't set.
ramesh
Profile Joined November 2011
United States1 Post
November 13 2011 05:33 GMT
#12
Thank you. I am glad that i found this blog online. I was very impressed with the blog posting here about the topic.

We have an application in prod environment in our organization such as a server/client program in Java using RMI. Both server and client/s uses a Timer to ping each other at regular interval. If either one does not receive a reply when ping each other then after reaching a limit (> ping interval + tolerance), they end up disconnecting each other. In that process, the RMI server knocks out all other clients at certain times. Things seems to working file until a year back but after that the user base moved to a new building. Since then, we have noticed few network issues in the infrastructure and this particular application got effected very badly such that the application outage has been recurring once/twice per week. I have inherited this application code and maintenance from a vendor after i joined the organization. Recently we migrated the database part of the application to Oracle RAC and that effected some of the queries to take longer time than they were before. Ironically, all these issues are being surfaced only in prod environment but not in Test/Dev environment. It's been extremely challenging to resolve the issues. I would truly appreciate if someone provide me some guidance to resolve this issue.

Since past 2 days, 3 of the use case scenarios seems to be taking longer time to finish in the database and by that time, Socket Timeout (set to 15 sec) is being reach in each of the scenario. To our knowledge, we couldn't find any issue with the database sqls but we started looking into those to find root cause. In the meantime, i thought of increasing RMI Server Socket Timeout to 5min as interim solution.

Does this change have any side effects in this client/server model?

Please advise.

Thanks
Ram
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2011-11-13 11:29:48
November 13 2011 11:28 GMT
#13
timeouts are usually used for error cases, so increasing the timeouts *should* not change anything for the normal program flow. however, as every engineer knows, changing anything can break everything. ;P

of course a "nicer" solution would be to use multithreading, as to still be able to reply to pings while the database is working. that is however considerably more work, which might not be justified depending on what your further plans with said application are.

/edit: oh and also the same goes for you, better post on stackoverflow.com for instance. this is not really a programmer help forum here, although quite a few programmers frequent it.
Gold isn't everything in life... you need wood, too!
Please log in or register to reply.
Live Events Refresh
The PiG Daily
22:00
Best Games of SC
Solar vs ByuN
MaxPax vs Solar
Rogue vs Percival
Cure vs Solar
herO vs Solar
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 200
ProTech131
Livibee 68
StarCraft: Brood War
Leta 116
Nal_rA 112
Noble 66
sSak 49
Bale 16
Dota 2
NeuroSwarm217
LuMiX0
Counter-Strike
Stewie2K280
Super Smash Bros
amsayoshi99
Other Games
ViBE149
RuFF_SC2146
Mew2King49
Organizations
Other Games
gamesdonequick707
Dota 2
PGL Dota 2 - Main Stream144
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1649
Other Games
• Scarra800
Upcoming Events
RSL Revival
4h 10m
herO vs MaxPax
Rogue vs TriGGeR
BSL
14h 10m
Replay Cast
18h 10m
Replay Cast
1d 3h
Afreeca Starleague
1d 4h
Sharp vs Scan
Rain vs Mong
Wardi Open
1d 6h
Monday Night Weeklies
1d 11h
Sparkling Tuna Cup
2 days
Afreeca Starleague
2 days
Soulkey vs Ample
JyJ vs sSak
Replay Cast
3 days
[ Show More ]
Afreeca Starleague
3 days
hero vs YSC
Larva vs Shine
Kung Fu Cup
3 days
Replay Cast
3 days
KCM Race Survival
4 days
The PondCast
4 days
WardiTV Team League
4 days
Replay Cast
4 days
WardiTV Team League
5 days
RSL Revival
6 days
Cure vs Zoun
WardiTV Team League
6 days
BSL
6 days
Liquipedia Results

Completed

Jeongseon Sooper Cup
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
NationLESS Cup
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
CSL 2026 SPRING (S20)
CSL Season 20: Qualifier 1
Acropolis #4
IPSL Spring 2026
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.