Skip to content

Commit e35bad4

Browse files
Merge pull request #241 from icatproject/27-nov-25-mtg
Add meeting notes for meeting on 27th November 2025
2 parents baec367 + 0270b78 commit e35bad4

2 files changed

Lines changed: 257 additions & 0 deletions

File tree

Lines changed: 255 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,255 @@
1+
---
2+
title: ICAT Collaboration Meeting - 27th November 2025
3+
date: 2025-11-27
4+
chair: Kevin
5+
scribe: Louise/Patrick
6+
---
7+
8+
## Attendance
9+
10+
Attendees:
11+
12+
- Rolf Krahl
13+
- Andy Gotz
14+
- Louise Davies
15+
- Kevin Phipps
16+
- Malik Almohammad
17+
- Patrick Austin
18+
- Alex de Maria
19+
- Alan Kyffin
20+
- Marjolaine Bodin (joined 20 mins late)
21+
22+
## Agenda
23+
24+
## Site Updates
25+
26+
### SESAME
27+
28+
No updates, everything going fine
29+
30+
### HZB
31+
32+
Not much to report, still moving ICAT servers to new VMs. Not struggling with anything ICAT related, Docker related
33+
34+
AG: cybersecurity problems resolved?
35+
36+
RK: resolved?
37+
38+
AG: can you get ICAT back online?
39+
40+
RK: stricter rules now, probably the cause of the issues I'm having. Still waiting for ID management before ICAT. Not allowed non-2FA login.
41+
42+
AG: keycloak?
43+
44+
RK: yes, going to set it up and once it is then can bring ICAT back up. Non-login related ICAT things are externally accessible so e.g. DOI landing pages, OAI-PMH
45+
46+
### ESRF
47+
48+
Working on integration of MX on ICAT. Just sent ispyb users that it will be deprecated in March 2026 and will have to use ICAT/DataPortal.
49+
50+
AG: also started refactoring ICAT+?
51+
52+
AdM: not official, created over 10 years ago, we have been focused on new features, would like to update dependencies/versions, want to split into micro-services.
53+
54+
AG: would be then able to run a single microservice independently?
55+
56+
AdM: yes, that's the idea. Can run e.g. only sample tracking or logbooks. Only an idea at the moment though!
57+
58+
AG: Maybe Marjolaine can present at the F2F?
59+
60+
KP: was about to suggest that
61+
62+
### ISIS
63+
64+
LD: Seen the minutes from last time. They've updated to latest ICAT server. Not whether they were running the WAR or proper version. Now on proper version. Otherwise working on internal stuff. Certificates and ingest. That's all that's ICAT related.
65+
66+
AG: Where is Santosh based?
67+
68+
LD: STFC, based in ISIS. But soon they may end up being the same department as us. Not the same group. I go to their meetings so can give updates. Maybe the future will hold something different.
69+
70+
### DLS
71+
72+
Working on DOI implementation. Hoping to have something in January for them to test.
73+
74+
AG: contacted by Steve Collins, discussions of future of data archiving. Only 80PB archived? seems low considering age of data
75+
76+
KP: seems right, but curve is exponential. Data goes back to 2008. ISIS goes back to 1987.
77+
78+
AG: ILL can go back 50. Most users no longer alive.
79+
L
80+
D: What do you do if the PI dies for open data? Who has the rights?
81+
82+
 
83+
84+
AdM: Keycloak? affect ICAT?
85+
86+
KP: currently going to do SSO with Microsoft Login soon. Going to have meeting about ICAT and how authz is done.
87+
88+
AG: what Alex did with keycloak applicable?
89+
90+
AdM: has openID plugin?
91+
92+
RK: Have Open ID Connect. Between single sign on and service. Takes OIDC access token and delivers the session. Protocol is more advanced. Need redirects between the two. In principle it depends on how the system looks. Could be fairly easy to deploy. At least if behind an Apache reverse proxy, as there is a plugin which does it all for you. Then you get to the application only when the login has already succeeded.
93+
94+
LD: Alan will probably talk about our support for OIDC which is needed for Diamond and CLF.
95+
96+
 
97+
98+
AK: In DataGateway. All the authn gets done on the SciGatewayAuth component. It's fairly straightforward. Not a lot of code to do it. Can share. Have an athenticator that just gets told to log in the specified user and you get a session id back. That's how we did it.
99+
100+
LD: Idea is it only accepts requests from the machine that the component is running on.
101+
102+
AK: Has a token it passes along with this to verify.
103+
104+
RK: Shouldn't be too difficult. Will have OIDC access token on the way. Could, if you wanted to, use the OIDC authetnicator. Don't even need the username/password, just the token.
105+
106+
AG: Does this support single sign on?
107+
108+
LD: Yes. Need it for ORCID login for the DOI work. Will also use the STFC single sign on. Impletmented to support multple autheticators. Tested with corporate Microsoft, ORCID and keycloak. Should work with any.
109+
110+
RK: OK that would be more complex for the existing oidc plugin. The idea there was you consolidate this into the keycloak, then keycloak goes to the external providers.
111+
112+
: Main motivation was DG doesn't use ICAT session ids, but KWTs. Already need one middleman. Makes sense to do other things in tat component.
113+
114+
AK: Could copy the bits that do the back and forth then pass to the existing icat.oidc authenticator if you only want one provider.
115+
116+
## Component Updates
117+
118+
### icat.server 6.2
119+
120+
Still pending release. Alan will do it soon.
121+
122+
### ids
123+
124+
AG: created IDS issue: [https://github.com/icatproject/ids.server/issues/172](https://github.com/icatproject/ids.server/issues/172) Content negotiation ranges is not compatible with desired download tool. Was downloading 99% of 10GB files on not so fast links. At the very end, it fails due to the message. Still have the issue that need 100% of the file.
125+
126+
RK: This is always the case with the zip. Directory is at the very end.
127+
128+
AG: tar.gz files instead?
129+
130+
RK: That would be another issue instead.
131+
132+
AG: Does that need more space?
133+
134+
RK: Doubt id there's a huge difference. You can compress in both cases. Usually a big binary file, compression won't help if it's already compressed. Difficulty with tar is whether there is Java support. Needs to be generated on the fly. Need something I can write the files into... I don't know if this exists. This is why this needs its own issue.
135+
136+
AG: Had this request for a while (year+). Protein crystallography. They would be a big user.
137+
138+
RK: Yes it's possible in principle, need a component for it.
139+
140+
AG: There's something in Apache for this.
141+
142+
RK: Can't promise a timeline.
143+
144+
AG: Request is 12 months old, but keeps being refreshed.
145+
146+
### icat.lucene
147+
148+
4.0.0 released. Improved handling of file paths (forward slashes and dots handled properly)
149+
150+
LD: I'll create an issue becuase ISIS uses windows so backwards slashes as path separators, probably needs a config option
151+
152+
PA: it's on my list, no guarantees on speed but an issue would be good
153+
154+
## AOB
155+
156+
### Direct Data Access from DOIs (D3A)
157+
158+
RK: SIG for Direct Data Access from DOIs. If you have a pid, you want machine actionable download based purely on the pid. Setting up a protocol on how to use it. Two problems. 1: tell the client the download URL from the DOI. They suggest metalink. Then need content negotiation to return this instead of HTML for DOI landing pages. Someone at ESRF is working on this.
159+
160+
AG: Hired someone to implement D3A on top of what we have. On top of our landing page. Negotiate with IDS. Also working on the archiving system. Still has to meet and discuss with Alex and Marjolaine. He doesn't know. He's been talking to Paul, but not how to implement at ESRF.
161+
162+
RK: other thing is how to download things from tape
163+
164+
AG: that's next phase, restore from tape automatically
165+
166+
RK: not yet covered from D3A group, trivial solution already in IDS. If you already have a preparedId from IDS which is not online returns 503. If you come back later then same request succeeds.
167+
168+
AG: Need to protect against robots?
169+
170+
RK: If you want to implement, you want to have machine actionable download. Of couse a robot can use that. There is nothing you could put into the protocol to prevent, as that would mean it isn't machine actionable. Maybe rate limit it serverside to prevent robots from flooding the system.
171+
172+
AG: Maybe we could get a presetnaton on D3A at the F2F as well.
173+
174+
RK: Meeting yesterday. In the aftermath, might be interesting to have another component that delivers well defined links to datasets or datafiles. Could deterministically generate from ICAT entity names. Could do the content negotiation for metalink and provide links for individual files. Link to a prepared id from IDS.
175+
176+
AG: Need to know how it would work with the landing page. Then you go to the other components. It's a nice discussion point. Then if we have CLI tools...
177+
178+
RK: They have client tools
179+
180+
AG: This is what Paul told me. Aria2
181+
182+
RK: Built on a Python framework [fsspec](https://filesystem-spec.readthedocs.io/en/latest/)
183+
184+
AG: Looks like a filesystem.
185+
186+
RK: Try to stress it would work for any kind of pid.
187+
188+
AG: PURL.
189+
190+
RK: Handles
191+
192+
At the end of the meeting, Tycho Canter Cremers from D3A group joined the meeting. He'll be invited to a future collab meeting or the F2F. AG suggests he should be added to the mailing list potentially.
193+
194+
### OpenAlex
195+
196+
AG: anyone using? Free crossref. large body of scientific publications, analyses them.
197+
198+
### F2F update
199+
200+
Kevin presented some slides.
201+
202+
List of confirmed attendees growing, just a few more need to confirm.
203+
204+
AG: LNLS might need VC?
205+
206+
KP: rooms should have VC capabilities
207+
208+
Kevin thanks everyone for confirming room reservations and passing along dietary requirements.
209+
210+
Sent Visa supporting letters.
211+
212+
Google form re: RAL facility tours, please fill in by end of the week.
213+
214+
Kevin went over the proposed schedule.
215+
216+
RK: facility updates, probably better to be interesting facility specific projects rather than standard "running this version". e.g for HZB SEPIA
217+
218+
AG: good to present things others could re-use
219+
220+
KP: should we just have X talk "slots" for interesting things rather than reserve a slot for each facility for their updates. Concerned if we ask for volunteers then not many volunteers!
221+
222+
RK: probably going to be more presentations than ideas?
223+
224+
AG: if we run out of ideas then interesting to hear from newer facilities e.g. ALBA
225+
226+
KP: Rodrigo said he wanted to present their work with k8s
227+
228+
AG: could also have a remote presentation for those who can't present in person.
229+
230+
 
231+
232+
AG: probably need to structure "future" discussions and specific topics
233+
234+
KP: hard to plan in advanced, things will come up during the day
235+
236+
AG: any sustainability issues, EOL issues?
237+
238+
RK: pragmatic approach - won't have December meeting? Next one would be 29th Jan. Say to community to submit proposals for presentations ahead of next collab meeting. Can then discuss in Jan collab meeting the proposals.
239+
240+
 
241+
242+
AG: SciCAT update? new PANOSC search (AI powered).
243+
LD: new search is centralised despite previously being adamant that search needed to be decentralisd
244+
245+
RK: how is data collected from facilties?
246+
247+
AG: remote presentation, or sent the head developer
248+
249+
 
250+
251+
AG: reduced rate taxis? think I rememember that from last visit?
252+
253+
PA: STFC drivers? unsure if that is applicable to external people
254+
255+
KP: i'll investigate

content/collaboration/communication/monthly-meetings/2025-meetings/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ title: 2025 Meetings
1919
[25th September 2025](/collaboration/communication/monthly-meetings/2025-meetings/20250925-meeting)
2020

2121
[6th November 2025](/collaboration/communication/monthly-meetings/2025-meetings/20251106-meeting)
22+
23+
[27 November 2025](/collaboration/communication/monthly-meetings/2025-meetings/20251127-meeting)

0 commit comments

Comments
 (0)