CORBA::ORB_init()
, by an application
using the standard argc/argv tuple passed to the application's
main()
. Most of the options that can be exercised
through
environment variables can also be manipulated through command-line
options. Command-line options override the environment variable
settings if both are enabled.
svc.conf
. The service configurator is opened and
processed by the ORB in CORBA::ORB_init()
. The service
configurator processing is done after all the command-line options
have been parsed.
In addition to being able to define the port where these known services are listening for multicast requests, as above, it is possible to set an environment variable that specifies the IOR of any named service. For example
Environment Variable Description NameServicePort
whichSpecifies which port the Naming Service is listening on for multicast requests. TradingServicePort
whichSpecifies which port the Trading Service is listening on for multicast requests. ImplRepoServicePort
whichSpecifies which port the Implementation Repository is listening on for multicast requests.
NameServiceIOR=<which,TradingServiceIOR=<which>,
ImplRepoServiceIOR=<which>, MyServiceIOR=<which>
. This
will have a similar effect to defining an -ORBInitRef value on the
command line (see below). Any value set as a command line -ORBInitRef
option will override any value set as an environment variable for the
same service name.
% NameService.exe -ORBEndpoint iiop://localhost:12345
% client.exe -ORBInitRef NameService=corbaloc:iiop:localhost:12345/NameService
An explanation of these command-line options appears below.
CORBA::ORB_init()
. ORB
initialization options are commonly passed into the program from the
command-line, using the argc
and argv
parameters available to the main()
function.
Command-line options can be classified into the following groups according to their purposes:
Option Description -ORBSvcConf
config filenameSpecifies the name of the file used to read service configuration directives via the Service Configurator framework. By default, a service configurator-based application will look for a file named "svc.conf"
in the current directory.-ORBSvcConfDirective
directivestringSpecifies a service configuration directive, which is passed to the Service Configurator. You can pass multiple of these options on the same command-line. -ORBServiceConfigLoggerKey
logger keySet the logger key in the ACE_Service_Config
framework. Equivalent to the-k
option on the ACE service configurator class.-ORBSkipServiceConfigOpen
Do not process any svc.conf
files, which has the side-effect of not initializing the ACE Service Configurator framework or registering the SIGHUP signal.-ORBIgnoreDefaultSvcConfFile
Do not process default svc.conf
file. This does not prohibit processing of explicitly provided-ORBSvcConf
and/or-ORBSvcConfDirective
options.-ORBGestalt Local|ORB:orbid
Instruct the ORB to create a local configuration "gestalt" or context. By default, all ORBs share a common configuration context. This is defined by a Service Repository that contains service objects, such as the resource factory. In some cases multiple ORBs may be dynamically loaded and as such may wish to have distinct configurations. Passing the Local
argument achieves this. Service objects loaded by an ORB with a local configuration context will be used by that ORB in place of any default service object. The final variation is that of shared contexts. Passing the argumentORB:orbid
will cause the ORB to share the local configuration of another ORB as identified with the supplied id. The shared context feature is not yet implemented.
Option Description -ORBDebug
Instructs the ORB to print debugging messages from the service configurator framework. This option does not have a value but is used as a toggle to enable or disable debugging messages. -ORBDebugLevel
levelControl the level of debugging in the ORB. Higher numbers generate more output (try 10). The default value of this option is 0. -ORBVerboseLogging
level (0|1|2)Controls the amount of status data printed on each line of the debug log. Higher numbers generate more output. The default value of this option is 0. -ORBLogFile
LogfilenameCauses all ACE_DEBUG
andACE_ERROR
output to be redirected to the designatedLogfilename
.-ORBHandleLoggingStrategyEvents
LoggingStrategyServiceNameCauses use of ORB reactor for dispatching timer events to ACE_Logging_Strategy configured as a dynamic service with name LoggingStrategyServiceName
. This allows to implement log file rotation.-ORBObjRefStyle
IOR/URLSpecifies the user-visible style of object references. The IOR
style (default) is the conventional CORBA object reference, whereas theURL
style looks more like a URL.
Option Description -ORBCDRTradeoff
maxsizeControl the strategy to tradeoff between copy vs. no copy marshaling of octet sequences. If an octet sequence is smaller than maxsize
(which defaults toACE_DEFAULT_CDR_MEMORY_TRADEOFF
) -- and the current message block contains enough space for it -- the octet sequence is copied instead of appended to the CDR stream.-ORBMaxMessageSize
maxsizeSet maximum size of outgoing GIOP request/reply. The request or reply being sent will be fragmented, if necessary. -ORBCollocation
global/per-orb/noSpecifies the use of collocation object optimization. If global
is specified (default), objects in the same process will be treated as collocated. Ifper-orb
is specified, only objects in the same ORB are treated as collocated. When no is specified, no objects are treated as collocated.-ORBCollocationStrategy
thru_poa/direct/bestSpecifies what type of collocated object to use. If not specified the TAO_DEFAULT_COLLOCATION_STRATEGY default (default on thru_poa) is used. If the thru_poa
strategy is used, TAO uses the collocation object implementation that respects POA's current state and policies. When using thedirect
strategy, method invocations on collocated objects become direct calls to servant without checking POA's status, which can increase performance. If you use thedirect
strategy, your interfaces must be compiled with the-Gd
IDL compiler option. If you choose for thebest
strategy, TAO tries to perform the best possible collocation, firstdirect
collocation if possible, elsethru_poa
collocation if possible and otherwise no collocation.-ORBAMICollocation
1|0Specifies what happens when making collocated AMI invocations. When 1 (default) an AMI call will be done on a collocated servant and the client thread will be used to invoke the servant, when 0 the collocated call will be converted to a remote call so that a different thread could be used to execute the servant. -ORBNodelay
boolean (0|1)Enable or disable the TCP_NODELAY
option (Nagle's algorithm). By default,TCP_NODELAY
is enabled.-ORBRcvSock
receive buffer sizeSpecify the size of the socket receive buffer as a positive, non-zero integer. If not specified, the ACE_DEFAULT_MAX_SOCKET_BUFSIZ
default is used.-ORBSndSock
send buffer sizeSpecify the size of the socket send buffer as a positive, non-zero integer. If not specified, the ACE_DEFAULT_MAX_SOCKET_BUFSIZ
default is used.-ORBStdProfileComponents
boolean (0|1)If 0 then the ORB does not generate the OMG standardized profile components, such as the ORB type and code sets. Notice that the presence of this components is optional in GIOP 1.1 The default value is controlled by a compile-time flag defined in orbconf.h
.-ORBNegotiateCodesets
boolean (0|1)If 0 then the ORB does not include the codeset negotiation subsystem, TAO_Codeset. This yields a somewhat smaller runtime footprint as well as a smaller IOR. However this also removes the ability to interoperate with ORBs on systems using alternative character or wide charater encodings. The default value may be set at compile time by defining TAO_NEGOTIATE_CODESETS 0
inorbconf.h
. Codeset negotiation support is enabled by default in TAO as shipped.
Note to static lib users In order to build TAO statically and get the codeset negotiation feature, two additional steps are needed to ensure the TAO_Codeset library is linked in and initalized. Add the MPC feature "negotiate_codesets=1" to the default.features file and regenerate your makefiles, and add#include "tao/Codeset/Codeset.h"
somewhere in your application source, such as the cpp file containing your main.-ORBSingleReadOptimization
boolean (0|1)This option controls whether TAO's ``single read optimization'' is used when receiving requests. If this option is disabled ( 0
), the ORB will do two reads to read a request: one reads the request header and the other reads the request payload. If this option is enabled (1
), the ORB will do a read of sizeTAO_MAXBUFSIZE
, hoping to read the entire request. If more than one request is read they will be queued up for processing later.This option defaults to
1
because it can provide better performance. In the case of Real-time CORBA, however, this option should be set to0
. Consider the following scenario: (1) two requests are read from one socket, (2) the additional request is queued, and (3) the ORB uses its Reactor's notification mechanism to wake up the follower threads. If at the same time, however, new requests arrive on others sockets of higher priority the lower priority queued message will be processed before the newly arrived higher priority request since Reactor notifications are given preferences over normal I/O, thereby causing priority inversion.-ORBDisableRTCollocation
boolean (0|1)This option controls whether the application wants to use or discard RT collocation decisions made by the RT ORB. A value of 1
(true) disables RT collocation decisions and falls back on the default collocation decisions implemented in the default ORB, which is useful for applications using the RT ORB and doesn't want to use the RT collocation decisions but fallback on the default decisions for better performance. The default value is0
(false).-ORBUseLocalMemoryPool
boolean (0|1)TAO can use a local memory pool to satisfy some of its needs for heap storage, as it is often more efficient than using the platform's default memory allocator. The local pool will always grow as large as necessary to satisfy memory allocations, but it will never shrink. This means that sometimes a process can retain memory that it no longer needs. If the default allocator is used then TAO gives memory back as soon as it is not needed which allows for better resource sharing at the expense of memory deallocation time. If this option is disabled (
0
), the ORB will use the default allocator for the platform.If this option is enabled (
1
), the orb will use the local memory pool.This option defaults to the compile-time option specified by
TAO_USES_LOCAL_MEMORY_POOL
.
Option Description -ORBAcceptErrorDelay
secondsThis argument controls the amount of time to wait before attempting to accept new connections in the event that a transient error occurs (such as running out of file handles). A delay of zero indicates that accepting should not be attempted again after the transient error and the handler will be removed from the reactor. -ORBDefaultInitRef
IOR prefixThis argument allows resolution of initial references not explicitly specified with -ORBInitRef
. It requires a URL prefix that, after appending a slash '/' ('|' for the UIOP pluggable protocol) and a simple object key, forms a new URL to identify an initial object reference. The URL prefix format currently supported is based on the standardcorbaloc
mechanism in the CORBA Interoperable Naming Service.-ORBDottedDecimalAddresses
boolean (0|1)Use the dotted decimal notation for addresses. This option can be used to workaround broken DNS implementations and may also reduce the time spent resolving IP addresses. This option is enabled ( 1
) by default on Windows since DNS is often misconfigured there. On other platforms this option is disabled (0
) since domain names are more flexible address notations for IORs.-ORBIIOPClientPortBase
baseClients using IIOP can be constrained to connect from a range of ports. The range is set using this base value then supplying a span to make it from base
tobase + span
. The default base port value is 0, meaning a system selected port is used. If there are no available ports in the range, the ORB will throw a TRANSIENT exception.-ORBIIOPClientPortSpan
spanClients using IIOP can be constrained to connect from a range of ports. The range is set using a base port value along with this span to make a range from base
tobase + span
. The default span is 0, meaning a client may connect from only the base port. The span is ignored if the base port number is 0.-ORBNoServerSideNameLookups
boolean (0|1)Setting this to 1 will prevent the ORB from looking up the peer's hostname when accepting an incoming connection from a client when the above value ( ORBDottedDecimalAddresses
) is0
. This option is disabled (0
) by default.-ORBEndpoint
endpointThis option is same as the -ORBListenEndPoints
option described below. This option will be deprecated in later versions on TAO since the CORBA specification now defines the-ORBListenEndpoints
option instead.‑ORBPreferredInterfaces
targetNetwork=localNetwork[,...]This option allows clients running on a multihomed host to pick a local network/interface to communicate with a remote target. When TAO attempts to establish a connection with a host matching targetNetwork, then it will use the local ip address matching localNetwork. Simple wildcards can be used for both parameters, and multiple preferred interfaces can be specified using comma separators (no embedded spaces allowed) or additional ‑ORBPreferredInterfaces directives. For example, for a machine with two network cards identified by the ip addresses 192.168.1.10 and 192.168.1.20, you can use -ORBPreferredInterfaces *=*10,*=*20 (or the two directives ‑ORBPreferredInterfaces *=*10 ‑ORBPreferredInterfaces *=*20). Or to force all communication to first try to use the loopback address, use ‑ORBPreferredInterfaces *=127.0.0.1
. targetNetwork can use any string, and must typically match with the value read from an IOR. localNetwork must use a dotted decimal address, because it will be matched with the local ip interfaces.-ORBEnforcePreferredInterfaces
boolean (0|1)If this option is set to 1
(true), then TAO will only try to use the interfaces specified by the-ORBPreferredInterfaces
option. The default is0
(false), in which case if a connection cannot be made using a preferred interface, TAO will attempt to use the default interface (INADDR_ANY
). Note: If none of the preferred interfaces apply to an outgoing connection then they will not be enforced. For this option to have any effect, therefore, the connection through a legal preferred interface must fail.-ORBKeepalive
boolean (0|1)This option allows users to specify that the SO_KEEPALIVE option is set on TCP sockets used by IIOP. The default is 0
(false).-ORBDontRoute
boolean (0|1)This option allows users to specify that the SO_DONTROUTE option is set on TCP sockets used by IIOP. The default is 0
(false).-ORBLingerTimeout
timeoutThis option allows users to set the linger timeout on a TCP socket before closing it. Hence, this option is only useful when using IIOP. The timeout
value can be in the range of zero to the maximum signed integer value for the particular platform on which TAO is running.-ORBIPHopLimit
hopsThis option allows users to specify the TTL (IPv4) or hop limit (IPv6) value used when datagrams are sent over a socket. The default is the one selected by the Operating System. The hops
value can be in the range of zero to the maximum signed integer value for the particular platform on which TAO is running. Currently this feature works in IIOP, DIOP, SCIOP, and MIOP.-ORBIPMulticastLoop
boolean (0|1)This option allows users to specify that the IP_MULTICAST_LOOP / IPV6_MULTICAST_LOOP option is set on multicast sockets. The default is 1
(true).-ORBListenEndpoints
endpointThis option was introduced with the CORBA Object Reference Template (ORT) specification. It instructs a server ORB to listen for requests on the interface specified by endpoint
. When used with Real-time CORBA, the option specifies the endpoints that the default thread pool listens to. TAO endpoints are specified using a URL style format. An endpoint has the form:whereprotocol://V.v@addr1,...,W.w@addrN
V.v
andW.w
are optional protocol versions for each address. An example of an IIOP endpoint is:Sets of endpoints may be specified using multipleiiop://hostname:port
-ORBListenEndpoints
options or by delimiting endpoints with a semi-colon (;). For example,is equivalent to:-ORBListenEndpoints iiop://localhost:9999 -ORBListenEndpoints uiop:///tmp/mylocalsock -ORBListenEndpoints shmiop://10002
Notice the single quotes (') in the latter option specification. Single quotes are needed to prevent the shell from interpreting text after the semi-colon as another command to run.-ORBListenEndpoints 'iiop://localhost:9999;uiop:///tmp/mylocalsock;shmiop://10002'
If an endpoint is specified without an
addr
such as the following:then a default endpoint will be created for the specified protocol.-ORBListenEndpoints uiop:// -ORBListenEndpoints shmiop://
Click here for much more on how to specify endpoints.
-ORBLaneEndpoint
endpointThis option is same as the -ORBLaneListenEndPoints
option described below. This option will be deprecated in later versions on TAO.-ORBLaneListenEndpoints
thread-pool-id:thread-lane-id endpointThis option allows the user to specify endpoints for thread pools and lanes. This option is only meaningful when used with Real-time CORBA and only makes sense when the thread pools and lanes are created in the same order across server incarnations. See -ORBListenEndPoints
option on how to specify endpoints. An example is:where2:3 iiop://localhost:2345
2
specifies the second thread pool created by the process and3
specifies the third lane of that thread pool. Note that0
should be used for the lane when specifying endpoints for thread pools without lanes.*:*
can be used to specify all pools and lanes,1:*
means all lanes from pool1
, and*:1
means lane1
from all pools.Sets of endpoints may be specified using multiple
-ORBLaneListenEndpoints
options or by delimiting endpoints with a semi-colon (;). For example,is equivalent to:-ORBLaneListenEndpoints 1:4 iiop://localhost:9999 -ORBLaneListenEndpoints 1:4 uiop:///tmp/mylocalsock -ORBLaneListenEndpoints 1:4 shmiop://10002
Notice the single quotes (') in the latter option specification. Single quotes are needed to prevent the shell from interpreting text after the semi-colon as another command to run.-ORBLaneListenEndpoints 1:4 'iiop://localhost:9999;uiop:///tmp/mylocalsock;shmiop://10002'
If an endpoint is specified without an
addr
such as the following:then a default endpoint will be created for the specified protocol.-ORBLaneListenEndpoints 2:3 uiop:// -ORBLaneListenEndpoints 2:3 shmiop://
-ORBImplRepoServicePort
portspecSpecifies which port the Implementation Repository is listening on for multicast requests. By default, the TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT
(10018) is used.-ORBInitRef
ObjectId=IORAllows specification of an arbitrary object reference for an initial service. The IOR could be in any one of the following formats: OMG IOR
,URL
,corbaloc
(includinguioploc
) orfile
.corbaloc
is a multiple end-point IOR understood byORB::string_to_object()
and used as a boot-strapping mechanism by theORB::resolve_initial_references()
. The mappings specified through this argument override the ORB install-time defaults. Thefile://pathname
interprets the contents of thepathname
file as an object reference in any of the above formats.-ORBMulticastDiscoveryEndpoint
endpointSpecifies the endpoint
that should be used for locating the Naming Service through multicast. endpoint is of the formip-number:port-number
(e.g.,"tango.cs.wustl.edu:1234"
or"128.252.166.57:1234"
). If there is no':'
in the end_point it is assumed to be a port number, with the IP address beingINADDR_ANY
.-ORBNameServicePort
portspecSpecifies which port the Naming Service is listening on for multicast requests. By default, the TAO_DEFAULT_NAME_SERVICE_REQUEST_PORT
(10013) value is used.-ORBTradingServicePort
portspecSpecifies to which port the Trading Service is listening on for multicast requests. By default, the TAO_DEFAULT_TRADING_SERVICE_REQUEST_PORT
(10016) value is used.-ORBUseIMR
boolean (0|1)This argument specifies that for POAs with the PERSISTENT
policy, that the TAO Implementation Repository should be used for notification of startup and shutdown and object references should be changed to use the Implementation Repository also (N.B. although see-ORBIMREndpointsInIOR
below).-ORBIMREndpointsInIOR
boolean (0|1)This argument specifies whether, for POAs with the PERSISTENT
policy, the TAO Implementation Repository listen endpoints should be encoded into IORs when-ORBUseIMR
is set. The default is true.-ORBUseParallelConnects
boolean (0|1)This option allows users to specify the ORB attempt to connect simultaneously to all endpoints listed in profiles, rather than stepping through individual endpoints, trying and possibly failing, before moving on to the next. For this feature to work, the server must be using shared profiles. The default is 0
(false).-ORBUseSharedProfile
boolean (0|1)This option allows multiple implicit or explicit endpoints to be combined into a single profile for a given protocol rather than using multiple profiles. For IIOP in non RTCORBA environments, the CORBA specified tagged component TAG_ALTERNATE_IIOP_ADDRESS
is used to encode the combined endpoints. Processses using RTCORBA and priority banded connections will continue to generate Profiles withTAO_TAG_IIOP_ENDPOINT
components. This options is disabled by default.-ORBParallelConnectDelay
unsigned long msecWhen using parallel connection attempts, this option defines the number of milliseconds to delay when polling previously started connection attempts. If a server is likely to be busy, this client side option will help avoid creating redundant connections that must be accepted, only to be closed a moment later. However, if the first reachable endpoint is far down the list, this option will increase the delay before that endpoint is reached. The default is 0
.-ORBPreferIPV6Interfaces
boolean (0|1)If option is 1
(true) it directs the default endpoint selector for client connections to first attempt to connect any IIOP endpoints from a provided IOR specifying IPv6 interfaces. Only when none of these can be found or sucessfully connected IPv4 interfaces will be tried. The default is0
(false).This option is only available for IPv6 enabled builds of TAO (
ACE_HAS_IPV6
).-ORBConnectIPV6Only
boolean (0|1)If this option is 1
(true) it directs a server ORB to:
allow only IPv6 interfaces as listening endpoints encode only IPv6 interfaces in the IOR profile prevent (depending on availability of IPV6_V6ONLY socket option) or block IPv6 to IPv4 connections This option directs the default endpoint selector for client connections to only attempt to connect any IIOP endpoints from a provided IOR specifying IPv6 interfaces. Any available IPv4 interfaces will be ignored. The default setting is
0
(false).This option is only available for IPv6 enabled builds of TAO (ACE_HAS_IPV6).
-ORBUseIPV6LinkLocal
boolean (0|1)If this option is 1
(true) it directs a server ORB to allow connections on IPv6 link local addresses. The default setting is0
(false).This option is only available for IPv6 enabled builds of TAO (ACE_HAS_IPV6).
-ORBAllowZiopNoServerPolicies
boolean (0|1)If this option is 1
(true) it directs a client ORB to use any client-side (sender) configured ZIOP compression without having seen any server-side (listener) ZIOP available compressor's list policies. The CORBA Compressed GIOP (ZIOP) V1.0 specification states that the Server publishes its available (i.e. allowable) compressors in the IOR of each server object. This option allows ZIOP to be used with MIOP and/or CORBALOCs that have no such compression list policies embedded. The client simply has to trust that the server is configured to allow its highest priority compressor to be used. Any servers that cannot decompress the client's used ZIOP compressor will reject the request as they simply cannot decode or handle it (client-side (sender) comms will simply timeout or lock-up for any such incorrect two-way requests, or be oblivious to the failure for any such incorrect one-way requests). The default setting is0
(false) i.e. to disallow compression in such cases and conform to the ZIOP specification; but this can be changed by adding#define TAO_ALLOW_ZIOP_NO_SERVER_POLICIES_DEFAULT true
to TAO'sconfig.h
Option Description -ORBForwardOnTransientLimit
limitUse this option to cycle through profiles when establishing a connection with a server or when a server replies to a request with a TRANSIENT exception. The number of retries will not exceed limit. -ORBForwardOnCommFailureLimit
limitUse this option to cycle through profiles when a server replies to a request with a COMM_FAILURE exception. The number of retries will not exceed limit. -ORBForwardOnObjectNotExistLimit
limitUse this option to cycle through profiles when a server replies to a request with a OBJECT_NOT_EXIST exception. The number of retries will not exceed limit. -ORBForwardOnInvObjrefLimit
limitUse this option to cycle through profiles when a server replies to a request with a INV_OBJREF exception. The number of retries will not exceed limit. -ORBForwardOnReplyClosedLimit
limitUse this option to cycle through profiles when it has been detected that a connection is closed when reading a server reply and having the server possibly process the reqest more than once is acceptable. This option currently does not work under FreeBSD, OpenVMS, AIX, and Solaris. The number of retries will not exceed limit. If this option is used then -ORBForwardOnTransientLimit should also be used to avoid a TRANSIENT exception being thrown. -ORBForwardDelay
int msecsDefines the number of milliseconds to delay while cycling through profiles when the first base profile is to be tried. The default is 100,000 milliseconds (0.1 seconds).
Option Description -ORBId
orb_nameThis option allows the name of an ORB to be set to orb_name
. TheORBId
will be passed to theCORBA::ORB_init()
method to differentiate coexisting ORBs (when there is more than one ORB).-ORBServerId
server_idThis option allows setting a name/id to a server to uniquely identify a server to TAO's Implementation Repository. -ORBDaemon
Specifies that the ORB should daemonize itself, i.e., run as a background process. Note, that this changes the working directory to be the root directory "/". This especially affects relative paths specified at the command line. This option is only meaningful on OS platforms that support daemonization. -ORBForwardInvocationOnObjectNotExist
boolean (0|1)If this option is 1, the ORB forwards the request to next available profile when receiving OBJECT_NOT_EXIST exception reply. The default value is 0
which means the request is not forwarded upon OBJECT_NOT_EXIST exception.-ORBForwardOnceOnObjectNotExist
boolean (0|1)If this option is 1, the ORB forwards the request if it receives OBJECT_NOT_EXIST exception reply. If it receives one of the exceptions (OBJECT_NOT_EXIST, COMM_FAILURE, TRANSIENT, INV_OBJREF) during forwarding, the request is not forwarded again and exception is propagated to the client code. The default value is 0
which means the request is not forwarded upon OBJECT_NOT_EXIST exception.-ORBForwardOnceOnCommFailure
boolean (0|1)If this option is 1, the ORB forwards the request if it receives COMM_FAILURE exception reply. If it receives one of the exceptions (OBJECT_NOT_EXIST, COMM_FAILURE, TRANSIENT, INV_OBJREF) during forwarding, the request is not forwarded again and exception is propagated to the client code. The default value is 0
which means the request is not forwarded upon COMM_FAILURE exception.-ORBForwardOnceOnTransient
boolean (0|1)If this option is 1, the ORB forwards the request if it receives TRANSIENT exception reply. If it receives one of the exceptions (OBJECT_NOT_EXIST, COMM_FAILURE, TRANSIENT, INV_OBJREF) during forwarding, the request is not forwarded again and exception is propagated to the client code. The default value is 0
which means the request is not forwarded upon TRANSIENT exception.-ORBForwardOnceOnInvObjref
boolean (0|1)If this option is 1, the ORB forwards the request if it receives INV_OBJREF exception reply. If it receives one of the exceptions (OBJECT_NOT_EXIST, COMM_FAILURE, TRANSIENT, INV_OBJREF) during forwarding, the request is not forwarded again and exception is propagated to the client code. The default value is 0
which means the request is not forwarded upon INV_OBJREF exception.
svc.conf
with options that configure appropriate strategies in to the ORB. The
options enable developers to control the behavior of the factories,
strategies, and resources that the ORB uses. By default, TAO provides
the following set of factories:
svc.conf
file can represent
either the components provided by TAO (including the
Resource_Factory
, and the
Server_Strategy_Factory
and
Client_Strategy_Factory
) or customized components
developed by the users. The service configurator file
(svc.conf
) provided by the user identifies the components
to be loaded with the required strategies for each component.
A svc.conf
file is not required to
run
TAO applications since TAO provides a set of default values for
strategies useful for the most common use cases, i.e., the
default values are set for all options. When a TAO application calls
CORBA::ORB_init()
it will try to find the
svc.conf
file. If found, TAO will parse and process the
directives in the file; if not found, the default value for the
default components will be used.
Resource_Factory
and
Advanced_Resource_Factory
. TAO provides defaults of these
factories, as well as the specialized resource factories described
below:
Resource Factory Description Resource Factory
Unless configured otherwise, this is the default resource factory used by the ORB.The resource factory is responsible for creating and providing access to various resources used by the server and client ORBs. The resources managed by this factory include creation of acceptor and connector registries, choice of data flushing strategy, limits for connection resource management, types of CDR buffers used for marshalling and demarshalling data, and different IOR parsers. Advanced Resource Factory
This factory provides more advanced configuration options in the addition to all the features of the default resource factory.
The advanced resource factory gives more control than the default resource factory over the type of resources used and how those resources are accessed. In addition to the options provided by the default resource factory, the advanced resource factory provides options that allow selecting different reactors, choosing different transport mechanisms and selecting the right connection purging strategy to maintain limits on resources used. The advanced resource factory was created to allow more advanced options while keeping the footprint of the default resource factory small.
The advanced resource factory inherits from the default resource factory and accepts all of its options in addition to its own.Qt Resource Factory
This is a specialized resource factory providing the means for integrating with the Qt GUI toolkit from Trolltech. Xt Resource Factory
This is a specialized resource factory providing the means for integrating with the X Window System's Xt Intrinsics toolkit.
svc.conf
file (all in one line)
static
Resource_Factory "[list of options]"
will load the default resource factory with the options listed within the double quotes. The following table shows the list of possible options that can be specified within the double quotes in the above directive. There is an example of how this is used in TAO.
Option Description -ORBConnectionCacheLock
locktypeSpecify the type of lock to be used by the Connection Cache. Possible values for lock type are thread
, which specifies that an inter-thread mutex is used to guarantee exclusive access, andnull
, which specifies that no locking be performed. The default is thread.-ORBConnectionCacheMax
limitThe transport cache will grow to a maximum of the specified limit. The default is system dependent, but can be overridden at compile-time by defining the preprocessor macro TAO_CONNECTION_CACHE_MAXIMUM
.-ORBConnectionCachePurgePercentage
percentIf the transport cache is purged, the specified percentage (20 by default) of the total number of connections cached will be closed. -ORBConnectionPurgingStrategy
typeOpened connections are added to the transport cache so they can be reused. If a process continues to run and these connections are not reused, however, the cache will continue to grow. Before each new connection, therefore, the cache is checked and purged if it has reached the limit specified by the -ORBConnectionCacheMax
option or the system default if that option was not used. The possible values for type arelru
,lfu
,fifo
, andnull
. The default islru
(least recently used). The other options arelfu
(least frequently used),fifo
(first in first out), andnull
(no connections are purged) and are contained within the TAO Strategies library.-ORBDropRepliesDuringShutdown
boolean (0|1)Strategy to make the ORB wait for replies to show up even if the ORB is shutdown. The default is to drop replies. For example, clients comunicating with misbehaved servers will continue to hang if replies don't show up and even if the client ORB is shutdown from another thread. This strategy helps the ORB decide to wait for the replies or drop replies. Some clients may not want to drop replies, and may want all their requests to be processed until ORB::destroy () is called. Setting the value of this option to 0 would help with that. -ORBFlushingStrategy
typeBy default TAO provides three strategies to flush queued messages. The leader_follower
strategy uses the Reactor and non-blocking I/O to send the outgoing messages, this strategy participates in the Leader/Followers protocol to synchronize access to the Reactor. Thereactive
strategy uses the Reactor but does not take part in the Leader/Followers protocol, thus it is better used only in single threaded applications. Finally, theblocking
strategy flushes the queue as soon as it becomes "full", and blocks the thread until all the data is sent.-ORBIORParser
parserName an IOR Parser to load. IOR Parsers are used to interpret strings passed to ORB::string_to_object()
. By default the ORB can handle multiple string formats, includingIOR:
,corbaloc:
,corbaname:
, andfile:
. The application developer can add new IOR formats using this option.-ORBMuxedConnectionMax
numberThe transport cache allows only specified number of connections-per-QoS property to be added to connection cache. Threads not getting the connections will wait for the connections to be released. This option is more useful for transports using a muxed connection strategy and want control over the number of connections that are created by the active threads. -ORBOutputCDRAllocator
mmap|local_memory_poolWhen the define TAO_USE_OUTPUT_CDR_MMAP_MEMORY_POOL
is set to 1 then always the mmap pool will be used.-ORBProtocolFactory
factorySpecify which pluggable protocol factory to load. By default, only the factory for the IIOP protocol ( IIOP_Factory
) is loaded.For example, if some protocol called
Foo
whose factory was calledFoo_Factory
was available, then it could be loaded into TAO by specifying-ORBProtocolFactory Foo_Factory
in the service configurator file. TheFoo
pluggable protocol would then be available for use.-ORBReactorMaskSignals
0/1ACE select reactors mask signals during upcalls to the event handlers. This is only useful if the application is going to trap those signals and handle them in any special way. Disabling the mask can improve performance by reducing the number of kernel level locks. -ORBZeroCopyWrite
Use a zero copy write protocol, which at this moment the only option is sendfile. If your platform does support sendfile but you don't want that TAO uses it you can disable sendfile in TAO by add the define TAO_HAS_SENDFILE 0
to your config.h file.
TAO_Strategies
library. It
accepts the options below as well as those described above in the
Resource_Factory
. This factory can be loaded dynamically
using a service configurator directive of the form (all on one line):
dynamic Advanced_Resource_Factory Service_Object
*
TAO_Strategies:_make_TAO_Advanced_Resource_Factory
() "-ORBReactorType select_st"
It can also be loaded statically by doing the following:
#include "tao/Strategies/advanced_resource.h"
to the file containing main()
. static
Advanced_Resource_Factory "-ORBReactorType select_st"
#include
if you always use dynamic libraries.
Loading the Advanced_Resource_Factory
disables the
Resource_Factory
. Any directives for the
Resource_Factory
will have no effect (and generate
warnings telling you so). The following table lists the options that
can be provided in double quotes. An example
is available that shows how to specify this option in the svc.conf file.
Server_Strategy_Factory
Typically, the following options are set via the service configurator (svc.conf) file. The following line in the svc.conf file (all in one line)
static Server_Strategy_Factory "[list of
options]"
would load all the options listed within "". An
example
is available
that shows how to specify this option in the svc.conf
file.
Option Description -ORBActiveHintInIds
adds an active hint in idsSpecify whether an active hint should be added to ids. With active hints, ids can be found quickly. However, they lead to larger IORs. Note that this option is disregarded if -ORBAllowReactivationOfSystemids
is set to0
. The -ORBActiveHintInIds can be0
or1
. This option defaults to1
.-ORBActiveHintInPOANames
adds an active hint in poa namesSpecify whether an active hint should be added to POA names. With active hints, POA names can be found quickly. However, they lead to larger IORs. The -ORBActiveHintInPOANames
can be0
or1
. This option defaults to1
.-ORBActiveObjectMapSize
active object map sizeSpecify the size of the active object map. If not specified, the default value is 64. -ORBAllowReactivationOfSystemids
allows reactivation of system idsSpecify whether system ids can be reactivated, i.e., once an id that was generated by the system has been deactivated, will the user reactivate a new servant using the old id. If the user is not going to use this feature, the IORs can be shortened, an extra comparison in the critical upcall path removed, and some memory on the server side can be saved. The ORBAllowReactivationOfSystemids
can be0
or1
. This option defaults to1
.-ORBConcurrency
whichSpecify which concurrency strategy to use. Range of values is reactive
for a purely Reactor-driven concurrency strategy orthread-per-connection
for creating a new thread to service each connection. The default is reactive.-ORBPersistentidPolicyDemuxStrategy
persistent id policy based demultiplexing strategySpecify the demultiplexing lookup strategy to be used with the persistent id policy. The demultiplexing strategy can be one of dynamic
orlinear
. This option defaults to using thedynamic
strategy.-ORBPoaMapSize
poa map sizeSpecify the size of the POA map. If not specified, the default value is 24. -ORBSystemidPolicyDemuxStrategy
system id policy based demultiplexing strategySpecify the demultiplexing lookup strategy to be used with the system id policy. The demultiplexing strategy can be one of dynamic
,linear
, oractive
. This option defaults to use thedynamic
strategy when-ORBAllowReactivationOfSystemids
is true, and toactive
strategy when-ORBAllowReactivationOfSystemids
is false.-ORBThreadFlags
thread flagsSpecify the flags used for thread creation. Flags can be any logical-OR combination of THR_DETACHED
,THR_BOUND
,THR_NEW_LWP
,THE_SUSPENDED
. The default isTHR_BOUND | THR_DETACHED
.-ORBThreadPerConnectionTimeout
millisecondsIn many platforms it is impossible to interrupt the server threads created by the thread-per-connection
model. This is because these threads are blocked inread()
operations (and not inselect()
). As a workaround, the server threads periodically poll the ORB to find out if they should shutdown. This option controls the period of the polling, expressed in milliseconds. Applications that do not shutdown, or that can otherwise ensure that no server threads will be running at shutdown (for example if all the clients terminate before the server) can disable the polling using the magic valueINFINITE
.If the option is not provided then the ORB uses the compile-time flag
TAO_DEFAULT_THREAD_PER_CONNECTION_TIMEOUT
, this flag also expresses the time in milliseconds (as a string constant) and the magic value"INFINITE"
can be used to disable polling entirely. This yields a slight performance improvement (around 1%).-ORBTransientidPolicyDemuxStrategy
transient id policy based demultiplexing strategySpecify the demultiplexing lookup strategy to be used with the transient id policy. The demultiplexing strategy can be one of dynamic
,linear
, oractive
. This option defaults to using theactive
strategy.-ORBUniqueidPolicyReverseDemuxStrategy
unique id policy based reverse demultiplexing strategySpecify the reverse demultiplexing lookup strategy to be used with the unique id policy. The reverse demultiplexing strategy can be one of dynamic
orlinear
. This option defaults to using thedynamic
strategy.-ORBUseridPolicyDemuxStrategy
user id policy based demultiplexing strategySpecify the demultiplexing lookup strategy to be used with the user id policy. The demultiplexing strategy can be one of dynamic
orlinear
. This option defaults to using thedynamic
strategy.
Client_Strategy_Factory
.
Typically, the following options are set via the service
configurator
(svc.conf
) file. The following line in the
svc.conf
file (all in one line)
static Client_Strategy_Factory "[list of options]"
would load all the options listed within "". An example
is available that shows how to specify this option in the svc.conf
file.
Option Description -ORBClientConnectionHandler
MT | ST | RW / MT_NOUPCALL
-ORBWaitStrategy
MT / ST / RW / MT_NOUPCALLPlease note that these two options are synonymous and can be used interchangeably. ST means use the single-threaded client connection handler, i.e., the leader follower model will not be used. However, ST does support nested upcalls and handling of new requests while waiting for the reply from a server.
MT means use the multi-threaded client connection handler which uses the leader follower model. This model allows the use of multiple threads with a single Reactor.
RW selects a strategy that simply blocks in
recv()
when waiting for a response from the server instead of waiting in the Reactor using the Leader/Followers pattern. The RW strategy only works when the application does not have to worry about new request showing up when waiting for a response. Further, this strategy cannot be used with BiDIR GIOP. Note that applications that require nested upcalls are not compatible with this strategy. Also note that this strategy will only affect synchronous two way calls, since there is no waiting for one way calls or AMI requests (at least not in the same sense as for synchronous two way calls). This strategy can also be used in an application that is both a client and a server where the server side is handled by a separate thread and the client threads are "pure" clients. Use in single threaded applications with both client and server roles is also possible but in these cases special care has to be taken to avoid deadlocks because of nested synchronous calls. Mixing in AMI requests and/or other asynchronous reactor (timer/notification) events might help solve such issues. When this strategy is set to RW, then also the -ORBFlushingStrategy (which is part of the Resource_Factory) has to be set toblocking
.
MT_NOUPCALL
means use a client connection handler that participates in the leader-follower model like MT, but, like RW, does not allow handling of nested CORBA upcalls within the waiting thread. It does allow handling of other non CORBA (ACE reactor events) like timers and ACE notification queue events. Note that with this strategy it is possible to "run out of threads" in a thread pool, and that TAO doesn't grow thread pools. Unlike RW, this does not require -ORBTransportMuxStrategy EXCLUSIVE.Default for this option is MT.
-ORBConnectionHandlerCleanup
0 | 1
Setting this option to 1 lets the ORB know that connection handlers setup for sending messages need to be cleaned up when errors occur. This option has an effect only for -ORBClientConnectionHandler RW . Rest of the options for -ORBClientConnectionHandler have been automatically set up for cleaning the connection handlers. Setting the option to 1 has a side effect of registering and unregistering the connection handlers with the Reactor for every invocation, which has a negative impact on performance. Setting the option to 0 prevents this performance impact but leads to problems outlined here and here Default for this option is 0.
-ORBConnectStrategy
typeTAO provides three strategies to connect to remote servers. The default leader_follower strategy uses the Reactor and non-blocking connects to connect and this strategy participates in the Leader/Followers protocol to synchronize access to the Reactor. The reactive strategy uses the Reactor for non-blocking connects but does not take part in the Leader/Followers protocol, thus it is better used only in single threaded applications. Finally, the blocked strategy as the name implies, blocks the thread until connection is complete. Some of the protocols in TAO (such as SHMIOP and SSLIOP) can only use the blocked strategy. -ORBDefaultSyncScope
None | Transport | Server | TargetSupply a default sync scope for the ORB to use when a Messaging Sync Scope policy is not used. When not supplied, the default sync scope is SYNC_WITH_TRANSPORT. -ORBTransportMuxStrategy
EXCLUSIVE | MUXEDEXCLUSIVE means that the Transport does not multiplex requests on a connection. At a time, there can be only one request pending on a connection. MUXED means that Transport multiplexes more than one request at the same time on a connection. This option is often used in conjunction with AMI, because multiple requests can be sent "in bulk."
Default for this option is MUXED.
Invocation Retry options Options of the same names as the command-line options described in Multiple Invocation Retry Options can also be applied client strategy factory service. Any option provided on the command line will override the corresponding option in the service configurator file.
TAO_PortableGroup
library and
is used with the DIOP and MIOP protocols managing the UDP connectionless
sockets (normally one-way calls only) instead of the standard IIOP TCP/IP
two-way connection based sockets. It accepts the options shown below.
(Any options required should be given
to the TAO_UIPMC_Protocol_Factory between the two double-quotes at the end
of the line as a space separated list; however none are required as all
options take default values if not specified.) This factory can be loaded
dynamically using service configurator directives of the form (all on one line):
dynamic UIPMC_Factory Service_Object *
TAO_PortableGroup:_make_TAO_UIPMC_Protocol_Factory() ""
Normally however in order to set up the TAO_UIPMC_Protocol_Factory correctly, the application will have to use other service configurator directives as well; for example:
dynamic UIPMC_Factory Service_Object *
TAO_PortableGroup:_make_TAO_UIPMC_Protocol_Factory() ""
static Resource_Factory "‑ORBProtocolFactory IIOP_Factory
‑ORBProtocolFactory UIPMC_Factory"
dynamic PortableGroup_Loader Service_Object *
TAO_PortableGroup:_make_TAO_PortableGroup_Loader() ""
Option Description ‑ORBListenerInterfaces
targetNetwork=localNetwork[,...] | CopyPreferredInterfacesThis is a server-side (listener) option that specifies, on a multihomed host, which network/interface(s) are to be used to listen for communications from the multicast addressed remote client(s). If this option is unspecified (or if none of the given targetNetwork=localNetwork patterns match the current addresses being set-up for the attempted listener) then the default listener will be set-up as specified or defaulted with the ‑ORBListenOnAll
see above. Otherwise when TAO attempts to establish the listeners for a targetNetwork multicast address(es), it will use the local ip address(es) matching the localNetwork string. Simple wildcards can be used for both parameters, and multiple paired targetNetwork=localNetwork strings can be specified using comma separators (no embedded spaces allowed) or via additional‑ORBListenerInterfaces
directives. It is also possiable to specify loopback and/or multiple interfaces at the same time for each listener established via such‑ORBListenerInterfaces
directives.For example, for a machine with two network cards identified by the ip addresses
targetNetwork can use any string, but must typically match the value writen into the IOR and so will usually be a dotted decimal multicast address in the administrative "site local" range, (224.255.0.0 to 238.255.255.255) or (239.255.0.0 to 239.255.255.255).192.168.1.10
and192.168.1.20
, you can use the single directive‑ORBListenerInterfaces 239.255.*=*10,224.255.*=*20
or the pair of directives‑ORBListenerInterfaces 239.255.*=*10 ‑ORBListenerInterfaces 224.255.*=*20
to establish the link to listen for 239.255.* multicast addresses on the first interface, and 224.255.* multicast addresses on the second interface.localNetwork must use a local dotted decimal address, because it will be matched with the local ip interfaces.
The same client-side (sender) assignments as specified by the ORB_init supplied command line option(s)‑ORBPreferredInterfaces
can be duplicated by specifying the single special CopyPreferredInterfaces parameter as in‑ORBListenerInterfaces CopyPreferredInterfaces
(which may be prefixed and/or postfixed by other‑ORBListenerInterfaces targetNetwork=localNetwork
options as required).‑ORBListenOnAll
0 | 1This is a server-side (listener) option that by default is disabled; however this option only takes effect where no ‑ORBListenerInterfaces
directives (if any, see below) match the actual multicast address being set-up.If disabled (0) the multicast address will be listened for only on the default multicast interface associated with the
If enabled (1) the multicast address will be listened for on ALL the local network interface(s) which are multicast enabled (again the loopback interface is normally excluded).INADDR_ANY
local address (normally the first such local interface on the system), the loopback interface is normally excluded.
TAO_PortableGroup
library and
uses the TAO_UIPMC_Protocol_Factory (see above) to
manage its UDP sockets, you should also look at that factories configuration
options. The MIOP factory accepts it own options detailed below which
should be specified between the two double-quotes shown here as a space
separated list; however none are required as all options take default
values if not specified. This factory can be loaded dynamically using a
service configurator directive of the form (all on one line):
dynamic MIOP_Resource_Factory Service_Object *
TAO_PortableGroup:_make_TAO_MIOP_Resource_Factory () ""
dynamic UIPMC_Factory Service_Object *
TAO_PortableGroup:_make_TAO_UIPMC_Protocol_Factory() ""
static Resource_Factory "‑ORBProtocolFactory IIOP_Factory
‑ORBProtocolFactory UIPMC_Factory"
dynamic PortableGroup_Loader Service_Object *
TAO_PortableGroup:_make_TAO_PortableGroup_Loader() ""
dynamic MIOP_Resource_Factory Service_Object *
TAO_PortableGroup:_make_TAO_MIOP_Resource_Factory () ""
In the first two cases above, the loss can be mitigated by the client adapting/throttling its sending rate so as to not overflow the capacity of the client's operating system sending buffer and the receiving buffer of the server socket. If there are multiple clients all sending to the same server, all of these clients must be configured to slow down their sending rate (as a software system design descision) as otherwise the server's receive buffer will become swamped and some messages will be lost.
Option Description ‑ORBEagerDequeueing
0 | 1This is a server-side (listener) option that is enabled by default; although this default can be overriden when the TAO libraries are built in the ace/config.h
, by specifying the new default such as#define TAO_DEFAULT_MIOP_EAGER_DEQUEUEING false
which in this case would turn this off by default, unless specified in the service file. If disabled (0) each thread servicing the MIOP listener will only dequeue enough MIOP message fragments from the socket receive buffer to complete a single full MIOP message which it will then process. This action reduces the amount of user memory consumed by the server process, but it also increases the likelihood of the OS sockets receive buffer overflowing (as whilst processing each message, the thread cannot dequeue other incomming message fragments). If enabled (1) it specifies that each server thread will attempt to dequeue all available MIOP messages from the receiver's socket and queue these up in a user memory FIFO queue, before attempting to process a single MIOP message from the head of this FIFO queue. This action attempts to speed up the dequeueing of MIOP messages from the OS socket receive buffer (with a corresponding increase in the amount of user memory consumed by the server process) so as to limit the number of MIOP messages that the server may miss due to the OS sockets receive buffer becoming full.‑ORBMaxFragmentRate
microsecondsThis client-side (sender) option (if enabled, see
‑ORBSendThrottling
below) specifies a non-zero, positive amount of time (in uSec, i.e. microseconds) that it takes to transmit and process an individual message fragment of the maximum size; see the‑ORBMaxFragmentSize
option above. (This is the total of the client‑>server‑>servant processing time not just the average network transmission delay.) The client attempts to keep the rate at which it sends messages down to this speed by purposly delaying sending message fragments, if it would exceeding this capacity (but also see the‑ORBSendHighWaterMark
option below). The default is same value as specified, or is defaulted by, the‑ORBMaxFragmentSize
option above, but this time teated as microseconds not bytes. (This default delay value is approximatly the time required to transmit that number of bytes on a 10Base‑T network.) Larger values will throttle back the clients transmittion rate, smaller values will speed it up; but note this value is used with the‑ORBMaxFragmentSize
option above to specify a working ratio so this value may need to be altered if the size is changed.‑ORBMaxFragments
limitThis is a client-side (sender) option used to limit the maximum number of fragments that a client can break the outgoing message up into. The limit must be a positive number or zero (indicating an unlimited number). The default is normally 0 (i.e. unlimited), but this default can be overriden when the TAO libraries are built in ace/config.h
, by specifying the new default limit such as#define TAO_DEFAULT_MIOP_MAX_FRAGMENTS 1
which in this case would turn off fragmentation by default (as only a single fragment would be allowed), unless a new limit is specified in the service file. Any messages that are too large and require more fragments than allowed by this setting are simply not transmitted by the client (the message is effectly lost without any error indication, other than possibly a debug message). This setting can be used as a safety setting to stop swamping the network and servants with abnormally large messages, or during testing to "lose" large messages for whatever reason.‑ORBFragmentsCleanupStrategy
DELAY | NUMBER | MEMORYThis option is used on the server to specify the incomplete fragments cleanup strategy. The default is DELAY, indicating that the fragments that cannot be reassembled after a certain delay should be removed from the waiting queue (i.e. considered lost messages). The other options are NUMBER and MEMORY, which respectively mean the number of messages in the waiting queue will be limited, or the whole memory comsumed by the incomplete messages in the waiting queue will be limited. ‑ORBFragmentsCleanupBound
limitThis option specifies the numerical limit for the server's ‑ORBFragmentsCleanupStrategy
option. If the strategy is DELAY, the value indicates the delay in milliseconds (defaulting to 1000 milliseconds i.e. 1 second). If the strategy is NUMBER, the limit indicates the number of non-reassembled messages in the queue (defaulting to 5 messages). If the strategy is MEMORY, the limit indicates the number of bytes reserved for the whole queue (with the default being 3000000 bytes).‑ORBMaxFragmentSize
bytesAnother client-side (sender) option used to limit the number of bytes in each individual MIOP fragment, which must be between 272 and ACE_MAX_UDP_PACKET_SIZE
(normally 65507) bytes inclusive. Smaller values increase (and larger values decrease) the number of fragments required to send the actual payload data. Each fragment requires the overhead of a new MIOP header (32 bytes) prefixing the actual data being sent, with the header reducing the actual usable payload data inside each fragment. Roughly this value can be considered as the MTU (Maximum Transmission Unit) set for the specific connection. The default takes the same value as theACE_MAX_UDP_PACKET_SIZE
for the system, but this can be overridden in theace/config.h
by giving a new value for#define TAO_DEFAULT_MIOP_FRAGMENT_SIZE 65507
when the TAO libraries are built. Note: most gateways and routing networks define an MTU of around 1458-1500; it is therefore advisable to specify the correct‑ORBMaxFragmentSize
value otherwise some fragments may be lost. See also the‑ORBSndSock
option below. Note also if this value is changed (during development) and the‑ORBMaxFragmentRate
option below is also specified, you should change that value by the same factor, otherwise the speed of transmission will be effected as these two options specify a working ratio.‑ORBRcvSock
bytesThis server-side (listener) option is the size of the incoming socket's message buffer, i.e., how much data can be received directly off the wire by the server and queued for processing by the servant whilst it is busy. If specified in the service configuration file, this value will override (for MIOP only) the value specified by the corresponding ORB_init parameter. If NOT specified in either place, the default value for the system itself will be used. Again for a Linux type OS, the systems RcvSock is usually about 65535 bytes, but whatever value is actually specified it is normally doubled internally to take account of the control structures required to track the messages themselves and so it is not a hard limit. Specifying as large a value as possible (i.e. whatever upper limit the OS will allow) with the MIOP ‑ORBRcvSock
option is advisable to maximize the available socket's receive buffer space, but obviously this is a trade off between available memory and other OS non-paged memory uses.‑ORBSendHighWaterMark
bytesThis client-side (sender) option (if enabled, see ‑ORBSendThrottling
below) is the usable size of the message buffer, i.e how much data can be sent without introducing delays into the transmition of individual MIOP fragments (due to the‑ORBMaxFragmentRate
option above). Its default value is the size of the buffer maintained by the Operating System for the sending socket at the client side (see the‑ORBSndSock
option below) and although it should ideally be based on the server's receive socket buffer size, that information is not available to the client, and the two values normally default to the same size anyway. If in doubt specify this value and set it to a smaller value than the full size of the servers‑ORBRcvSock
option (especially if multiple clients are all broadcasting to the same server, when each client should only use a fraction of the full buffer size based upon the number of clients actually in use).‑ORBSendThrottling
0 | 1This is a client-side (sender) option that is enabled by default; although this default can be overriden when the TAO libraries are built in the ace/config.h
, by specifying the new default such as#define TAO_DEFAULT_MIOP_SEND_THROTTLING false
which in this case would turn off throttling by default, unless specified in the service file. If disabled (0) the client will always attempt to transmit all MIOP message fragments without any delay. If enabled (1) the client will attempt to automatically restrict the speed of sending individual MIOP messages to maintain an average of‑ORBMaxFragmentSize
bytes per‑ORBMaxFragmentRate
microseconds once the threshold of‑ORBSendHighWaterMark
bytes of data are currently being transmitted or are in progress via each individual transport (i.e. each individual client-side (sender) connection to the server).‑ORBSndSock
bytesThis client-side (sender) option is the size of the outgoing socket's message buffer. If specified in the service configuration file, this value will override (for MIOP only) the value specified by the corresponding ORB_init parameter. If NOT specified in either place, the default value for the system itself will be used. NOTE: the ‑ORBSndSock
size normally limits the maximum size of an individual message fragment, larger fragments can be simply ignored (i.e. packet loss) by the client's socket without any error indication; this value and the‑ORBMaxFragmentSize
should be set with care. For a Linux type OS, the system's SndSock is usually defaulted to about 65535 bytes, but whatever value is actually specified it is normally doubled internally to take account of the control structures required to track the messages themselves and so it is not a hard limit.
Time_Policy_Manager
.
Typically, the following options is set via the service
configurator
(svc.conf
) file. The following line in the
svc.conf
file (all in one line)
static
Time_Policy_Manager "[option]"
would load the option listed within "".
An example
is available that shows how to specify this option in the svc.conf
file.
Option Description -ORBTimePolicyStrategy
strategyThe strategy argument defines the TIME_POLICY strategy to load. TAO provides two standard TIME_POLICY strategies:
OS denotes the system time policy strategy which uses the systems equivalent of
gettimeofday
to return a current time value. This is the default for TAO (unlessTAO_USE_HR_TIME_POLICY_STRATEGY
has been defined).HR denotes the highres time policy strategy which uses the systems equivalent of a
MONOTONIC
timer source to return a current time value (whenTAO_USE_HR_TIME_POLICY_STRATEGY
has been defined this becomes the default for TAO).Any other value is assumed to denote the exact name of a dynamically loadable TIME_POLICY strategy. The Time_Policy_Custom test provides an example of this functionality.
Back to the TAO component options and tuning documentation.