[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: THREDDS and grib
- To: Kevin O'Brien <Kevin.M.O'Brien@xxxxxxxx>
- Subject: Re: THREDDS and grib
- From: John Caron <caron@xxxxxxxxxxxxxxxx>
- Date: Thu, 24 Apr 2008 09:36:16 -0600
- Cc: Unidata netCDF Java Support <support-netcdf-java@xxxxxxxxxxxxxxxx>, Ethan Davis <edavis@xxxxxxxxxxxxxxxx>
- Delivered-to: support-netcdf-java@unidata.ucar.edu (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "John Caron", Issuer "mailhost.unidata.ucar.edu" (verified OK)) by laraine.unidata.ucar.edu (Postfix) with ESMTP id 059ABCB181; Thu, 24 Apr 2008 09:36:17 -0600 (MDT)
- In-reply-to: <480E5985.4010200@noaa.gov>
- References: <47C754E1.5090107@noaa.gov> <47C888F8.6010101@unidata.ucar.edu>
- User-agent: Thunderbird 2.0.0.12 (Windows/20080213)
Hi Kevin:
I havent had time to reproduce this yet, but im guessing one source of the
slowdown is using opendap
URLS in the compound aggregation. It would be interesting to time 1) the single
aggregations, 2) the
compound agg as it exists, and 3) the compound agg, but replace the opendap
URLs with direct netcdf
files,
see attached file
Replace:
<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2">
<aggregation type="union">
<netcdf
location="http://data1.gfdl.noaa.gov:8780/thredds/dodsC/pr_daily_20C3M-1_R1_18610101-20001231"
/>
<netcdf
location="http://data1.gfdl.noaa.gov:8780/thredds/dodsC/tasmax_daily_20C3M-1_R1_18610101-20001231"
/>
<netcdf
location="http://data1.gfdl.noaa.gov:8780/thredds/dodsC/tasmin_daily_20C3M-1_R1_18610101-20001231"
/>
</aggregation>
</netcdf>
With:
<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2">
<aggregation type="union">
<netcdf>
<aggregation dimName="time" type="joinExisting">
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmax_A2.18610101-19001231.nc"
ncoords="14600" />
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmax_A2.19010101-20001231.nc"
ncoords="36500" />
</aggregation>
</netcdf>
<netcdf>
<aggregation dimName="time" type="joinExisting">
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmin_A2.18610101-19001231.nc"
ncoords="14600" />
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmin_A2.19010101-20001231.nc"
ncoords="36500" />
</aggregation>
</netcdf>
<netcdf>
<aggregation dimName="time" type="joinExisting">
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmin_A2.18610101-19001231.nc"
ncoords="14600" />
<netcdf
location="file:/data/gfdl_cm2_1/CM2.1U-D4_1860-2000-AllForc_H1/pp/atmos/ts/daily/tasmin_A2.19010101-20001231.nc"
ncoords="36500" />
</aggregation>
</netcdf>
</aggregation>
</netcdf>