Changeset 1642 for trunk/components/blitz/resources/glacier2.config
- Timestamp:
- 06/18/07 15:20:26 (18 months ago)
- Files:
-
- 1 modified
-
trunk/components/blitz/resources/glacier2.config (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/blitz/resources/glacier2.config
r1266 r1642 1 # 2 # $Id$ 3 # 4 # Copyright 2007 Glencoe Software, Inc. All rights reserved. 5 # Use is subject to license terms supplied in LICENSE.txt 6 # 7 # See the glacier2_example.config file for reference documentation 8 # 9 10 # 11 # DO NOT CHANGE. Name to lookup on the blitz server. 12 # 1 13 Glacier2.InstanceName=OMEROGlacier2 2 14 3 15 # 4 # We must set the stack size of new threads created by Glacier2. The5 # default on Linux is typically in the 10MB range, which is way too6 # high.16 # Host configurations. Only change the ip addresses, not the ports. 17 # If blitz and the router are colocated, only Client.Endpoints needs 18 # to be changed. 7 19 # 8 # Since Glacier2 always uses thread-per-connection mode, we must use9 # the property below to set the thread stack size. Internal Glacier210 # threads also use this property value.11 #12 Ice.ThreadPerConnection.StackSize=26214413 14 #15 # The client-visible endpoint of Glacier2. This should be an endpoint16 # visible from the public Internet, and it should be secure.17 #18 20 Glacier2.Client.Endpoints=tcp -p 9998 -h 127.0.0.1 19 20 #21 # The server-visible endpoint of Glacier2. This endpoint is only22 # required if callbacks are needed (leave empty otherwise). This23 # should be an endpoint on an internal network (like 192.168.x.x), or24 # on the loopback, so that the server is not directly accessible from25 # the Internet.26 #27 21 Glacier2.Server.Endpoints=tcp -h 127.0.0.1 28 29 #30 # The configures the session manager. If no external session manager31 # is used, sessions are only handled Glacier2 internally.32 #33 22 Glacier2.SessionManager=Manager:tcp -h 127.0.0.1 -p 9999 34 35 #36 # For this demo, we use a dummy permissions verifier that is37 # collocated with the session server process. This dummy permissions38 # verifier allows any user-id / password combination.39 #40 23 Glacier2.PermissionsVerifier=Verifier:tcp -h 127.0.0.1 -p 9999 41 24 42 25 # 43 # The timeout for inactive sessions. If any client session is inactive 44 # for longer than this value, the session expires and is removed. The 45 # unit is seconds. 26 # Performance configurations. 27 # Especially useful is session timeout (effects license releases). 46 28 # 47 29 Glacier2.SessionTimeout=600 48 49 # 50 # Glacier can forward requests buffered or unbuffered. Unbuffered 51 # means a lower resource consumption, as buffering requires one 52 # additional thread per connected client or server. However, without 53 # buffering, messages cannot be batched and message overriding doesn't 54 # work either. Also, with unbuffered request forwarding, the caller 55 # thread blocks for twoway requests. 56 # 57 Glacier2.Client.Buffered=1 58 Glacier2.Server.Buffered=1 59 60 # 61 # These two lines instruct Glacier2 to forward contexts both for 62 # regular routing, as well as for callbacks (reverse routing). 63 # 64 Glacier2.Client.ForwardContext=1 65 Glacier2.Server.ForwardContext=1 66 67 # 68 # To prevent Glacier2 from being flooded with requests from or to one 69 # particular client, Glacier2 can be configured to sleep for a certain 70 # period after all current requests for this client have been 71 # forwarded. During this sleep period, new requests for the client are 72 # queued. These requests are then all sent once the sleep period is 73 # over. The unit is milliseconds. 74 # 75 Glacier2.Client.SleepTime=500 76 Glacier2.Server.SleepTime=500 77 78 # 79 # With the two settings below, Glacier2 can be instructed to always 80 # batch oneways, even if they are sent with a _fwd/o instead of a 81 # _fwd/O context. 82 # 83 Glacier2.Client.AlwaysBatch=0 84 Glacier2.Server.AlwaysBatch=0 85 86 # 87 # Glacier2 always disables active connection management so there is no 88 # need to configure this manually. Connection retry does not need to 89 # be disabled, as it's safe for Glacier2 to retry outgoing connections 90 # to servers. Retry for incoming connections from clients must be 91 # disabled in the clients. 92 # 93 94 # 95 # Various settings to trace requests, overrides, etc. 96 # 97 Glacier2.Client.Trace.Request=1 98 Glacier2.Server.Trace.Request=1 99 Glacier2.Client.Trace.Override=1 100 Glacier2.Server.Trace.Override=1 101 Glacier2.Client.Trace.Reject=1 102 Glacier2.Trace.Session=1 103 Glacier2.Trace.RoutingTable=1 104 105 # 106 # Warn about connection exceptions 107 # 108 Ice.Warn.Connections=1 109 110 # 111 # Network Tracing 112 # 113 # 0 = no network tracing 114 # 1 = trace connection establishment and closure 115 # 2 = like 1, but more detailed 116 # 3 = like 2, but also trace data transfer 117 # 118 #Ice.Trace.Network=1 119 120 # 121 # Protocol Tracing 122 # 123 # 0 = no protocol tracing 124 # 1 = trace protocol messages 125 # 126 #Ice.Trace.Protocol=1 127 128 # 129 # Security Tracing 130 # 131 # 0 = no security tracing 132 # 1 = trace messages 133 # 134 #IceSSL.Trace.Security=1 135 136 # 137 # SSL Configuration 138 # 139 #Ice.Plugin.IceSSL=IceSSL:createIceSSL 140 #IceSSL.DefaultDir=../../../certs 141 #IceSSL.CertAuthFile=cacert.pem 142 #IceSSL.CertFile=s_rsa1024_pub.pem 143 #IceSSL.KeyFile=s_rsa1024_priv.pem 30 Ice.ThreadPerConnection.StackSize=262144
