-
Hi, I am running Snowstorm in Docker. Now I am trying to load the Snomed Files following https://github.com/IHTSDO/snowstorm/blob/master/docs/loading-snomed.md I tried to create a job using the Import-Endpoint (http://snowowl_lab:8080/snowowl/?api=snomedct#post-/snomedct/-path-/import)
Using the /jobs/{id} Endpoint (API http://snowowl_lab:8080/snowowl/?api=core#get-/jobs/-id- ) "result": "{"message":"Resource with identifier 'snowowl' could not be found.","developerMessage":"The requested instance resource (id = 'snowowl', type = 'Resource') does not exist and/or not yet created.","code":0,"status":404,"additionalInfo":{}}", Where would the job create the archive directory, so that I can upload the Snomed-Files there? Thanks for any hint! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @sschaat, Snowstorm is a different SNOMED CT Terminology Server than Snow Owl, our documentation can be found here: https://docs.b2i.sg/snow-owl Something is wrong with your import request URL, because it tries to recognize the
Path parameters in the Snow Owl API reference branch paths or resource URIs, not file system paths. See more info about that here. The usual flow to import SNOMED CT into Snow Owl is the following:
Once the imported started you can monitor it with the following endpoint:
Or you can follow the log output of the Snow Owl service (or Docker container). I hope this helps. Cheers, |
Beta Was this translation helpful? Give feedback.
-
Hi Mark, sorry for mixing up Snowstorm and Snowowl. That happens when you try to setup both in parallel.... I created the CodeSystem "SNOMEDCT" and was able to see it under http://snowowl_lab:8080/snowowl/codesystems The GUI says I should upload the files via the archive endpoint, but that's probably obsolete since I used the "file" paramter in the import endpoint. I also cannot find an archive endpoint. The job-endpoint in the CORE-API tells me the status is "RUNNING", so it seems that I have to wait... Thanks again! |
Beta Was this translation helpful? Give feedback.
-
Hi @sschaat,
No problem.
Yes, that is obsolete, we will get this fixed quickly. I hope the import finishes soon and you'll have a SNOMED content loaded in Snow Owl. Let us know if it fails or if you have any further questions. Cheers, |
Beta Was this translation helpful? Give feedback.
Hi @sschaat,
Snowstorm is a different SNOMED CT Terminology Server than Snow Owl, our documentation can be found here: https://docs.b2i.sg/snow-owl
Something is wrong with your import request URL, because it tries to recognize the
snowowl
part as a CodeSystem, which is clearly wrong.Could you please share the actual import request
cURL
command you have used? (if you have initiated the import request from the Swagger UI then please share a screenshot of the parameters or copy the request from thecURL
tab)Path p…