Jump to content

Recommended Posts

Posted

so 1 dedi in europe 1 dedi in russia 1 dedi in africa 1 dedi in canada 1 dedi in amurica 1 dedi in brasil and you have 0 lag globally according to your results: perhaps, maybe, could be, cause i dont see any other use the game data cache is still away from game servers so game server 1 to gameserver N+1 will still have lag to send player1 actions to player2

Posted (edited)

World data is unique to each server, while game data can be edited from server to server, depending type of server (faction, multiclass, etc) and rates. So until you want 100 servers clones - no usage at all, except experimenting for your personal usage. You still need a local db for each server, with unique modifications per server (by game data I assume you speak about all static data such as recipes, items, etc while world data would be "instanced" stuff such as spawns, players data, items, etc).

 

DB related, there is strictly no problem with L2J. At worst you got easy ways to fix them (db pooler change/tweak, MySQL server tweak, and at very very worst some edits to avoid db calls - which mean memory management using Java containers).

 

You should better find solutions for the network aspect.

Edited by Tryskell
Posted

Forget.

Cloud is not abstract thing, is a farm of servers who talks one to each other with network protocols.

And at end is still one database, even clustered in master-master replication.

I see here only lags and more lags.

Customer in web app can wait 500ms to response, but player not.

This whole diagram is only good for mass users, for example 1kk (horizontal scaling) with acceptable (for web users) response, not for fluent game for thousands players.

You theory (no lag) can  only fits consumables and movement, but not for player-player interactions (both players from DIFFERENT servers, Nightw0lf wrote about this) like pvp, trade, siege.

 

If  I can understand You idea(?), I suppouse interact one player from one server with another from another server?

 

But yes, decoupling game and cache is good idea (l2off has it), but cache should "talk" to server only in shared memory, not throgh network (lag)

Posted (edited)

As you said everything depends on data to run, even most simple request add friend packet have got many calls to check player state, his friendlist, target state. You would either have to send a lot of data each time to make a lot of calls.

 

Architecture seems to be a lot more complicated

Edited by vampir
Posted
22 hours ago, .Elfocrash said:

And you are probably well aware that "shared memory" is something like Redis which is a memory cache over the network. There is no such thing like shared memory without networking. It has to communicate somehow.

 

I can see that it runs pretty well on a local network anyway so just wait till i show you what i mean.

My bad, i'm thinking about sockets on same machine (100% not Redis or any other message broker)

Ok, i'm waiting.

Posted

Sounds very efficient, as efficient as connecting the CPU to a RAM stick a thousands of miles away with bonus noise and failure rates introduced by the network. Every single operation will involve a 200ms latency at best

Posted
30 minutes ago, .Elfocrash said:

Did you even read that this is meant for a local service fabric cluster and not for geolocation based traffic split? It literally replicates the CacheD logic of L2OFF so it's as efficient as L2OFF itself it.

 

Just saw the picture my bad

Posted

 

On 1/25/2018 at 5:23 PM, Nightw0lf said:

so 1 dedi in europe 1 dedi in russia 1 dedi in africa 1 dedi in canada 1 dedi in amurica 1 dedi in brasil and you have 0 lag globally according to your results: perhaps, maybe, could be, cause i dont see any other use the game data cache is still away from game servers so game server 1 to gameserver N+1 will still have lag to send player1 actions to player2

 

lmao

Posted
3 hours ago, .Elfocrash said:

Did you even read that this is meant for a local service fabric cluster and not for geolocation based traffic split? It literally replicates the CacheD logic of L2OFF so it's as efficient as L2OFF itself it.

It can easily be done with the right tools lol

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

    • L2JMobius C1 System C1 + bonus textures C3 for C1 https://www.mediafire.com/folder/6oh7l7hf34xr9/C1
    • https://prnt.sc/Bkkc0ShGXv9m https://prnt.sc/-JFLvZXsn27A
    • Hello guys want to sell adena in L2 Reborn Signature x1  Stock =14kk good price 
    • Hi guys, I have the following problem, I want to set up two servers on the same dedicated server and I can't.   L2jacis 409 Linux Server. The first gameserver has the following configuration: # ================================================================ # Gameserver setting # ================================================================ # This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave * Hostname = 190.25.103.103 # Bind ip of the gameserver, use * to bind on all available IPs. GameserverHostname = * GameserverPort = 7777 # The Loginserver host and port. LoginHost = 127.0.0.1 LoginPort = 9014 # This is the server id that the gameserver will request. RequestServerID = 1 # If set to true, the login will give an other id to the server (if the requested id is already reserved). AcceptAlternateID = True UseBlowfishCipher = True # ================================================================ # Database informations # ================================================================ URL = jdbc:mariadb://localhost/server1 Login = server1 Password = server1 I configured the second gameserver like this:   # ================================================================ # Gameserver setting # ================================================================ # This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave * Hostname = 0.0.0.0 # Bind ip of the gameserver, use * to bind on all available IPs. GameserverHostname = * GameserverPort = 7788 # The Loginserver host and port. LoginHost = 127.0.0.1 LoginPort = 9014 # This is the server id that the gameserver will request. RequestServerID = 2 # If set to true, the login will give an other id to the server (if the requested id is already reserved). AcceptAlternateID = True UseBlowfishCipher = True # ================================================================ # Database informations # ================================================================ URL = jdbc:mariadb://localhost/server2 Login = server2 Password = server2 apart from having tested 0.0.0.0 on the second gameserver I also tried 127.0.0.1 In both cases I see the two servers in the login when I log in, but I try to enter the one with the lowest ping and it kicks me out. The other server always appears with ping 9999 and I try to enter but it doesn't do anything and it freezes the login so I have to log in again. The hexids are in their respective folders. For server 1, it has its hexid inside the gameserver config folder, and I checked that the hexid id is the same id, for example id 1 in the gameserver is also id1 for server 1, and hexid 2 has its hexid 2 for server 2. The server ports are open and listening when I turn on both gameservers. I really don't know what could be wrong. If you could give me some help I would appreciate it. Excuse my English.
  • Topics

×
×
  • Create New...