Skip to content

Commit c3aeeb0

Browse files
committed
tweaks #10343
1 parent 8fc75cc commit c3aeeb0

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

doc/release-notes/6.4-release-notes.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -213,27 +213,25 @@ When any `ApiBlockingFilter` policy applies to a request, the JSON in the body o
213213

214214
See also #10508, #10672 and #10722.
215215

216-
### Cleanup of Temp Directories
216+
### Cleanup of Temp Directories
217217

218-
In this release we addressed an issue where copies of files uploaded via the UI were left in one specific temp directory (`.../domain1/uploads` by default). We would like to remind all the installation admins that it is strongly recommended to have some automated (and aggressive) cleanup mechanisms in place for all the temp directories used by Dataverse. For example, at Harvard/IQSS we have the following configuration for the PrimeFaces uploads directory above: (note that, even with this fix in place, PrimeFaces will be leaving a large number of small log files in that location)
218+
In this release we addressed an issue where copies of files uploaded via the UI were left in one specific temp directory (`.../domain1/uploads` by default). We would like to remind all the installation admins that it is strongly recommended to have some automated (and aggressive) cleanup mechanisms in place for all the temp directories used by Dataverse. For example, at Harvard/IQSS we have the following configuration for the PrimeFaces uploads directory above: (note that, even with this fix in place, PrimeFaces will be leaving a large number of small log files in that location)
219219

220-
Instead of the default location (`.../domain1/uploads`) we use a directory on a dedicated partition, outside of the filesystem where Dataverse is installed, via the following JVM option:
220+
Instead of the default location (`.../domain1/uploads`) we use a directory on a dedicated partition, outside of the filesystem where Dataverse is installed, via the following JVM option:
221221

222222
```
223223
<jvm-options>-Ddataverse.files.uploads=/uploads/web</jvm-options>
224224
```
225225

226-
and we have a dedicated cronjob that runs every 30 minutes and deletes everything older than 2 hours in that directory:
226+
and we have a dedicated cronjob that runs every 30 minutes and deletes everything older than 2 hours in that directory:
227227

228228
```
229229
15,45 * * * * /bin/find /uploads/web/ -mmin +119 -type f -name "upload*" -exec rm -f {} \; > /dev/null 2>&1
230230
```
231231

232-
### Trailing commas in author name now permitted
232+
### Trailing Commas in Author Name Now Permitted
233233

234-
When an author name ends on a comma (e.g. `Smith,` or `Smith, `), the dataset page display was broken after publishing.
235-
Instead, an "Error 500" page was presented to the user.
236-
The underlying issue causing the JSON-LD schema.org output on the page to break was fixed in #10343.
234+
When an author name ended in a comma (e.g. `Smith,` or `Smith, `), the dataset page was broken after publishing (a "500" error page was presented to the user). The underlying issue causing the JSON-LD Schema.org output on the page to break was fixed. See #10343 and #10776.
237235

238236
## API Updates
239237

@@ -483,7 +481,7 @@ Below is the simplest way to reindex Solr:
483481
curl http://localhost:8080/api/admin/index
484482
```
485483

486-
The API above rebuilds the existing index "in place". If you want to be absolutely sure that your index is up-to-date and consistent, you may consider wiping it clean and reindexing everything from scratch (see [the guides](https://guides.dataverse.org/en/latest/admin/solr-search-index.html)). Just note that, depending on the size of your database, a full reindex may take a while and the users will be seeing incomplete search results during that window.
484+
The API above rebuilds the existing index "in place". If you want to be absolutely sure that your index is up-to-date and consistent, you may consider wiping it clean and reindexing everything from scratch (see [the guides](https://guides.dataverse.org/en/latest/admin/solr-search-index.html)). Just note that, depending on the size of your database, a full reindex may take a while and the users will be seeing incomplete search results during that window.
487485

488486
9\. Run reExportAll to update dataset metadata exports
489487

0 commit comments

Comments
 (0)