adding test scripts
[csql.git] / test / cache / MultiDsn / CacheToolOpts / csql.conf
blobaa67d04c3b0921d0e48eb78c5c0d212a83a30ab5
1 # CSQL System Configuration File
3 #####################################Server Section########################
4 #Important: For Server section parameters, make sure that the value is same for the 
5 #           server process and all the csql client process which connects to it. otherwise, 
6 #           behavior is undefined
8 # Page size. Each database is logically divided into pages and allocation happens 
9 # in this unit of pages. Increasing this value will reduce frequent allocation of pages. 
10 PAGE_SIZE= 8192
12 #Total number of client process which can connect and work with the 
13 # database concurrently
14 MAX_PROCS = 100
16 # Maximum size of the system database.
17 MAX_SYS_DB_SIZE=1048576
19 #Maximum size of the user database file.
20 MAX_DB_SIZE=10485760
22 #Shared memory key to be used by the system to create and locate system database.
23 SYS_DB_KEY=1199
25 #Shared memory key to be used by the system to create and locate user database.
26 USER_DB_KEY=2277
28 #Log level 0->no logging 1->Fine 2->Finer 3->Finest
29 LOG_LEVEL=0
31 #Give full path for the log file where important system actions are stored.
32 LOG_FILE=/tmp/csql/log/log.out
34 #The virtual memory start address at which the shared memory segment 
35 # will be created and attached. 
36 MAP_ADDRESS=400000000
38 # Whether to enable durability
39 DURABILITY=false
41 # Can be set true only when DURABILITY is true
42 MMAP=false
44 # Specifies the durability mode for redo log generation
45 # Valid values are 
46 # 1 ->uses standard redo logging with O_APPEND mode
47 # 2 ->uses standard logging with serialization
48 # 3 ->uses O_SYNC flag
49 # 4 ->uses O_DIRECT flag
51 DURABLE_MODE=1
53 #Give full path for the database file where table and record information will
54 #be stored for durability
55 DATABASE_FILE=/tmp/csql/db
57 #Important: For Server section parameters, make sure that the value is same for the server process and all the csql client process which connects to it. otherwise, behavior is undefined
59 # Give full path for the std error file to store all the errors during database operations
60 STDERR_FILE=stderr
62 #####################################Client Section########################
64 #Mutex timeout interval seconds
65 MUTEX_TIMEOUT_SECS=0
66 MUTEX_TIMEOUT_USECS=5000
67 MUTEX_TIMEOUT_RETRIES=10
69 #Lock timeout interval seconds
70 LOCK_TIMEOUT_SECS=0
71 LOCK_TIMEOUT_USECS=5000
72 LOCK_TIMEOUT_RETRIES=10
74 #####################################Cache Section########################
76 #Whether to enable caching of tables from target database
77 CACHE_TABLE=true
79 #Set cache id for multiple bidirectional cache node for single data source
80 SITE_ID=1
82 #DSN Name to connect to the target database.
83 #This should be present in ~/odbc.ini file
84 DSN=myodbc3
87 # Whethere to enable bidirectional updates for cached tables.
88 ENABLE_BIDIRECTIONAL_CACHE=false
90 CACHE_RECEIVER_WAIT_SECS=10
92 #Mode of operation SYNC or ASYNC
93 CACHE_MODE=SYNC
95 ##########################SqlNetworkServer Section########################
97 # Whether to enable SqlNetwork server
98 CSQL_SQL_SERVER=false
100 #Set port for Network access
101 PORT=5678
103 #Whether to enable Replication across the sites
104 REPLICATION=false
106 #No of sites to replicate
107 REPLICATION_SITES=16
109 #Give full path for the file where all the table information is stored
110 TABLE_CONFIG_FILE=/tmp/csql/csqltable.conf
112 #Give full path of the file where all the DSN information is stored
113 DS_CONFIG_FILE=/tmp/csql/csqlds.conf
115 #Give full path for the file where all the peer site information is stored
116 NETWORK_CONFIG_FILE=/tmp/csql/csqlnw.conf
118 # MSGKEY for creating msg queue for MsgQueue Server
119 MSG_KEY=2525
121 ID_SHM_KEY=1947
122 #####################################End Section########################