From 3a04d706c9ebd13214e62fb944b4a8da6860bb91 Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Thu, 8 Oct 2009 17:34:51 -0700 Subject: Fear the lockless LLUDP implementation! --- bin/BclExtras.dll | Bin 0 -> 178688 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 bin/BclExtras.dll (limited to 'bin') diff --git a/bin/BclExtras.dll b/bin/BclExtras.dll new file mode 100644 index 0000000..505cf01 Binary files /dev/null and b/bin/BclExtras.dll differ -- cgit v1.1 From bf68dad64398f7bd4ae2992d345071d261c32e80 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 12 Oct 2009 23:21:32 +0100 Subject: 0004246: [Patch] FlotsamAssetCache deep scan & cache Thank you, mcortez. --- bin/config-include/FlotsamCache.ini.example | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'bin') diff --git a/bin/config-include/FlotsamCache.ini.example b/bin/config-include/FlotsamCache.ini.example index abb3b9a..b50d7ec 100644 --- a/bin/config-include/FlotsamCache.ini.example +++ b/bin/config-include/FlotsamCache.ini.example @@ -50,3 +50,10 @@ ; Warning level for cache directory size ;CacheWarnAt = 30000 + + ; Perform a deep scan of all assets within all regions, looking for all assets + ; present or referenced. Mark all assets found that are already present in the + ; cache, and request all assets that are found that are not already cached (this + ; will cause those assets to be cached) + ; + ; DeepScanBeforePurge = false -- cgit v1.1 From 3795cface2c089c9148e727b086cb4cd554ff38e Mon Sep 17 00:00:00 2001 From: Melanie Date: Wed, 14 Oct 2009 17:39:38 +0100 Subject: Enable LSL dialogs to display group names properly --- ...m.Region.ClientStack.LindenUDP.Tests.dll.config | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config (limited to 'bin') diff --git a/bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config b/bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config deleted file mode 100644 index a3f681d..0000000 --- a/bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config +++ /dev/null @@ -1,33 +0,0 @@ - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.1 From 0d2e6463d714bce8a6a628bd647c625feeeae8f6 Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Wed, 14 Oct 2009 11:43:31 -0700 Subject: * Minimized the number of times textures are pulled off the priority queue * OnQueueEmpty is still called async, but will not be called for a given category if the previous callback for that category is still running. This is the most balanced behavior I could find, and seems to work well * Added support for the old [ClientStack.LindenUDP] settings (including setting the receive buffer size) and added the new token bucket and global throttle settings * Added the AssetLoaderEnabled config variable to optionally disable loading assets from XML every startup. This gives a dramatic improvement in startup times for those who don't need the functionality every startup --- bin/OpenSim.ini.example | 62 +++++++++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 25 deletions(-) (limited to 'bin') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 5cb51b2..0ab6257 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -341,25 +341,6 @@ [ClientStack.LindenUDP] - ; This is the multiplier applied to all client throttles for outgoing UDP network data - ; If it is set to 1, then we obey the throttle settings as given to us by the client. If it is set to 3, for example, then we - ; multiply that setting by 3 (e.g. if the client gives us a setting of 250 kilobits per second then we - ; will actually push down data at a maximum rate of 750 kilobits per second). - ; - ; In principle, setting a multiplier greater than 1 will allow data to be pushed down to a client much faster - ; than its UI allows the setting to go. This may be okay in some situations, such as standalone OpenSim - ; applications on a LAN. However, the greater the multipler, the higher the risk of packet drop, resulting - ; in symptoms such as missing terrain or objects. A much better solution is to change the client UI to allow - ; higher network bandwidth settings directly, though this isn't always possible. - ; - ; Currently this setting is 2 by default because we currently send much more texture data than is strictly - ; necessary. A setting of 1 could result in slow texture transfer. This will be fixed when the transfer - ; of textures at different levels of quality is improved. - ; - ; Pre r7113, this setting was not exposed but was effectively 8. You may want to try this if you encounter - ; unexpected difficulties - client_throttle_multiplier = 2; - ; the client socket receive buffer size determines how many ; incoming requests we can process; the default on .NET is 8192 ; which is about 2 4k-sized UDP datagrams. On mono this is @@ -374,12 +355,39 @@ ; by the system's settings for the maximum client receive buffer ; size (on linux systems you can set that with "sysctl -w ; net.core.rmem_max=X") - ; - ; client_socket_rcvbuf_size = 8388608 - - ; Maximum bits per second to send to any single client. This will override the user's viewer preference settings. - - ; client_throttle_max_bps = 1500000 + ;client_socket_rcvbuf_size = 8388608 + + ; Maximum outbound bits per second for a single scene. This can be used to + ; throttle total outbound UDP traffic for a simulator. The default value is + ; 0, meaning no throttling at the scene level. The example given here is + ; 20 megabits + ;scene_throttle_max_bps = 20971520 + + ; Maximum bits per second to send to any single client. This will override + ; the user's viewer preference settings. The default value is 0, meaning no + ; aggregate throttling on clients (only per-category throttling). The + ; example given here is 1.5 megabits + ;client_throttle_max_bps = 1572864 + + ; Per-client bits per second rates for the various throttle categories. + ; These are default values that will be overriden by clients + ;resend_default = 12500 + ;land_default = 500 + ;wind_default = 500 + ;cloud_default = 50 + ;task_default = 500 + ;texture_default = 500 + ;asset_default = 500 + + ; Per-client maximum burst rates in bits per second for the various throttle + ; categories. These are default values that will be overriden by clients + ;resend_limit = 18750 + ;land_limit = 29750 + ;wind_limit = 18750 + ;cloud_limit = 18750 + ;task_limit = 55750 + ;texture_limit = 55750 + ;asset_limit = 27500 [Chat] ; Controls whether the chat module is enabled. Default is true. @@ -1381,6 +1389,10 @@ [AssetService] DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" AssetLoaderArgs = "assets/AssetSets.xml" + + ; Disable this to prevent the default asset set from being inserted into the + ; asset store each time the region starts + AssetLoaderEnabled = true [GridService] ;; default standalone, overridable in StandaloneCommon.ini -- cgit v1.1 From 82012ec4e3c441021795c66112a66e002d459e73 Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Wed, 14 Oct 2009 16:21:48 -0700 Subject: * Clean up the SetThrottle() code and add a maxBurstRate parameter to allow more tweaking in the future --- bin/OpenSim.ini.example | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'bin') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 0ab6257..983a7e5 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -357,19 +357,19 @@ ; net.core.rmem_max=X") ;client_socket_rcvbuf_size = 8388608 - ; Maximum outbound bits per second for a single scene. This can be used to + ; Maximum outbound bytes per second for a single scene. This can be used to ; throttle total outbound UDP traffic for a simulator. The default value is ; 0, meaning no throttling at the scene level. The example given here is ; 20 megabits - ;scene_throttle_max_bps = 20971520 + ;scene_throttle_max_bps = 2621440 ; Maximum bits per second to send to any single client. This will override ; the user's viewer preference settings. The default value is 0, meaning no ; aggregate throttling on clients (only per-category throttling). The ; example given here is 1.5 megabits - ;client_throttle_max_bps = 1572864 + ;client_throttle_max_bps = 196608 - ; Per-client bits per second rates for the various throttle categories. + ; Per-client bytes per second rates for the various throttle categories. ; These are default values that will be overriden by clients ;resend_default = 12500 ;land_default = 500 @@ -378,16 +378,19 @@ ;task_default = 500 ;texture_default = 500 ;asset_default = 500 + ;state_default = 500 - ; Per-client maximum burst rates in bits per second for the various throttle - ; categories. These are default values that will be overriden by clients + ; Per-client maximum burst rates in bytes per second for the various + ; throttle categories. These are default values that will be overriden by + ; clients ;resend_limit = 18750 ;land_limit = 29750 ;wind_limit = 18750 ;cloud_limit = 18750 - ;task_limit = 55750 + ;task_limit = 18750 ;texture_limit = 55750 ;asset_limit = 27500 + ;state_limit = 37000 [Chat] ; Controls whether the chat module is enabled. Default is true. -- cgit v1.1 From 06990b074c17c2201ed379bf1ae4c7191ab3187f Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Wed, 14 Oct 2009 16:48:27 -0700 Subject: Allow the LLUDP server to run in either synchronous or asynchronous mode with a config setting, defaulting to synchronous mode --- bin/OpenSim.ini.example | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 983a7e5..002745d 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -341,7 +341,13 @@ [ClientStack.LindenUDP] - ; the client socket receive buffer size determines how many + ; Set this to true to process incoming packets asynchronously. Networking is + ; already separated from packet handling with a queue, so this will only + ; affect whether networking internals such as packet decoding and + ; acknowledgement accounting are done synchronously or asynchronously + async_packet_handling = false + + ; The client socket receive buffer size determines how many ; incoming requests we can process; the default on .NET is 8192 ; which is about 2 4k-sized UDP datagrams. On mono this is ; whatever the underlying operating system has as default; for -- cgit v1.1