1 # CSQL System Configuration File
3 #####################################Server Section########################
5 # Site ID for this CSQL server
8 #Important: For Server section parameters, make sure that the value is same for the
9 # server process and all the csql client process which connects to it. otherwise,
10 # behavior is undefined
12 # Page size. Each database is logically divided into pages and allocation happens
13 # in this unit of pages. Increasing this value will reduce frequent allocation of pages.
16 #Total number of client process which can connect and work with the
17 # database concurrently
20 # Maximum size of the system database.
21 MAX_SYS_DB_SIZE=1048576
23 #Maximum size of the user database file.
26 #Shared memory key to be used by the system to create and locate system database.
29 #Shared memory key to be used by the system to create and locate user database.
32 #Log level 0->no logging 1->Fine 2->Finer 3->Finest
35 #Give full path for the log file where important system actions are stored.
36 LOG_FILE=/tmp/csql/log/log.out
38 #The virtual memory start address at which the shared memory segment
39 # will be created and attached.
42 # Whether to enable durability
45 # Whether to enable memory map architecture for user database
48 #checkpoint server interval in seconds
51 #minimum redo log size for checkpoint to be initiated
52 CHECKPOINT_LOG_SIZE=10485760
54 # Specifies the durability mode for redo log generation
56 # 1 ->uses standard redo logging with O_APPEND mode
57 # 2 ->uses standard logging with serialization
58 # 3 ->uses O_SYNC flag
59 # 4 ->uses O_DIRECT flag
63 #Give full path for the database file where table and record information will
64 #be stored for durability
65 DATABASE_FILE=/tmp/csql/db
67 #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
69 # Give full path for the std error file to store all the errors during database operations
72 #Restarts auxillary servers (SQL, Cache,etc), if they crash
75 #####################################Client Section########################
77 #Mutex timeout interval seconds
79 MUTEX_TIMEOUT_USECS=5000
80 MUTEX_TIMEOUT_RETRIES=10
82 #Lock timeout interval seconds
84 LOCK_TIMEOUT_USECS=5000
85 LOCK_TIMEOUT_RETRIES=10
90 #Enable statement cache for statements with no parameters
91 STMT_CACHE_NOPARAM=false
93 #####################################Cache Section########################
95 #Whether to enable caching of tables from target database
98 #DSN Name to connect to the target database.
99 #This should be present in ~/odbc.ini file
102 # No of records in a resultset to fetch from target database
103 NO_OF_ROWS_TO_FETCH=100
105 # Whethere to enable bidirectional updates for cached tables.
106 ENABLE_BIDIRECTIONAL_CACHE=false
108 CACHE_RECEIVER_WAIT_SECS=10
110 #Mode of operation SYNC or ASYNC
113 # If CACHE_MODE=OFFLINE then size of OfflineLogFile
114 OFFLINE_FILE_SIZE=1048576
116 ##########################SqlNetworkServer Section########################
118 # Whether to enable SqlNetwork server
119 CSQL_SQL_SERVER=false
121 #Set port for Network access
124 # Max number of seconds that the network layer waits to receive a pkt
125 NETWORK_RESPONSE_TIMEOUT=3
127 # Max number of seconds that the network layer waits to connect to sql server
128 NETWORK_CONNECT_TIMEOUT=5
130 #Give full path for the file where all the table information is stored
131 TABLE_CONFIG_FILE=/tmp/csql/csqltable.conf
133 #Give full path of the file where all the DSN information is stored
134 DS_CONFIG_FILE=/tmp/csql/csqlds.conf
136 # Give full path for conflict Resolution file
137 CONFL_RESOL_FILE=/tmp/csql/conflResoFile.txt
139 # MSGKEY for creating msg queue for MsgQueue Server
142 # Maximum message that the message queue server is able to handle for
143 # asynchronous updates. This value is is default value of 'kernel.msgmax'
147 # Maximum number of messages that the message queue server will hold for a site
148 # that is down in the replication group.
151 # Shared memory key for id generators
153 #####################################End Section########################