1 |
< |
# This file contains JSOC_SDP-specific configuration information. It is used only if the '-sdp' flag is used |
1 |
> |
# This file contains JSOC_SDP-specific configuration information. It is used only if the '-sdp' flag is used |
2 |
|
# as an argument to the check-out script (checkoutDRMS.pl). To change the configuration at Stanford, edit |
3 |
|
# this file directly, and commit those changes to the source-tree repository. |
4 |
|
|
5 |
< |
# The lines in the __PROJ_MK_RULES__ section define JSOC_SDP-specific make variables, targets, and rules. When |
5 |
> |
# The lines in the __PROJ_MK_RULES__ section define JSOC_SDP-specific make variables, targets, and rules. When |
6 |
|
# localize.py is run, it will process this section and create JSOC/localization/make_basic.mk. These are |
7 |
|
# available to all JSOC_SDP projects. |
8 |
|
|
9 |
< |
# The lines in the __PROJ__ section define JSOC_SDP projects. When localize.py runs, file content will be |
9 |
> |
# The lines in the __PROJ__ section define JSOC_SDP projects. When localize.py runs, file content will be |
10 |
|
# added to JSOC/localization/Rules.mk and JSOC/localization/target.mk. |
11 |
|
|
12 |
|
# The lines in the __PROJCFG__ section define additional project-specific configuration. The code in this |
13 |
|
# section must be in a shell-scripting language, and will be executed as is. |
14 |
|
|
15 |
< |
# The lines in the __MAKE__ section define global make variables to configure the make process. A subset of |
16 |
< |
# these variables defines the locations of JSOC_SDP-specific third-party libraries. These values apply to all code |
15 |
> |
# The lines in the __MAKE__ section define global make variables to configure the make process. A subset of |
16 |
> |
# these variables defines the locations of JSOC_SDP-specific third-party libraries. These values apply to all code |
17 |
|
# in both JSOC/base and JSOC/proj directories. |
18 |
|
|
19 |
|
__DEFS__ |
22 |
|
q:SUMS_DB_HOST hmidb3 |
23 |
|
q:SUMPGPORT 5434 |
24 |
|
a:SUMSD_MAX_THREADS 32 |
25 |
< |
a:SUMSD_LISTENPORT 6006 |
25 |
> |
a:SUMSD_LISTENPORT 6100 |
26 |
|
a:DRMS_LOCAL_SITE_CODE 0x0000 |
27 |
|
q:DBNAME jsoc |
28 |
|
q:WEB_DBUSER apache |
79 |
|
a:RS_SCP_MAXSUS 48 |
80 |
|
a:RS_SCP_MAXPAYLOAD 512 |
81 |
|
a:RS_SCP_TIMEOUT 2 |
82 |
+ |
a:RSCLIENT_TIMEOUT 1440 |
83 |
|
q:SS_LOCKFILE /home/jsoc/locks/sustewie.lck |
84 |
|
a:SS_LOW_WATER 90 |
85 |
|
a:SS_HIGH_WATER 95 |
92 |
|
# Bin paths |
93 |
|
q:BIN_EXPORT /home/jsoc/cvs/Development/JSOC/bin |
94 |
|
q:SCRIPTS_EXPORT /home/jsoc/cvs/Development/JSOC/scripts |
95 |
+ |
q:EXPORT_LOG_DIR /home/jsoc/exports/logs |
96 |
+ |
q:EXPORT_LOCK_DIR /home/jsoc/exports/tmp |
97 |
+ |
q:EXPORT_HANDLE_DIR /home/jsoc/exports |
98 |
+ |
q:EXPORT_PENDING_REQUESTS_TABLE jsoc.export_pending_reqs |
99 |
+ |
a:EXPORT_PENDING_REQUESTS_TIME_OUT 60 |
100 |
|
q:BIN_PY /home/jsoc/bin/linux_x86_64/activepython27 |
101 |
|
q:BIN_PY3 /home/jsoc/anaconda3/bin/python3 |
102 |
|
a:SUMS_USEMTSUMS 1 |
103 |
|
a:SUMS_USEMTSUMS_INFO 1 |
104 |
+ |
a:SUMS_MT_CLIENT_RESP_TIMEOUT 1440 |
105 |
|
# Email registration |
106 |
|
a:REGEMAIL_TIMEOUT 15 |
107 |
|
# Slony |
112 |
|
|
113 |
|
__MAKE__ |
114 |
|
# JSOC_SDP third-party libraries used by base |
115 |
< |
# The parameters in this section are used to create make variables. For example, the line |
115 |
> |
# The parameters in this section are used to create make variables. For example, the line |
116 |
|
# 'POSTGRES_LIB = pq' will cause a make variable named POSTGRES_LIB to be created and to |
117 |
|
# be assigned the value 'pq'. |
118 |
|
|
119 |
|
# If the name in the left column contains a colon, then the name on the LHS is the parameter name. The RHS is |
120 |
< |
# a description of which platforms or specific machines the parameter applies to. For example, |
120 |
> |
# a description of which platforms or specific machines the parameter applies to. For example, |
121 |
|
# the name POSTGRES_INCS:X86_64 implies that the value of the parameter named POSTGRES_INCS is /usr/include |
122 |
|
# when make is run on a linux_x86_64 machine. The RHS string can contain either a platform identifier |
123 |
|
# (X86_64, IA32, AVX, or IA64) or it can be a string that identifies a particular machine, like d02. |
126 |
|
# all machines whose names contain the string 'hmidb'. So, for machines hmidb, hmidb2, and hmidb3, the |
127 |
|
# value of the POSTGRES_INCS parameter is /usr/local/pgsql/include. |
128 |
|
# |
129 |
< |
# If the RHS is a platform identifier, then make compares the value of $JSOC_MACHINE (which is in |
129 |
> |
# If the RHS is a platform identifier, then make compares the value of $JSOC_MACHINE (which is in |
130 |
|
# reality a misnomer, since it truly specifies the name of the machine platform, not the name |
131 |
< |
# of the machine) to the platform name specified by the RHS string. For example, |
131 |
> |
# of the machine) to the platform name specified by the RHS string. For example, |
132 |
|
# if the RHS string is 'avx', then make compares $JSOC_MACHINE to |
133 |
|
# 'linux_avx', and if there is a match, then the parameter's value specified in the second column is assigned |
134 |
|
# to the make variable. If the RHS is a machine identifier, then make compares the value of $MACHTYPE |
135 |
|
# (another misnormer, since it is the name of the machine, not the name of some type of machine ) to |
136 |
< |
# the machine names specified by the RHS. For example, if the RHS string is 'hmidb' then make |
137 |
< |
# compares $MACHTYPE to 'hmidb', and if 'hmidb' is a substring of $MACHTYPE, then the parameter's |
136 |
> |
# the machine names specified by the RHS. For example, if the RHS string is 'hmidb' then make |
137 |
> |
# compares $MACHTYPE to 'hmidb', and if 'hmidb' is a substring of $MACHTYPE, then the parameter's |
138 |
|
# value specified in the second column is assigned to the make variable |
139 |
< |
# |
139 |
> |
# |
140 |
|
# Blocks defined by the _CUST_/_ENDCUST_ tags are copied ver batim into the output make file. |
141 |
|
|
142 |
|
POSTGRES_LIB pq |
203 |
|
GSL_LIBS:IA64 /home/jsoc/lib/linux-x86_64 |
204 |
|
|
205 |
|
MPI_INCS:X86_64 /home/jsoc/mpich2/include |
206 |
< |
MPI_INCS:IA32 |
206 |
> |
MPI_INCS:IA32 |
207 |
|
MPI_INCS:AVX /home/jsoc/avx/include |
208 |
< |
MPI_INCS:IA64 |
208 |
> |
MPI_INCS:IA64 |
209 |
|
|
210 |
|
MPI_LIBS:X86_64 /home/jsoc/mpich2/lib |
211 |
|
MPI_LIBS:AVX /home/jsoc/avx/lib |
269 |
|
<proj> |
270 |
|
<name>datacapture</name> |
271 |
|
<subdirs> |
272 |
< |
<subdir>apps</subdir> |
272 |
> |
<subdir>apps</subdir> |
273 |
|
</subdirs> |
274 |
|
</proj> |
275 |
|
<proj> |
288 |
|
<proj> |
289 |
|
<name>maps_avgs</name> |
290 |
|
<subdirs> |
291 |
< |
<subdir>apps</subdir> |
291 |
> |
<subdir>apps</subdir> |
292 |
|
</subdirs> |
293 |
|
<filters> |
294 |
|
<filter> |
312 |
|
<proj> |
313 |
|
<name>util</name> |
314 |
|
<subdirs> |
315 |
< |
<subdir>apps</subdir> |
315 |
> |
<subdir>apps</subdir> |
316 |
|
</subdirs> |
317 |
|
</proj> |
318 |
|
<proj> |
319 |
|
<name>lev0</name> |
320 |
|
<subdirs> |
321 |
< |
<subdir>apps</subdir> |
321 |
> |
<subdir>apps</subdir> |
322 |
|
</subdirs> |
323 |
|
</proj> |
324 |
|
<proj> |
325 |
|
<name>lev1</name> |
326 |
|
<subdirs> |
327 |
< |
<subdir>apps</subdir> |
327 |
> |
<subdir>apps</subdir> |
328 |
|
</subdirs> |
329 |
|
</proj> |
330 |
|
<proj> |
331 |
|
<name>jpe</name> |
332 |
|
<subdirs> |
333 |
< |
<subdir>apps</subdir> |
333 |
> |
<subdir>apps</subdir> |
334 |
|
</subdirs> |
335 |
|
</proj> |
336 |
|
<proj> |
337 |
|
<name>lev1_aia</name> |
338 |
|
<subdirs> |
339 |
< |
<subdir>apps</subdir> |
339 |
> |
<subdir>apps</subdir> |
340 |
|
</subdirs> |
341 |
|
</proj> |
342 |
|
<proj> |
343 |
|
<name>lev1_hmi</name> |
344 |
|
<subdirs> |
345 |
< |
<subdir>apps</subdir> |
345 |
> |
<subdir>apps</subdir> |
346 |
|
</subdirs> |
347 |
|
</proj> |
348 |
|
<proj> |