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.
12 #Total number of client process which can connect and work with the
13 # database concurrently
16 # Maximum size of the system database.
17 MAX_SYS_DB_SIZE=1048576
19 #Maximum size of the user database file.
22 #Shared memory key to be used by the system to create and locate system database.
25 #Shared memory key to be used by the system to create and locate user database.
28 #Log level 0->no logging 1->Fine 2->Finer 3->Finest
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.
38 # Whether to enable durability
41 # Can be set true only when DURABILITY is true
44 #Give full path for the database file where table and record information will
45 #be stored for durability
46 DATABASE_FILE=/tmp/csql/db
48 #Important: For Server section parameters, make sure that the value is same for the
49 # server process and all the csql client process which connects to it. otherwise,
50 # behavior is undefined
51 #####################################Client Section########################
53 #Mutex timeout interval seconds
55 MUTEX_TIMEOUT_USECS=5000
56 MUTEX_TIMEOUT_RETRIES=10
58 #Lock timeout interval seconds
60 LOCK_TIMEOUT_USECS=5000
61 LOCK_TIMEOUT_RETRIES=10
63 #####################################Cache Section########################
65 #Whether to enable caching of tables from target database
68 #Set cache id for multiple bidirectional cache node for single data source
71 # Name of Target Database (mysql ,postgres, oracle etc...)
72 #TARGET_DATABASE=mysql
74 #DSN Name to connect to the target database.
75 #This should be present in ~/odbc.ini file
81 ENABLE_BIDIRECTIONAL_CACHE=false
83 CACHE_RECEIVER_WAIT_SECS=10
85 #Mode of operation SYNC or ASYNC
88 ##########################SqlNetworkServer Section########################
90 # Whether to enable SqlNetwork server
93 #Set port for Network access
96 #Whether to enable Replication across the sites
99 #No of sites to replicate
102 #Give full path for the file where all the table information is stored
103 TABLE_CONFIG_FILE=/tmp/csql/csqltable.conf
105 #Give full path of the file where all the DSN information is stored
106 DS_CONFIG_FILE=/tmp/csql/csqlds.conf
108 #Give full path for the file where all the peer site information is stored
109 NETWORK_CONFIG_FILE=/tmp/csql/csqlnw.conf
111 # MSGKEY for creating msg queue for MsgQueue Server
115 #####################################End Section########################