Jump to content

Recommended Posts

Posted (edited)

Avoiding a ScheduledFuture task is a fancy way to "rest" your ThreadPool, although you have a vulnerable area (the one that you are doing db connection). This area can delay some times due to connection pool being busy or your query executing slow due to a lot of calculations. During that computation time (delay mentioned above) 2 or more threads (player clicks) can access this area at the same time aka multiple connections at the same time which will lead to duplicate data in your StringBuilder as StringBuilder is a not synchronized structure itself. You can either use StringBuffer, which is not prefered for the same reason CopyOnWriteArrayList is not prefered (slow writing operations) OR synchronize the vulnerable area. 

My suggestion:

 

private final Lock _connectionLock = new ReentrantLock()

private final void generateBuilder(...)
{
	if (!_connectionLock.tryLock())
		return;
	
	final StringBuilder sb = new StringBuilder();
	//probably more builders

	try
	{
		//connections and computations here

		_lastUpdate = System.currentTimeMillis(); OR _nextUpdate = ... (depends on your approach)
	}
	finally
	{
		//empty PVP/PK builder here
		//feed PVP/PK with the corresponding builder
		_connectionLock.unlock();
	}

 

During the vulnerable time this will return the old PVP/PK stored data when they are requested.

 

Also static fields are redundant in singleton classes so you can declare builders as

 

private final StringBuilder PVP = new StringBuilder();
private final StringBuilder PKS = new StringBuilder();

 

although CAPS is not a proper naming convention for those.

 

Edited by Zake
Posted
3 hours ago, Zake said:

This area can delay some times due to connection pool being busy or your query executing slow due to a lot of calculations. During that computation time (delay mentioned above) 2 or more threads (player clicks) can access this area at the same time aka multiple connections at the same time which will lead to duplicate data in your StringBuilder as StringBuilder is a not synchronized structure itself.

This code is used about one year in 3 server and never there existed any issue with duplicated StringBuilders. I will try to exploit and if I face that kind of issue I will update the share.

Posted
12 minutes ago, StinkyMadness said:

This code is used about one year in 3 server and never there existed any issue with duplicated StringBuilders. I will try to exploit and if I face that kind of issue I will update the share.

It's not quite easy to produce this with low population. You can always benchmark this. Fill your characters table with a lot of data, and create a bunch of db connection tasks to keep connection pool busy enough, so that you have time to execute 2 requests at the same time.

Posted (edited)
11 hours ago, Zake said:

It's not quite easy to produce this with low population. You can always benchmark this. Fill your characters table with a lot of data, and create a bunch of db connection tasks to keep connection pool busy enough, so that you have time to execute 2 requests at the same time.

I think the problem can be solved instant by just moving the "_nextUpdate = System.currentTimeMillis() + 60000L;" on top of the method so the Connection will not affect it as it will be instantly updated the _nextUpdate.

//Update (Can't edit first topic for some reason)
https://pastebin.com/RfmLz5ZW

Edited by StinkyMadness
Posted (edited)
7 hours ago, StinkyMadness said:

I think the problem can be solved instant by just moving the "_nextUpdate = System.currentTimeMillis() + 60000L;" on top of the method so the Connection will not affect it as it will be instantly updated the _nextUpdate.

//Update (Can't edit first topic for some reason)
https://pastebin.com/RfmLz5ZW

You may avoid duplicate connections this way, although if a new player asks for data while 1st one is still processing he will get temporarily an empty table. Even critical error maybe if table is half fed. You could remove final modifiers from your structures, then create temporary StringBuilders during connection time and change the address of the pvp/pk to these temps when they are fully fed.

 

Edit: gonna investigate about topic edit issue and let you know

Edited by Zake
Posted
12 minutes ago, Zake said:

You may avoid duplicate connections this way, although if a new player asks for data while 1st one is still processing he will get temporarily an empty table. Even critical error maybe if table is half fed. You could remove final modifiers from your structures, then create temporary StringBuilders during connection time and change the address of the pvp/pk to these temps when they are fully fed.

 

Edit: gonna investigate about topic edit issue and let you know

I guess the VPS/Dedicate has not that kind of issues on 2021.. they are not that slow.. also the empty StringBuilders not give critical error on the way the HTML is written.. maybe it will be empty but they can just reopen it 😄


i want to update the link on main topic but i can't edit it for some reason.

Posted (edited)
1 hour ago, StinkyMadness said:

I guess the VPS/Dedicate has not that kind of issues on 2021.. they are not that slow.. also the empty StringBuilders not give critical error on the way the HTML is written.. maybe it will be empty but they can just reopen it 😄


i want to update the link on main topic but i can't edit it for some reason.

May i suggest you post it on https://gist.github.com ?
So you can keep updating it and the link wont change.

Edited by ZaNteR
grammar smh...
Posted (edited)
5 hours ago, ZaNteR said:

May i suggest you post it on https://gist.github.com ?
So you can keep updating it and the link wont change.

I suggest @Maxtor to review a bit the privileges 😛 about people to be able to edit their topic 🙂
But thanks for the option

Edited by StinkyMadness
Posted (edited)
-	public void showRakingList(Player player)
+	public synchronized void showRakingList(Player player)

 

@Zake ReentrantLock is a bad way to solve this 'problem' and does not need to be placed here for many reasons. Indeed, it might be show different html content rarely even while StringBuilder is way faster than StringBuffer cause is fat since is syncing all of its methods, but all you have to do, is an object synchronization (if stinky still want to keep it as it is) but not by using the reentrantLock here, in this case...

 

@StinkyMadness I would do the whole thing a bit different, like a manager which will storing the infos in custom classes and generate the content directly up on the player's request with a FloodProtector check. No sync at all

Edited by melron
  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Lineage 2 Interlude L2OFF Server Based on H5 Files   Are you looking to start your own Lineage 2 server? This is your chance! I’m selling a 100% functional server based on Official L2OFF H5 files, adapted to the Interlude version. Main Features: Based on official L2OFF H5 files, perfectly configured for Interlude. Includes the full source code, allowing you to fully customize the server to fit your needs. Fully working events, such as: TvT (Team vs. Team) CTF (Capture the Flag) Tons of custom content added, keeping the balance and original essence of the game. Why choose this project? The server is fully functional and optimized, ready to launch. You can test the server before purchasing, with access to a GM character to explore all features. Comes with everything you need to make your project a success, both technically and in terms of content. Interested? Feel free to contact me! If you need more information or would like to schedule a test, I’m happy to answer any questions.   Auto Create Accounts Client Test Server: DOWNLOAD   Price: 600 usd Source price: send pm. Discord: Guytis#6760 Skype: gustavoorellano@hotmail.com  
    • Website: https://l2aurum.com/  Discord: https://discord.gg/l2aurum   Hello Everyone,  finally, the moment has arrived: I'm launching my own server, L2Aurum!   L2Aurum x300 Closed Beta Test - Start: 17.02.2025  [20:00 GMT+2] Grand Opening 21.02.2025 [20:00 GMT+2]     Experience Rates: x300 Skill Points Rates: x300 Adena Drop: x300 Premium Accounts: x2 Drop Rates: x1 Spoil Rates: x1 Quest Rates: x1 Only one account per player, no dualboxing allowed. Everything is earned through gameplay, no pay-to-win mechanics. No server wipes—your progress is permanent. Fair play is a priority, with no room for corruption. All players are treated equally, no special favors.     Buffs slots: 26+4, all buffs in NPC and Scheme System. Custom Armors: Aurum Apella Armor Custom Weapons: Aurum Weapon Custom Accessories: +300 P.Def & M.Def Tattoos: Mage & Fighter & Custom Shirts Custom Jewels: New Grand Bosses Auto Farm is FREE for everyone. Status Noblesse: Barakiel. Player Spawn Protection: 10 seconds. Geodata e Panthodes: ENABLED. All Commands are visible in .menu. System 2 Bishop Per Party: ENABLED. Boss Protect - Anti-Zerg: ENABLED.     Siege Duration: 2 hours (120 minutes). Siege Period: Every 7 days. Castle Reward: 100E Per Castle. Available Castles: Rune Aden Giran Giran Siege: Every Friday 20:00 GMT +2. Aden Siege: Every Saturday 20:00 GMT +2. Rune Siege: Every Sunday 20:00 GMT +2. Main Clan: 40 Members max. Royal Clan: 12 Members max. Knight Clan: 7 Members max. Alliance: You can have only 1.     Epic Boss Valakas: Monday 22:30 (GMT+2) Zaken: Tuesday | Thursday 22:30 (GMT+2) Queen Ant: Monday | Wednesday 22:30 (GMT+2) Baium: Friday 22:30 (GMT+2) Antharas: Saturday 22:30 (GMT+2) Orfen: Tuesday | Thursday | Saturday 18:30 (GMT+2) Core: Monday | Wednesday | Friday | Sunday 18:30 (GMT+2)   Raid Boss  Flame Of Splendor Barakiel Last Hit: Every Day Respawn 3-4 hours Ember: Every Day Respawn 3-4 hours Lilith: Every Day Respawn 3-4 hours Anakim: Every Day Respawn 3-4 hours Queen Shyeed: Every Day Respawn 3-4 hours Golkonda: Every Day Respawn 3-4 hours Shuriel: Every Day Respawn 3-4 hours Varka's Hero Shadith: Every Day Respawn 3-4 hours Ketra's Hero Hekaton: Every Day Respawn 3-4 hours Varka's Mos: Every Day Respawn 3-4 hours Chief Horus: Every Day Respawn 3-4 hours Ketra's Tayer: Every Day Respawn 3-4 hours Chief Brakki: Every Day Respawn 3-4 hours Sailren: Every Day Respawn 02:00   🥳🥳🥳🥳 I would like to chat personally with all of you over on our Discord and discuss any suggestions or feedback you might have.      Website: https://l2aurum.com/  Discord: https://discord.gg/l2aurum
  • Topics

×
×
  • Create New...