Import Gaia_x_SDSS to HATS#
[9]:
from astroquery.gaia import Gaia
import numpy as np
Gaia.login()
INFO: Login to gaia TAP server [astroquery.gaia.core]
User: lpalaver
Password: ········
INFO: OK [astroquery.utils.tap.core]
INFO: Login to gaia data server [astroquery.gaia.core]
INFO: OK [astroquery.utils.tap.core]
[10]:
cd "/mnt/beegfs/scratch/data/Gaia-SDSS/fits/with_extinction"
/mnt/beegfs/scratch/data/Gaia-SDSS/fits/with_extinction
/nvme/lovro/miniconda3/envs/photod-testing/lib/python3.12/site-packages/IPython/core/magics/osm.py:417: UserWarning: This is now an optional IPython functionality, setting dhist requires you to install the `pickleshare` library.
self.shell.db['dhist'] = compress_dhist(dhist)[-100:]
[8]:
for i,j in zip(np.arange(0, 2000000000, 100000000)[:-1], np.arange(0, 2000000000, 100000000)[1:]):
query = f"SELECT G.random_index, G.ra, G.dec, G.phot_g_mean_mag, G.parallax, G.parallax_error, D.*,\
S.objid, S.type, S.psfmag_u, S.psfmag_g, S.psfmag_r, S.psfmag_i, S.psfmag_z, S.psfmagerr_u, S.psfmagerr_g, S.psfmagerr_r, S.psfmagerr_i, S.psfmagerr_z, \
S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z\
FROM gaiadr3.gaia_source AS G \
JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id \
JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id \
JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid \
WHERE G.parallax_over_error > 5 \
AND G.visibility_periods_used > 10 \
AND G.ruwe < 1.4 \
AND G.in_qso_candidates = 'f' \
AND G.in_galaxy_candidates = 'f' \
AND G.random_index >= {i} \
AND G.random_index < {j}".format(i, j)
print(i, j, "\n", query, "\n")
job = Gaia.launch_job_async(query, dump_to_file=True, output_format='fits')
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Cell In[8], line 1
----> 1 for i,j in zip(np.arange(0, 2000000000, 100000000)[:-1], np.arange(0, 2000000000, 100000000)[1:]):
2 query = f"SELECT G.random_index, G.ra, G.dec, G.phot_g_mean_mag, G.parallax, G.parallax_error, D.*,\
3 S.objid, S.type, S.psfmag_u, S.psfmag_g, S.psfmag_r, S.psfmag_i, S.psfmag_z, S.psfmagerr_u, S.psfmagerr_g, S.psfmagerr_r, S.psfmagerr_i, S.psfmagerr_z, \
4 S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z\
(...)
14 AND G.random_index >= {i} \
15 AND G.random_index < {j}".format(i, j)
16 print(i, j, "\n", query, "\n")
NameError: name 'np' is not defined
[ ]:
# Add extinction column only
for i,j in zip(np.arange(0, 2000000000, 100000000)[:-1], np.arange(0, 2000000000, 100000000)[1:]):
query = f"SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z \
FROM gaiadr3.gaia_source AS G \
JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id \
JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id \
JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid \
WHERE G.parallax_over_error > 5 \
AND G.visibility_periods_used > 10 \
AND G.ruwe < 1.4 \
AND G.in_qso_candidates = 'f' \
AND G.in_galaxy_candidates = 'f' \
AND G.random_index >= {i} \
AND G.random_index < {j}".format(i, j)
print(i, j, "\n", query, "\n")
job = Gaia.launch_job_async(query, dump_to_file=True, output_format='fits')
0 100000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 0 AND G.random_index < 100000000
200000000 300000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 200000000 AND G.random_index < 300000000
300000000 400000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 300000000 AND G.random_index < 400000000
400000000 500000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 400000000 AND G.random_index < 500000000
500000000 600000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 500000000 AND G.random_index < 600000000
600000000 700000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 600000000 AND G.random_index < 700000000
700000000 800000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 700000000 AND G.random_index < 800000000
800000000 900000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 800000000 AND G.random_index < 900000000
900000000 1000000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 900000000 AND G.random_index < 1000000000
1000000000 1100000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 1000000000 AND G.random_index < 1100000000
1100000000 1200000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 1100000000 AND G.random_index < 1200000000
1200000000 1300000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 1200000000 AND G.random_index < 1300000000
1300000000 1400000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 1300000000 AND G.random_index < 1400000000
1400000000 1500000000
SELECT G.source_id, S.extinction_u, S.extinction_g, S.extinction_r, S.extinction_i, S.extinction_z FROM gaiadr3.gaia_source AS G JOIN external.gaiaedr3_distance AS D ON G.source_id = D.source_id JOIN gaiadr3.sdssdr13_best_neighbour AS BN ON G.source_id = BN.source_id JOIN external.sdssdr13_photoprimary AS S ON BN.original_ext_source_id = S.objid WHERE G.parallax_over_error > 5 AND G.visibility_periods_used > 10 AND G.ruwe < 1.4 AND G.in_qso_candidates = 'f' AND G.in_galaxy_candidates = 'f' AND G.random_index >= 1400000000 AND G.random_index < 1500000000
[5]:
from dask.distributed import Client
from hats_import.pipeline import pipeline_with_client
from hats_import.catalog.arguments import ImportArguments
[6]:
client = Client(n_workers=96, threads_per_worker=1, memory_limit="15GiB")
client
/nvme/lovro/miniconda3/envs/photod-testing/lib/python3.12/site-packages/distributed/node.py:187: UserWarning: Port 8787 is already in use.
Perhaps you already have a cluster running?
Hosting the HTTP server on port 46547 instead
warnings.warn(
[6]:
Client
Client-9cce9fb7-b7d7-11ef-8faf-6cfe548c2c54
| Connection method: Cluster object | Cluster type: distributed.LocalCluster |
| Dashboard: http://127.0.0.1:46547/status |
Cluster Info
LocalCluster
a25d4b67
| Dashboard: http://127.0.0.1:46547/status | Workers: 96 |
| Total threads: 96 | Total memory: 1.41 TiB |
| Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-38daecac-f45c-4519-be64-1449d34838fd
| Comm: tcp://127.0.0.1:44843 | Workers: 96 |
| Dashboard: http://127.0.0.1:46547/status | Total threads: 96 |
| Started: Just now | Total memory: 1.41 TiB |
Workers
Worker: 0
| Comm: tcp://127.0.0.1:43067 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36811/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46167 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-x4ko_u7s | |
Worker: 1
| Comm: tcp://127.0.0.1:33443 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37943/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37083 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-bwlggyws | |
Worker: 2
| Comm: tcp://127.0.0.1:43771 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38767/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37833 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-y3b4yhhd | |
Worker: 3
| Comm: tcp://127.0.0.1:43679 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34397/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43195 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ccui98po | |
Worker: 4
| Comm: tcp://127.0.0.1:39615 | Total threads: 1 |
| Dashboard: http://127.0.0.1:39527/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33955 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-5xwvf7tg | |
Worker: 5
| Comm: tcp://127.0.0.1:36049 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35967/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36833 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-o6vcbp0p | |
Worker: 6
| Comm: tcp://127.0.0.1:39221 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33815/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45637 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-93_tr_k3 | |
Worker: 7
| Comm: tcp://127.0.0.1:36473 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41129/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:40359 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ilclzhav | |
Worker: 8
| Comm: tcp://127.0.0.1:44627 | Total threads: 1 |
| Dashboard: http://127.0.0.1:40905/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36187 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-3k7v1_q8 | |
Worker: 9
| Comm: tcp://127.0.0.1:46787 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46211/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:40035 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-w_5pqr1d | |
Worker: 10
| Comm: tcp://127.0.0.1:40435 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46695/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:42081 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-s2jty4_3 | |
Worker: 11
| Comm: tcp://127.0.0.1:36951 | Total threads: 1 |
| Dashboard: http://127.0.0.1:42239/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36763 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-nm0xdae4 | |
Worker: 12
| Comm: tcp://127.0.0.1:33133 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36179/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35475 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-0wgjuuyn | |
Worker: 13
| Comm: tcp://127.0.0.1:44539 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38563/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46859 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-6ems34j2 | |
Worker: 14
| Comm: tcp://127.0.0.1:35963 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34025/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41189 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-_68_jc67 | |
Worker: 15
| Comm: tcp://127.0.0.1:43809 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37865/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43565 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-l776muy7 | |
Worker: 16
| Comm: tcp://127.0.0.1:39953 | Total threads: 1 |
| Dashboard: http://127.0.0.1:42089/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38389 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-c6okiowr | |
Worker: 17
| Comm: tcp://127.0.0.1:39889 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46549/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44577 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-2e3566z4 | |
Worker: 18
| Comm: tcp://127.0.0.1:46165 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41777/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41531 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-off660lt | |
Worker: 19
| Comm: tcp://127.0.0.1:35037 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45639/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35959 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-m6r8s1ro | |
Worker: 20
| Comm: tcp://127.0.0.1:35157 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33153/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37883 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-lkh5bf6l | |
Worker: 21
| Comm: tcp://127.0.0.1:36809 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46555/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33373 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-fs4003xk | |
Worker: 22
| Comm: tcp://127.0.0.1:34787 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45859/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39567 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-52alg4d8 | |
Worker: 23
| Comm: tcp://127.0.0.1:37299 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41779/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44037 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ki4e2_t5 | |
Worker: 24
| Comm: tcp://127.0.0.1:37347 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33225/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41013 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-c43_nkig | |
Worker: 25
| Comm: tcp://127.0.0.1:42855 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37881/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39283 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-cx161trg | |
Worker: 26
| Comm: tcp://127.0.0.1:43421 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37725/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45573 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-iyirei4u | |
Worker: 27
| Comm: tcp://127.0.0.1:37577 | Total threads: 1 |
| Dashboard: http://127.0.0.1:44777/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44791 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-19lgwgjq | |
Worker: 28
| Comm: tcp://127.0.0.1:43441 | Total threads: 1 |
| Dashboard: http://127.0.0.1:40101/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:40859 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-b2e8mew9 | |
Worker: 29
| Comm: tcp://127.0.0.1:36987 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46815/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33629 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-pu1n4za1 | |
Worker: 30
| Comm: tcp://127.0.0.1:41991 | Total threads: 1 |
| Dashboard: http://127.0.0.1:44417/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:32835 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-2h98zrba | |
Worker: 31
| Comm: tcp://127.0.0.1:33673 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33969/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46491 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-qa4j1dd3 | |
Worker: 32
| Comm: tcp://127.0.0.1:39571 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46173/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:42873 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-4aduibbs | |
Worker: 33
| Comm: tcp://127.0.0.1:34597 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33127/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37607 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-is9igg5s | |
Worker: 34
| Comm: tcp://127.0.0.1:37561 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35071/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38085 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ayq0e8ni | |
Worker: 35
| Comm: tcp://127.0.0.1:42629 | Total threads: 1 |
| Dashboard: http://127.0.0.1:40707/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36007 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-rzoh_0kz | |
Worker: 36
| Comm: tcp://127.0.0.1:45437 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38729/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44127 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-5s75i_9k | |
Worker: 37
| Comm: tcp://127.0.0.1:43263 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34745/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39309 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-vgfjh6gu | |
Worker: 38
| Comm: tcp://127.0.0.1:37775 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45557/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46611 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-pu6zpcbr | |
Worker: 39
| Comm: tcp://127.0.0.1:36735 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41305/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44579 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-4jpk9jt1 | |
Worker: 40
| Comm: tcp://127.0.0.1:40799 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34125/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46079 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-nuvqq5d9 | |
Worker: 41
| Comm: tcp://127.0.0.1:44259 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41637/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43325 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-20x877uj | |
Worker: 42
| Comm: tcp://127.0.0.1:39269 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41585/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43867 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-5bmyytol | |
Worker: 43
| Comm: tcp://127.0.0.1:39477 | Total threads: 1 |
| Dashboard: http://127.0.0.1:42665/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35033 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-6c6i62p1 | |
Worker: 44
| Comm: tcp://127.0.0.1:42425 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38985/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39115 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-vinlbs3_ | |
Worker: 45
| Comm: tcp://127.0.0.1:46485 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46213/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41149 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-vqp_y5ij | |
Worker: 46
| Comm: tcp://127.0.0.1:36209 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36077/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:42755 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-9a0arglh | |
Worker: 47
| Comm: tcp://127.0.0.1:38905 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35379/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38983 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-buxa4tk7 | |
Worker: 48
| Comm: tcp://127.0.0.1:38999 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36207/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33469 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-cpft4075 | |
Worker: 49
| Comm: tcp://127.0.0.1:44897 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36351/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41157 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-x1fyxzj6 | |
Worker: 50
| Comm: tcp://127.0.0.1:43139 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36343/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45443 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-1kc05x4g | |
Worker: 51
| Comm: tcp://127.0.0.1:45617 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34375/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:46187 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-hvplz6vc | |
Worker: 52
| Comm: tcp://127.0.0.1:42433 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37797/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35821 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-1xn7xjqc | |
Worker: 53
| Comm: tcp://127.0.0.1:36773 | Total threads: 1 |
| Dashboard: http://127.0.0.1:40399/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43193 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-x3troakv | |
Worker: 54
| Comm: tcp://127.0.0.1:46113 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45809/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38055 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-hl_bt9dk | |
Worker: 55
| Comm: tcp://127.0.0.1:46691 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35949/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:42349 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-3n6mw1wi | |
Worker: 56
| Comm: tcp://127.0.0.1:44281 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37835/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41385 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-41_h__5u | |
Worker: 57
| Comm: tcp://127.0.0.1:36903 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33543/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37063 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-8o6399e0 | |
Worker: 58
| Comm: tcp://127.0.0.1:40067 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36853/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:43211 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-vn5ui_8i | |
Worker: 59
| Comm: tcp://127.0.0.1:35623 | Total threads: 1 |
| Dashboard: http://127.0.0.1:46371/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41205 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-t4abn28y | |
Worker: 60
| Comm: tcp://127.0.0.1:40729 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45599/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33939 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-b45as9_a | |
Worker: 61
| Comm: tcp://127.0.0.1:38569 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33837/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38301 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-i4s2oy4h | |
Worker: 62
| Comm: tcp://127.0.0.1:35969 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45675/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45817 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-75s3mq4t | |
Worker: 63
| Comm: tcp://127.0.0.1:43397 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45339/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36521 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ew76inx1 | |
Worker: 64
| Comm: tcp://127.0.0.1:39551 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38693/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44827 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-8dwhsbjq | |
Worker: 65
| Comm: tcp://127.0.0.1:33893 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45021/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:34389 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-vxc44cs5 | |
Worker: 66
| Comm: tcp://127.0.0.1:42641 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41165/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45131 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-sxwe8a89 | |
Worker: 67
| Comm: tcp://127.0.0.1:43683 | Total threads: 1 |
| Dashboard: http://127.0.0.1:43267/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39383 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-195met6e | |
Worker: 68
| Comm: tcp://127.0.0.1:41325 | Total threads: 1 |
| Dashboard: http://127.0.0.1:42773/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45647 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-jjhnfahp | |
Worker: 69
| Comm: tcp://127.0.0.1:44051 | Total threads: 1 |
| Dashboard: http://127.0.0.1:37511/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:34833 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-78pyohcm | |
Worker: 70
| Comm: tcp://127.0.0.1:42131 | Total threads: 1 |
| Dashboard: http://127.0.0.1:42973/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37633 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-kza9_egk | |
Worker: 71
| Comm: tcp://127.0.0.1:35745 | Total threads: 1 |
| Dashboard: http://127.0.0.1:43643/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:40677 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-pa6orpz6 | |
Worker: 72
| Comm: tcp://127.0.0.1:37227 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35455/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:36265 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-uqxt1yh8 | |
Worker: 73
| Comm: tcp://127.0.0.1:32935 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41831/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:34569 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-prhqt596 | |
Worker: 74
| Comm: tcp://127.0.0.1:41427 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36643/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37081 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-kdmet245 | |
Worker: 75
| Comm: tcp://127.0.0.1:37457 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41245/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:37015 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-cn32epw9 | |
Worker: 76
| Comm: tcp://127.0.0.1:39691 | Total threads: 1 |
| Dashboard: http://127.0.0.1:45567/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35163 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-f_u_k1ug | |
Worker: 77
| Comm: tcp://127.0.0.1:42455 | Total threads: 1 |
| Dashboard: http://127.0.0.1:40497/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35643 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-i_yvxsla | |
Worker: 78
| Comm: tcp://127.0.0.1:39433 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36731/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44431 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-mdiglmau | |
Worker: 79
| Comm: tcp://127.0.0.1:41569 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33217/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:34691 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-8dnc1jue | |
Worker: 80
| Comm: tcp://127.0.0.1:37563 | Total threads: 1 |
| Dashboard: http://127.0.0.1:44333/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:40031 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-5asoqxak | |
Worker: 81
| Comm: tcp://127.0.0.1:40317 | Total threads: 1 |
| Dashboard: http://127.0.0.1:39437/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33911 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-l9_ottf9 | |
Worker: 82
| Comm: tcp://127.0.0.1:34653 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35657/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:44397 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-3mtvv2ei | |
Worker: 83
| Comm: tcp://127.0.0.1:35029 | Total threads: 1 |
| Dashboard: http://127.0.0.1:35423/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33401 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-nuq0_xds | |
Worker: 84
| Comm: tcp://127.0.0.1:44187 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41103/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45887 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-0c0mpq1c | |
Worker: 85
| Comm: tcp://127.0.0.1:37093 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38227/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33277 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-k9306kbb | |
Worker: 86
| Comm: tcp://127.0.0.1:37839 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33227/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35515 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-gcedm_cc | |
Worker: 87
| Comm: tcp://127.0.0.1:43077 | Total threads: 1 |
| Dashboard: http://127.0.0.1:43349/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:35867 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-cc3fhlg2 | |
Worker: 88
| Comm: tcp://127.0.0.1:40909 | Total threads: 1 |
| Dashboard: http://127.0.0.1:38769/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38951 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-54moqx5r | |
Worker: 89
| Comm: tcp://127.0.0.1:46861 | Total threads: 1 |
| Dashboard: http://127.0.0.1:34489/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:33541 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-jf8yb4h6 | |
Worker: 90
| Comm: tcp://127.0.0.1:38289 | Total threads: 1 |
| Dashboard: http://127.0.0.1:36671/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39917 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-56nymdzr | |
Worker: 91
| Comm: tcp://127.0.0.1:40051 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33069/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:39009 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-y_d2d6gl | |
Worker: 92
| Comm: tcp://127.0.0.1:42881 | Total threads: 1 |
| Dashboard: http://127.0.0.1:41267/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:38501 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-ibihiy9r | |
Worker: 93
| Comm: tcp://127.0.0.1:43935 | Total threads: 1 |
| Dashboard: http://127.0.0.1:44549/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:41185 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-b5ps14ai | |
Worker: 94
| Comm: tcp://127.0.0.1:41741 | Total threads: 1 |
| Dashboard: http://127.0.0.1:33467/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45165 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-x9a8rsvl | |
Worker: 95
| Comm: tcp://127.0.0.1:43449 | Total threads: 1 |
| Dashboard: http://127.0.0.1:44371/status | Memory: 15.00 GiB |
| Nanny: tcp://127.0.0.1:45681 | |
| Local directory: /tmp/dask-scratch-space-1001/worker-bqla5pc4 | |
[7]:
args = ImportArguments(
sort_columns="source_id",
ra_column="ra",
dec_column="dec",
input_path="/mnt/beegfs/scratch/data/Gaia-SDSS/fits/",
file_reader="fits",
output_artifact_name="Gaia-SDSS",
output_path="/mnt/beegfs/scratch/data/Gaia-SDSS/hats/"
)
[8]:
pipeline_with_client(args, client)