You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -61,7 +61,7 @@ logos of the server and host institution)
61
61
* all generated THREDDS catalogs that don't override this information
62
62
63
63
64
-
The best way to use your own logo is to put it in the `${tds.content.root.path}/thredds/public/` directory, and specify it in `serverInformation` as `/thredds/<name>`, e.g.:
64
+
The best way to use your own logo is to put it in the `${tomcat path}/webapps/thredds/` directory, and specify it in `serverInformation` as `/thredds/<name>`, e.g.:
65
65
66
66
~~~xml
67
67
<logoUrl>/thredds/yourIcon.gif</logoUrl>
@@ -201,8 +201,8 @@ The following shows all the configuration options available in the WCS section o
201
201
<WCS>
202
202
<allow>true</allow>
203
203
<dir>(see the note below)</dir>
204
-
<scour>15 min</scour>
205
-
<maxAge>30 min</maxAge>
204
+
<scour>10 min</scour>
205
+
<maxAge>5 min</maxAge>
206
206
</WCS>
207
207
~~~
208
208
@@ -235,7 +235,8 @@ The following shows all the configuration options available in the WMS section o
* If you created palette files for TDS 4.x and would like to use them in TDS 5.x, an open source tool named [Magic Palette Converter](https://github.com/billyz313/magic-palette-converter){:target="_blank"} for THREDDS is available to assist in the conversion (special thanks to [Billy Ashmall](https://github.com/Unidata/tds/discussions/346){:target="_blank"}!)
263
+
*`stylesLocationDir`: optionally specify the location of the directory containing your own style files, by specifying the directory
264
+
where they are contained.
265
+
* If the directory location starts with a `/`, the path is absolute, otherwise it is relative to `${tds.content.root.path}/thredds/`.
266
+
* The default directory for custom styles files is `${tds.content.root.path}/thredds/wmsStyles`.
267
+
* If you don't specify a custom styles directory, or specify it incorrectly, the default directory will be used.
268
+
* More information on the format of style files can also be found in the
*`maxImageWidth`: the maximum image width in pixels that this WMS service will return.
254
271
*`maxImageHeight`: the maximum image height in pixels that this WMS service will return.
255
272
@@ -270,9 +287,9 @@ The following shows all the configuration options available in the `NetcdfSubset
270
287
<NetcdfSubsetService>
271
288
<allow>true</allow>
272
289
<dir>(see the note below)</dir>
273
-
<scour>15 min</scour>
274
-
<maxAge>30 min</maxAge>
275
-
<maxFileDownloadSize>300 MB</maxFileDownloadSize>
290
+
<scour>10 min</scour>
291
+
<maxAge>5 min</maxAge>
292
+
<maxFileDownloadSize>-1</maxFileDownloadSize>
276
293
</NetcdfSubsetService>
277
294
~~~
278
295
@@ -290,15 +307,16 @@ Here is the description of the various options:
290
307
Optional; default is that there is no size limitation.
291
308
If the file is > 2 GB, large format netCDF will be written.
292
309
293
-
### ncISO Service
310
+
### ncISO Services
294
311
295
-
By default, these services are enabled, and can be disabled by including the following in the `threddsConfig.xml` file:
312
+
By default, these services are disabled.
313
+
Provided that you have added the [ncISO plugin](adding_ogc_iso_services.html#nciso-configuration), these services can be enabled by including the following in the `threddsConfig.xml` file:
These various caches at times may contain large amounts of data.
383
-
You should choose a location that will not fill up (especially if that location affects other important locations like `/opt`, `/home`, etc).
401
+
You should choose a location that will not fill up (especially if that location affects other important locations like `/opt`, `/usr/local`, `/home`, etc).
384
402
If you have a large disk for your data, that may be a good location for the cache directories.
385
403
On unix-like machines, you can run `df` to get a listing of disks on your machine.
386
404
The listing includes size and mount location.
@@ -419,7 +437,7 @@ We recommend that you use this default, by not specifying the `DiskCache.dir` el
@@ -471,14 +490,20 @@ We recommend that you use the default settings, by not specifying this option.
471
490
If it is possible to have more FMRC files than your `maxEntries`, then this value should be increased.
472
491
It is strongly advised not to configure this value to more than 10, as the cache works progressively slower when the actual size grows far beyond the size configured in your `maxEntries`.
473
492
See [here](https://gerrit.googlesource.com/modules/cache-chroniclemap/+/HEAD/src/main/resources/Documentation/config.md#configuration-parameters) for more details.
493
+
*`averageValueSize`: the average size of the cached value (the grid and variable information), which is used when allocating memory for the cache.
494
+
The possible values are `small`, `medium`, or `large`.
495
+
The default value is `small`.
496
+
In most cases the default value should work fine. However, if your FMRC datasets have hundreds of variables,
497
+
and you are experiencing issues with the cache filling up even though you have adjusted the `maxEntries` and `maxBloatFactor`,
498
+
then this may need to be increased to `medium`, or in very rare circumstances `large`.
@@ -488,6 +513,7 @@ We recommend that you use the default settings, by not specifying this option.
488
513
These elements control where GRIB index files are written.
489
514
490
515
* If `alwaysUse` is true, grib index files will always be written to the _index directory_ specified by `dir` (see [choosing a cache directory](#disk-caching-and-temporary-files)).
516
+
If not otherwise set, the TDS will use the ${tds.content.root.path}/thredds/cache/grib/ directory
491
517
If `neverUse` is true, the index directory will never be used.
492
518
If neither is set, the TDS will try to write grib indexes to the same directory as the original file, and if the TDS doesn't have write permission it will then write the files to the index directory.
493
519
Write permission will be determined by what rights the _Tomcat user_ has (the user that starts up Tomcat).
0 commit comments