Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
bulk writing recommendation
  • Loading branch information
zavoraad authored Nov 7, 2024
1 parent 7a57ecc commit 097c1c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ bundle.count_resource_type("Patient").show()

## SQL on FHIR

> **Warning**
> For very large batches of FHIR, use bundle.entry().cache() before calling bulk_table_wirte for best performance
``` python
%python
#Save Claim and Patient data to a table
Expand All @@ -117,6 +120,7 @@ bundle.bulk_table_write(location="hls_healthcare.hls_dev"
,write_mode="overwrite"
,columns=["Patient", "Claim"]) #if columns is not specified, all columns of the dataframe are written (157 resources are written with default settings)
```

``` SQL
%sql
-- Select claim line detailed information
Expand Down

0 comments on commit 097c1c3

Please sign in to comment.