Dear Datalab Colleague,
I am still working on the cross match. But I found that the query before the cross match ran too long and can not be completed. I change the criteria of the query as following:
job = qc.query('select * from ls_dr9.tractor where dered_mag_r between 16.0 and 23.0', out='mydb://ls_dered_mag_rdeep',async_=True)
status = qc.status(token, job)
while (status != 'COMPLETED' and status != 'ERROR'):
time.sleep(60)
status = qc.status(token,job)
#print (status)
qc.mydb_index(token,'mydb://ls_dered_mag_rdeep','ra')
qc.mydb_index(token,'mydb://ls_dered_mag_rdeep','dec')
qc.mydb_index(token,'mydb://ls_dered_mag_rdeep','', q3c='ra,dec', cluster=True)
Is it because of the internet speed limit or other issues?
Thanks and Happy New Year!