• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:40
CET 00:40
KST 08:40
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win2RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14
StarCraft 2
General
When will we find out if there are more tournament Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win SC: Evo Complete - Ranked Ladder OPEN ALPHA Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge RSL Season 3: RO16 results & RO8 bracket
Tourneys
Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
Which season is the best in ASL? [BSL21] Ro.16 Group Stage (C->B->A->D) Data analysis on 70 million replays FlaSh on: Biggest Problem With SnOw's Playstyle soO on: FanTaSy's Potential Return to StarCraft
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Beyond All Reason The Perfect Game Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
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
TL Mafia Community Thread Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Artificial Intelligence Thread Things Aren’t Peaceful in Palestine YouTube Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
Thanks for the RSL
Hildegard
The Health Impact of Joining…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2027 users

Java RMI timeouts

Blogs > Freezard
Post a Reply
Freezard
Profile Blog Joined April 2007
Sweden1012 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
Croatia9526 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
Sweden1012 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
Sweden1012 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
Sweden1012 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
Sweden1012 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
Next event in 20m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft346
Liquid`TLO 165
elazer 138
ProTech129
StarCraft: Brood War
Calm 4723
Artosis 533
Aegong 34
Dota 2
syndereN238
Counter-Strike
Fnx 34
Super Smash Bros
hungrybox634
Other Games
tarik_tv5714
Grubby3973
FrodaN2518
shahzam614
C9.Mang0240
ViBE139
UpATreeSC115
Maynarde95
ForJumy 47
Organizations
Dota 2
PGL Dota 2 - Main Stream149
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• davetesta34
• HeavenSC 28
• Adnapsc2 10
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• 80smullet 14
• mYiSmile18
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21251
League of Legends
• Doublelift3959
Other Games
• imaqtpie1370
• Shiphtur254
Upcoming Events
Tenacious Turtle Tussle
20m
The PondCast
10h 20m
Replay Cast
23h 20m
OSC
1d 17h
LAN Event
1d 18h
Replay Cast
1d 23h
Replay Cast
2 days
WardiTV Korean Royale
2 days
Sparkling Tuna Cup
3 days
WardiTV Korean Royale
3 days
[ Show More ]
Replay Cast
3 days
Wardi Open
4 days
Monday Night Weeklies
4 days
StarCraft2.fi
4 days
Replay Cast
4 days
Wardi Open
5 days
StarCraft2.fi
5 days
Wardi Open
6 days
StarCraft2.fi
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
META Madness #9
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
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 © 2025 TLnet. All Rights Reserved.