Skip to content

Commit c6549e3

Browse files
authored
Merge pull request #158 from Caltech-IPAC/raen/reduce-gha-memory-usage
Reduce GHA memory usage
2 parents b6e3763 + 3827b59 commit c6549e3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ignore_tutorials/ignore_rendering

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Runs out of memory on GHA using the JB2 stack
22
tutorials/parallelize/Parallelize_Convolution
3+
# Uses about 10G of memory which doesn't leave enough for other notebooks
4+
tutorials/parquet-catalog-demos/wise-allwise-catalog-demo

tutorials/cosmodc2/cosmoDC2_TAP_access.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ adql = f"SELECT count(redshift) FROM {tablename}"
7575
adql
7676
```
7777

78+
In order to use TAP with this ADQL string using pyvo, you can do the following:
79+
7880
```{code-cell} ipython3
79-
# In order to use TAP with this ADQL string using pyvo, you can do the following:
80-
result = service.run_async(adql)
81-
result
81+
# Uncomment the next line to run the query. Beware that it can take awhile.
82+
# service.run_async(adql)
8283
```
8384

8485
The above query shows that there are 597,488,849 redshifts in this table.

tutorials/euclid_access/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)