Questions tagged [google-cloud-healthcare]

25 questions
2
votes
1 answer

Error in google healthcare when trying to create a dicom store

I leave the link as a guide https://cloud.google.com/healthcare/docs/how-tos/dicom-connect-pacs#creating_a_dicom_store Deploying the adapter using Google Kubernetes Engine my manifest file apiVersion: extensions/v1beta1 kind: Deployment metadata: …
Facu
  • 21
  • 1
2
votes
1 answer

GCP Healthcare FHIR Ingestion is too slow

I am trying to ingest 1 Million FHIR JSON Files (each file in bytes size) in FHIR Store of google healthcare dataset. It is taking so much time to ingest (more than an hour). Is there any way to optimize the speed of healthcare API. Note : I want to…
code tutorial
  • 554
  • 1
  • 5
  • 17
2
votes
2 answers

Google Healthcare API on GKE with PubSub - INVALID_ARGUMENT

We have been testing out the Google Healthcare API specifically with HL7 and as I've run through the tutorials I've hit a roadblock. I should mention that I have a fair bit of experience with Kubernetes and AWS, but not so much Google Cloud. This…
1
vote
1 answer

Googe Cloud Healthcare api: How can I get a list of all the datasets with the names of data stores in each of them?

I am using the Google cloud healthcare api to store dicom images. I need a way to fetch a list of all the dataset in a project with names of all the data stores in each dataset. so possible output would look like this: { dataset1: [ "dataStoreA",…
1
vote
1 answer

Custom resource type google cloud healthcare api fhir

We have developed a custom FHIR resource type called VacancyRequest to be used for interoperability between workforce management systems. Im trying to understand if the google cloud healthcase api FHIR supports custom resource types or only…
Skygge
  • 33
  • 4
1
vote
1 answer

Google Cloud Healthcare API search by date with time zone on FHIR resource returns error

I'm using Google Healthcare API and trying to search a FHIR resource by date with time zone, like example…
1
vote
1 answer

Permission denied while accessing Google Healthcare API from OAuth-2.0 playground

My request to google healthcare API is not working from OAuth 2.0 playground using refresh token option. I am getting "status": "PERMISSION_DENIED". The requested API has been enabled for many days. Here's the Request and Response details. POST…
0
votes
1 answer

GCP FHIR store BigQuery streaming causes "Exceeded rate limits: too many table update operations for this table."

I have a Google Cloud Healthcare dataset with a FHIR store configured for BigQuery streaming. When I add a larger (< 1000) collection to the FHIR store, the resources fail to add to the configured BigQuery dataset and produce an error. I configured…
0
votes
0 answers

Is it possible to determine relationships between medical terms in Google Cloud Healthcare API?

I am working on a research project and I have come to a point where I need to determine if elements of a patient's medical record match criteria outlined in specific treatment guidelines. I am very new to NLP, but it seems like this is not a common…
JTris
  • 11
  • 1
0
votes
1 answer

Google Healthcare API: how to get Pub/Sub notification when DICOM instance is deidentified

I am working on Cloud Run service which call API to deidentify a DICOM store. In my code I did following (using node.js library API): Create a "destination DICOM store" with a specific Pub/Sub topic "InstanceDeidentifiedEvent" for notification by…
0
votes
2 answers

filter GCP FHIR QuestionnaireResponse resources by a linkId

I'm Trying to filter the GCP healthcare Fhir QuestionnaireResponse by specific linkId. I have tried following queries in GCP FHIR…
0
votes
1 answer

Authentication for using Google Cloud Platform API through Google Colab

I am trying to use the Healthcare API, specifically the Healthcare Natural Language API for which there is this tutorial as well as this other one The tutorial outlines how to run the API on a string; I've been tasked with figuring out how to make…
0
votes
1 answer

Error when creating an FHIR resource in google cloud healthcare API (Ruby)

I'm trying to create a Patient type resource using the service healthcare = Google::Apis::HealthcareV1 service = healthcare::CloudHealthcareService.new and create_project_location_dataset_fhir_store_fhir method in ruby. I keep on getting this…
0
votes
1 answer

GCP - How can I create an HL7v2 store configured with a Pub/Sub topic using curl?

In order to transmit HL7v2 messages over TCP/IP connections using the minimal lower layer protocol (MLLP) I'm following this guide. When I get to the part where I create an HL7v2 store configured with a Pub/Sub topic (here) I get an error. This is…
cuzureau
  • 330
  • 2
  • 17
0
votes
1 answer

$lastn support in Google Healthcare API (FHIR store)

We are using Google healthcare FHIR store v1 with node.js client (googleapi). Google Cloud platform API docs for v1beta1 (but not v1) mentioned $lastn, and the npm package (googleapi) only has the ObservationLastn() function when initialized with…
1
2