
C3S Aerosol#
This second notebook extends the practical introduction of the first notebook to the C3S Aerosol properties gridded data from 1995 to present derived from satellite observations dataset. We create a full Climate Data Record by combining subsequent data record pieces of similar sensors. We start by downloading the data from the Climate Data Store (CDS) and then demonstrate three use cases for monthly mean multi-sensor data records: calculate and plot a regional data record, calculate and plot a regional multi-annual mean (“climatology”) and plot a regional anomaly time series.
The notebook has six main sections with the following outline:
Table of Contents#
Introduction
Download Data Using CDS API
Use case 1: Create and plot regional data record
Use case 2: Calculate and plot regional climatology
Use case 3: Plot regional Anomaly time series
References
How to access the notebook#
This tutorial is in the form of a Jupyter notebook. You will not need to install any software for the training as there are a number of free cloud-based services to create, edit, run and export Jupyter notebooks such as this. Here are some suggestions (simply click on one of the links below to run the notebook):
Binder |
Kaggle |
Colab |
NBViewer |
|---|---|---|---|
(Binder may take some time to load, so please be patient!) |
(will need to login/register, and switch on the internet via settings) |
(will need to run the command |
(this will not run the notebook, only render it) |
If you would like to run this notebook in your own environment, we suggest you install Anaconda, which contains most of the libraries you will need. You will also need to install the CDS API (pip install cdsapi) for downloading data in batch mode from the CDS.
Introduction#
This second notebook focuses on vombining subsequent parts of a long term record from a sequence of similar sensors, so that relevant Cliamte Data Records can be provided. While exceptionally large expisodic extreme events may be seen in short records of a few years only, slower long-term changes of atmospheric aerosols can only be seen in records of one or more decades.
Import libraries#
We will be working with data in NetCDF format. To best handle this data we will use the netCDF4 python library. We will also need libraries for plotting and viewing data, in this case we will use Matplotlib and Cartopy.
We are using cdsapi to download the data. This package is not yet included by default on most cloud platforms. You can use pip to install it:
#!pip install cdsapi
%matplotlib inline
# CDS API library
import cdsapi
# Libraries for working with multidimensional arrays
import numpy as np
import numpy.ma as ma
import netCDF4 as nc
# Library to work with zip-archives, OS-functions and pattern expansion
import zipfile
import os
from pathlib import Path
# Libraries for plotting and visualising data
import matplotlib.pyplot as plt
import matplotlib as mplt
import matplotlib.dates as md
import cartopy.crs as ccrs
# Libraries for style parameters
from pylab import rcParams
# Disable warnings for data download via API
import urllib3
urllib3.disable_warnings()
# The following style parameters will be used for all plots in this use case.
mplt.style.use('seaborn')
rcParams['figure.figsize'] = [15, 5]
rcParams['figure.dpi'] = 350
rcParams['font.family'] = 'serif'
rcParams['font.serif'] = mplt.rcParamsDefault['font.serif']
rcParams['mathtext.default'] = 'regular'
rcParams['mathtext.rm'] = 'serif:light'
rcParams['mathtext.it'] = 'serif:italic'
rcParams['mathtext.bf'] = 'serif:bold'
plt.rc('font', size=17) # controls default text sizes
plt.rc('axes', titlesize=17) # fontsize of the axes title
plt.rc('axes', labelsize=17) # fontsize of the x and y labels
plt.rc('xtick', labelsize=15) # fontsize of the tick labels
plt.rc('ytick', labelsize=15) # fontsize of the tick labels
plt.rc('legend', fontsize=10) # legend fontsize
plt.rc('figure', titlesize=18) # fontsize of the figure title
projection=ccrs.PlateCarree()
mplt.rc('xtick', labelsize=9)
mplt.rc('ytick', labelsize=9)
/tmp/ipykernel_57492/2007949843.py:2: MatplotlibDeprecationWarning: The seaborn styles shipped by Matplotlib are deprecated since 3.6, as they no longer correspond to the styles shipped by seaborn. However, they will remain available as 'seaborn-v0_8-<style>'. Alternatively, directly use the seaborn API instead.
mplt.style.use('seaborn')
Download data using CDS API#
Set up CDS API credentials#
We will request data from the CDS programmatically with the help of the CDS API.
First, we need to manually set the CDS API credentials.
To do so, we need to define two variables: URL and KEY.
To obtain these, first login to the CDS, then visit https://cds.climate.copernicus.eu/api-how-to and copy) the string of characters listed after “key:”. Replace the ######### below with this string.
URL = 'https://cds.climate.copernicus.eu/api/v2'
KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
Next, we specify a data directory in which we will download our data and all output files that we will generate:
DATADIR='./test_long/'
if not os.path.exists(DATADIR):
os.mkdir(DATADIR)
Long Timeseries#
To start, we need to define the variable, algorithm and region for our analysis. Furthermore, latest dataset versions for each Dual view algorithm are specified.
variable = 'aerosol_optical_depth'
algorithm = 'SWANSEA'
region = 'Europe'
years = ['%04d'%(yea) for yea in range(1995, 2023)]
version_ATSR2 = {'ORAC': 'v4.02',
'ADV': 'v2.30',
'SWANSEA': 'v4.33',
'ENS': 'v2.9',}
version_AATSR = {'ORAC': 'v4.02',
'ADV': 'v3.11',
'SWANSEA': 'v4.33',
'ENS': 'v2.9',}
version_SLSTR = {'ORAC': 'v1.00',
'SDV': 'v2.00',
'SWANSEA': 'v1.12',
'ENS': 'v1.1',}
Next, we implement definitions of some relevant regions, define the temporal coverage for each instrument in the sensor series and extract cell indices for the selected region.
extent = { # 'Region' : [lon_min, lon_max, lat_min, lat_max],
'Europe': [-15, 50, 36, 60],
'Boreal': [-180, 180, 60, 85],
'Asia_North': [50, 165, 40, 60],
'Asia_East': [100, 130, 5, 41],
'Asia_West': [50, 100, 5, 41],
'China_South-East': [103, 135, 20, 41],
'Australia': [100, 155, -45, -10],
'Africa_North': [-17, 50, 12, 36],
'Africa_South': [-17, 50, -35, -12],
'South_America': [-82, -35, -55, 5],
'North_America_West': [-135, -100, 13, 60],
'North_America_East': [-100, -55, 13, 60],
'Indonesia': [90, 165, -10, 5],
'Atlanti_Ocean_dust': [-47, -17, 5, 30],
'Atlantic_Ocean_biomass_burnig': [-17, 9, -30, 5],
'World': [-180, 180, -90, 90],
'Asia': [50, 165, 5, 60],
'North_America': [-135, -55, 13, 60],
'dust_belt': [-80, 120, 0, 40],
'India': [70, 90, 8, 32],
'Northern_Hemisphere': [-180, 180, 0, 90],
'Southern_Hemisphere': [-180, 180, -90, 0],
}
years_ATSR2 = ['1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002']
years_AATSR = ['2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011']
years_SLSTR = ['2017', '2018', '2019', '2020', '2021', '2022']
years_dual = years_ATSR2 + years_AATSR + years_SLSTR
months = ['%02d'%(mnth) for mnth in range(1,13)]
area_coor = extent[region]
# calculate Cell indices out of coordinates
lon1 = 180 + area_coor[0]
lon2 = 180 + area_coor[1]
lat1 = 90 + area_coor[2]
lat2 = 90 + area_coor[3]
Then we prepare and start the CDS download.
c = cdsapi.Client(url=URL, key=KEY)
product='satellite-aerosol-properties'
We now download the full time record of one dual view algorithm 1995 - 2022: The following download may take ~ 15 min (exact time needed depends on your network and hardware). Do not worry, as there may be many error messages for missing months in gaps.
for year in years:
if year in years_ATSR2:
Instrument = 'atsr2_on_ers2'
if algorithm == 'ADV/SDV':
algorithm = 'ADV'
version = version_ATSR2[algorithm]
elif year in years_AATSR:
Instrument = 'aatsr_on_envisat'
if algorithm == 'ADV/SDV':
algorithm = 'ADV'
version = version_AATSR[algorithm]
elif year in years_SLSTR:
Instrument = 'slstr_on_sentinel_3a'
if algorithm == 'ENS':
if year == '2019':
version = 'v1.2'
else:
version = version_SLSTR[algorithm]
elif algorithm == 'ADV/SDV' or algorithm == 'ADV':
algorithm = 'SDV'
if year == '2017':
version = 'v1.10'
else:
version = version_SLSTR[algorithm]
else:
version = version_SLSTR[algorithm]
for month in months:
if year in years_dual:
try:
request = {
'time_aggregation': 'monthly_average',
'variable': variable,
'sensor_on_satellite': Instrument,
'algorithm': algorithm.lower(),
'year': year,
'month': month,
'version': version}
file_name = DATADIR + algorithm + '_' + str(year) + '_' + str(month) + '.zip'
c.retrieve(product, request, file_name)
except:
print('no data' + year + month)
2023-03-20 11:28:53,909 INFO Welcome to the CDS
2023-03-20 11:28:53,910 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:28:54,141 INFO Request is queued
2023-03-20 11:28:55,211 INFO Request is failed
2023-03-20 11:28:55,211 ERROR Message: the request you have submitted is not valid
2023-03-20 11:28:55,212 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:55,212 ERROR Traceback (most recent call last):
2023-03-20 11:28:55,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,213 ERROR result = handle_locally()
2023-03-20 11:28:55,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,214 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:28:55,215 ERROR raise exception
2023-03-20 11:28:55,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,216 ERROR result = handle_locally()
2023-03-20 11:28:55,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,216 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:28:55,217 ERROR raise exception
2023-03-20 11:28:55,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,218 ERROR result = handle_locally()
2023-03-20 11:28:55,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,219 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:28:55,220 ERROR raise exception
2023-03-20 11:28:55,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,220 ERROR result = handle_locally()
2023-03-20 11:28:55,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,221 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:55,222 ERROR raise exception
2023-03-20 11:28:55,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,223 ERROR result = handle_locally()
2023-03-20 11:28:55,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,223 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:55,224 ERROR raise exception
2023-03-20 11:28:55,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,225 ERROR result = handle_locally()
2023-03-20 11:28:55,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,225 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:55,226 ERROR raise exception
2023-03-20 11:28:55,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,227 ERROR result = handle_locally()
2023-03-20 11:28:55,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:55,228 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:55,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:55,228 ERROR raise exception
2023-03-20 11:28:55,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:55,229 ERROR result = handle_locally()
2023-03-20 11:28:55,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:28:55,230 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:28:55,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:28:55,231 ERROR constraint_type_strict)
2023-03-20 11:28:55,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:28:55,231 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:28:55,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:28:55,232 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:28:55,233 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:55,296 INFO Welcome to the CDS
2023-03-20 11:28:55,297 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:28:55,411 INFO Request is queued
no data199501
2023-03-20 11:28:56,481 INFO Request is failed
2023-03-20 11:28:56,482 ERROR Message: the request you have submitted is not valid
2023-03-20 11:28:56,483 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:56,483 ERROR Traceback (most recent call last):
2023-03-20 11:28:56,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,484 ERROR result = handle_locally()
2023-03-20 11:28:56,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,485 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:28:56,485 ERROR raise exception
2023-03-20 11:28:56,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,486 ERROR result = handle_locally()
2023-03-20 11:28:56,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,487 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,487 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:28:56,488 ERROR raise exception
2023-03-20 11:28:56,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,488 ERROR result = handle_locally()
2023-03-20 11:28:56,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,489 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:28:56,490 ERROR raise exception
2023-03-20 11:28:56,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,491 ERROR result = handle_locally()
2023-03-20 11:28:56,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,491 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:56,492 ERROR raise exception
2023-03-20 11:28:56,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,493 ERROR result = handle_locally()
2023-03-20 11:28:56,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,493 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:56,494 ERROR raise exception
2023-03-20 11:28:56,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,495 ERROR result = handle_locally()
2023-03-20 11:28:56,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,496 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:56,496 ERROR raise exception
2023-03-20 11:28:56,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,497 ERROR result = handle_locally()
2023-03-20 11:28:56,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:56,498 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:56,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:56,499 ERROR raise exception
2023-03-20 11:28:56,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:56,499 ERROR result = handle_locally()
2023-03-20 11:28:56,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:28:56,500 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:28:56,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:28:56,501 ERROR constraint_type_strict)
2023-03-20 11:28:56,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:28:56,501 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:28:56,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:28:56,502 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:28:56,503 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:56,565 INFO Welcome to the CDS
2023-03-20 11:28:56,565 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:28:56,663 INFO Request is queued
no data199502
2023-03-20 11:28:57,729 INFO Request is failed
2023-03-20 11:28:57,730 ERROR Message: the request you have submitted is not valid
2023-03-20 11:28:57,731 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:57,731 ERROR Traceback (most recent call last):
2023-03-20 11:28:57,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,732 ERROR result = handle_locally()
2023-03-20 11:28:57,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,733 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:28:57,733 ERROR raise exception
2023-03-20 11:28:57,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,734 ERROR result = handle_locally()
2023-03-20 11:28:57,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,735 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:28:57,736 ERROR raise exception
2023-03-20 11:28:57,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,736 ERROR result = handle_locally()
2023-03-20 11:28:57,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,737 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:28:57,738 ERROR raise exception
2023-03-20 11:28:57,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,739 ERROR result = handle_locally()
2023-03-20 11:28:57,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,739 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:57,740 ERROR raise exception
2023-03-20 11:28:57,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,741 ERROR result = handle_locally()
2023-03-20 11:28:57,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,742 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:57,742 ERROR raise exception
2023-03-20 11:28:57,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,743 ERROR result = handle_locally()
2023-03-20 11:28:57,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,744 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:57,745 ERROR raise exception
2023-03-20 11:28:57,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,745 ERROR result = handle_locally()
2023-03-20 11:28:57,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:57,746 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:57,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:57,747 ERROR raise exception
2023-03-20 11:28:57,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:57,747 ERROR result = handle_locally()
2023-03-20 11:28:57,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:28:57,748 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:28:57,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:28:57,749 ERROR constraint_type_strict)
2023-03-20 11:28:57,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:28:57,750 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:28:57,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:28:57,750 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:28:57,751 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:57,817 INFO Welcome to the CDS
2023-03-20 11:28:57,817 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:28:57,910 INFO Request is queued
no data199503
2023-03-20 11:28:58,993 INFO Request is failed
2023-03-20 11:28:58,994 ERROR Message: the request you have submitted is not valid
2023-03-20 11:28:58,995 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:58,995 ERROR Traceback (most recent call last):
2023-03-20 11:28:58,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:58,996 ERROR result = handle_locally()
2023-03-20 11:28:58,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:58,997 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:58,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:28:58,997 ERROR raise exception
2023-03-20 11:28:58,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:58,998 ERROR result = handle_locally()
2023-03-20 11:28:58,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:58,999 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:58,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:28:58,999 ERROR raise exception
2023-03-20 11:28:59,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,000 ERROR result = handle_locally()
2023-03-20 11:28:59,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:59,001 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:59,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:28:59,002 ERROR raise exception
2023-03-20 11:28:59,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,002 ERROR result = handle_locally()
2023-03-20 11:28:59,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:59,003 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:59,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:59,004 ERROR raise exception
2023-03-20 11:28:59,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,005 ERROR result = handle_locally()
2023-03-20 11:28:59,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:59,005 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:59,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:59,006 ERROR raise exception
2023-03-20 11:28:59,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,007 ERROR result = handle_locally()
2023-03-20 11:28:59,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:59,007 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:59,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:59,008 ERROR raise exception
2023-03-20 11:28:59,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,009 ERROR result = handle_locally()
2023-03-20 11:28:59,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:28:59,010 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:28:59,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:28:59,010 ERROR raise exception
2023-03-20 11:28:59,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:28:59,011 ERROR result = handle_locally()
2023-03-20 11:28:59,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:28:59,012 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:28:59,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:28:59,013 ERROR constraint_type_strict)
2023-03-20 11:28:59,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:28:59,013 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:28:59,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:28:59,014 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:28:59,014 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:28:59,106 INFO Welcome to the CDS
2023-03-20 11:28:59,106 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199504
2023-03-20 11:28:59,309 INFO Request is queued
2023-03-20 11:29:00,393 INFO Request is failed
2023-03-20 11:29:00,394 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:00,394 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:00,395 ERROR Traceback (most recent call last):
2023-03-20 11:29:00,395 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,396 ERROR result = handle_locally()
2023-03-20 11:29:00,396 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,396 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:00,397 ERROR raise exception
2023-03-20 11:29:00,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,398 ERROR result = handle_locally()
2023-03-20 11:29:00,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,399 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:00,399 ERROR raise exception
2023-03-20 11:29:00,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,400 ERROR result = handle_locally()
2023-03-20 11:29:00,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,401 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:00,402 ERROR raise exception
2023-03-20 11:29:00,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,402 ERROR result = handle_locally()
2023-03-20 11:29:00,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,403 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:00,404 ERROR raise exception
2023-03-20 11:29:00,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,404 ERROR result = handle_locally()
2023-03-20 11:29:00,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,405 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:00,406 ERROR raise exception
2023-03-20 11:29:00,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,407 ERROR result = handle_locally()
2023-03-20 11:29:00,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,407 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:00,408 ERROR raise exception
2023-03-20 11:29:00,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,409 ERROR result = handle_locally()
2023-03-20 11:29:00,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:00,410 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:00,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:00,410 ERROR raise exception
2023-03-20 11:29:00,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:00,411 ERROR result = handle_locally()
2023-03-20 11:29:00,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:00,412 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:00,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:00,412 ERROR constraint_type_strict)
2023-03-20 11:29:00,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:00,413 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:00,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:00,414 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:00,414 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:00,484 INFO Welcome to the CDS
2023-03-20 11:29:00,485 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:00,587 INFO Request is queued
no data199505
2023-03-20 11:29:01,665 INFO Request is failed
2023-03-20 11:29:01,666 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:01,666 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:01,667 ERROR Traceback (most recent call last):
2023-03-20 11:29:01,667 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,668 ERROR result = handle_locally()
2023-03-20 11:29:01,668 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,668 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,669 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:01,669 ERROR raise exception
2023-03-20 11:29:01,669 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,670 ERROR result = handle_locally()
2023-03-20 11:29:01,670 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,671 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,671 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:01,671 ERROR raise exception
2023-03-20 11:29:01,672 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,672 ERROR result = handle_locally()
2023-03-20 11:29:01,672 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,673 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,673 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:01,674 ERROR raise exception
2023-03-20 11:29:01,674 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,674 ERROR result = handle_locally()
2023-03-20 11:29:01,675 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,675 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,675 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:01,676 ERROR raise exception
2023-03-20 11:29:01,676 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,676 ERROR result = handle_locally()
2023-03-20 11:29:01,677 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,677 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,678 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:01,678 ERROR raise exception
2023-03-20 11:29:01,678 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,679 ERROR result = handle_locally()
2023-03-20 11:29:01,679 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,679 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,680 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:01,680 ERROR raise exception
2023-03-20 11:29:01,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,681 ERROR result = handle_locally()
2023-03-20 11:29:01,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:01,682 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:01,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:01,682 ERROR raise exception
2023-03-20 11:29:01,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:01,683 ERROR result = handle_locally()
2023-03-20 11:29:01,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:01,684 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:01,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:01,685 ERROR constraint_type_strict)
2023-03-20 11:29:01,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:01,685 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:01,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:01,686 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:01,686 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:01,758 INFO Welcome to the CDS
2023-03-20 11:29:01,759 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:01,869 INFO Request is queued
no data199506
2023-03-20 11:29:02,942 INFO Request is failed
2023-03-20 11:29:02,942 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:02,943 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:02,943 ERROR Traceback (most recent call last):
2023-03-20 11:29:02,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,944 ERROR result = handle_locally()
2023-03-20 11:29:02,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,945 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:02,946 ERROR raise exception
2023-03-20 11:29:02,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,946 ERROR result = handle_locally()
2023-03-20 11:29:02,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,947 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:02,948 ERROR raise exception
2023-03-20 11:29:02,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,948 ERROR result = handle_locally()
2023-03-20 11:29:02,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,949 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:02,950 ERROR raise exception
2023-03-20 11:29:02,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,951 ERROR result = handle_locally()
2023-03-20 11:29:02,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,951 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:02,952 ERROR raise exception
2023-03-20 11:29:02,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,953 ERROR result = handle_locally()
2023-03-20 11:29:02,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,954 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:02,954 ERROR raise exception
2023-03-20 11:29:02,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,955 ERROR result = handle_locally()
2023-03-20 11:29:02,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,956 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:02,956 ERROR raise exception
2023-03-20 11:29:02,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,957 ERROR result = handle_locally()
2023-03-20 11:29:02,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:02,958 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:02,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:02,959 ERROR raise exception
2023-03-20 11:29:02,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:02,959 ERROR result = handle_locally()
2023-03-20 11:29:02,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:02,960 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:02,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:02,961 ERROR constraint_type_strict)
2023-03-20 11:29:02,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:02,962 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:02,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:02,962 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:02,963 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:03,049 INFO Welcome to the CDS
2023-03-20 11:29:03,050 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199507
2023-03-20 11:29:03,186 INFO Request is queued
2023-03-20 11:29:04,254 INFO Request is failed
2023-03-20 11:29:04,255 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:04,255 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:04,256 ERROR Traceback (most recent call last):
2023-03-20 11:29:04,256 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,256 ERROR result = handle_locally()
2023-03-20 11:29:04,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,257 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:04,258 ERROR raise exception
2023-03-20 11:29:04,258 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,259 ERROR result = handle_locally()
2023-03-20 11:29:04,259 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,259 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:04,260 ERROR raise exception
2023-03-20 11:29:04,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,261 ERROR result = handle_locally()
2023-03-20 11:29:04,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,262 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:04,262 ERROR raise exception
2023-03-20 11:29:04,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,263 ERROR result = handle_locally()
2023-03-20 11:29:04,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,264 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:04,264 ERROR raise exception
2023-03-20 11:29:04,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,265 ERROR result = handle_locally()
2023-03-20 11:29:04,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,266 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:04,267 ERROR raise exception
2023-03-20 11:29:04,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,267 ERROR result = handle_locally()
2023-03-20 11:29:04,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,268 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:04,269 ERROR raise exception
2023-03-20 11:29:04,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,270 ERROR result = handle_locally()
2023-03-20 11:29:04,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:04,270 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:04,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:04,271 ERROR raise exception
2023-03-20 11:29:04,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:04,272 ERROR result = handle_locally()
2023-03-20 11:29:04,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:04,272 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:04,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:04,273 ERROR constraint_type_strict)
2023-03-20 11:29:04,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:04,274 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:04,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:04,275 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:04,275 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:04,352 INFO Welcome to the CDS
2023-03-20 11:29:04,352 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199508
2023-03-20 11:29:04,523 INFO Request is queued
2023-03-20 11:29:05,589 INFO Request is failed
2023-03-20 11:29:05,590 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:05,590 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:05,591 ERROR Traceback (most recent call last):
2023-03-20 11:29:05,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,592 ERROR result = handle_locally()
2023-03-20 11:29:05,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,592 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:05,593 ERROR raise exception
2023-03-20 11:29:05,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,594 ERROR result = handle_locally()
2023-03-20 11:29:05,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,595 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:05,595 ERROR raise exception
2023-03-20 11:29:05,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,596 ERROR result = handle_locally()
2023-03-20 11:29:05,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,597 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:05,597 ERROR raise exception
2023-03-20 11:29:05,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,598 ERROR result = handle_locally()
2023-03-20 11:29:05,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,599 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:05,600 ERROR raise exception
2023-03-20 11:29:05,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,600 ERROR result = handle_locally()
2023-03-20 11:29:05,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,601 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:05,602 ERROR raise exception
2023-03-20 11:29:05,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,602 ERROR result = handle_locally()
2023-03-20 11:29:05,603 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,603 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:05,604 ERROR raise exception
2023-03-20 11:29:05,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,605 ERROR result = handle_locally()
2023-03-20 11:29:05,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:05,605 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:05,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:05,606 ERROR raise exception
2023-03-20 11:29:05,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:05,607 ERROR result = handle_locally()
2023-03-20 11:29:05,607 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:05,608 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:05,608 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:05,608 ERROR constraint_type_strict)
2023-03-20 11:29:05,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:05,609 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:05,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:05,610 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:05,610 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:05,675 INFO Welcome to the CDS
2023-03-20 11:29:05,676 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:05,801 INFO Request is queued
no data199509
2023-03-20 11:29:06,870 INFO Request is failed
2023-03-20 11:29:06,871 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:06,871 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:06,872 ERROR Traceback (most recent call last):
2023-03-20 11:29:06,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,872 ERROR result = handle_locally()
2023-03-20 11:29:06,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,873 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:06,874 ERROR raise exception
2023-03-20 11:29:06,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,875 ERROR result = handle_locally()
2023-03-20 11:29:06,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,875 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:06,876 ERROR raise exception
2023-03-20 11:29:06,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,877 ERROR result = handle_locally()
2023-03-20 11:29:06,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,878 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,878 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:06,878 ERROR raise exception
2023-03-20 11:29:06,879 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,879 ERROR result = handle_locally()
2023-03-20 11:29:06,879 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,880 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,880 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:06,881 ERROR raise exception
2023-03-20 11:29:06,881 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,881 ERROR result = handle_locally()
2023-03-20 11:29:06,882 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,882 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,882 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:06,883 ERROR raise exception
2023-03-20 11:29:06,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,883 ERROR result = handle_locally()
2023-03-20 11:29:06,884 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,884 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,885 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:06,885 ERROR raise exception
2023-03-20 11:29:06,885 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,886 ERROR result = handle_locally()
2023-03-20 11:29:06,886 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:06,886 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:06,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:06,887 ERROR raise exception
2023-03-20 11:29:06,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:06,888 ERROR result = handle_locally()
2023-03-20 11:29:06,888 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:06,889 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:06,889 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:06,889 ERROR constraint_type_strict)
2023-03-20 11:29:06,890 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:06,890 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:06,890 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:06,891 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:06,891 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:06,960 INFO Welcome to the CDS
2023-03-20 11:29:06,961 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:07,076 INFO Request is queued
no data199510
2023-03-20 11:29:08,149 INFO Request is failed
2023-03-20 11:29:08,150 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:08,151 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:08,151 ERROR Traceback (most recent call last):
2023-03-20 11:29:08,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,152 ERROR result = handle_locally()
2023-03-20 11:29:08,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,153 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:08,153 ERROR raise exception
2023-03-20 11:29:08,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,154 ERROR result = handle_locally()
2023-03-20 11:29:08,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,155 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:08,156 ERROR raise exception
2023-03-20 11:29:08,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,156 ERROR result = handle_locally()
2023-03-20 11:29:08,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,157 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:08,158 ERROR raise exception
2023-03-20 11:29:08,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,158 ERROR result = handle_locally()
2023-03-20 11:29:08,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,159 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:08,160 ERROR raise exception
2023-03-20 11:29:08,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,161 ERROR result = handle_locally()
2023-03-20 11:29:08,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,161 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:08,162 ERROR raise exception
2023-03-20 11:29:08,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,163 ERROR result = handle_locally()
2023-03-20 11:29:08,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,164 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:08,164 ERROR raise exception
2023-03-20 11:29:08,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,165 ERROR result = handle_locally()
2023-03-20 11:29:08,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:08,166 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:08,166 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:08,167 ERROR raise exception
2023-03-20 11:29:08,167 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:08,167 ERROR result = handle_locally()
2023-03-20 11:29:08,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:08,168 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:08,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:08,169 ERROR constraint_type_strict)
2023-03-20 11:29:08,169 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:08,169 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:08,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:08,170 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:08,171 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:08,246 INFO Welcome to the CDS
2023-03-20 11:29:08,246 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:08,326 INFO Request is queued
no data199511
2023-03-20 11:29:09,395 INFO Request is failed
2023-03-20 11:29:09,396 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:09,396 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:09,396 ERROR Traceback (most recent call last):
2023-03-20 11:29:09,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,397 ERROR result = handle_locally()
2023-03-20 11:29:09,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,398 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:09,399 ERROR raise exception
2023-03-20 11:29:09,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,399 ERROR result = handle_locally()
2023-03-20 11:29:09,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,400 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:09,401 ERROR raise exception
2023-03-20 11:29:09,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,402 ERROR result = handle_locally()
2023-03-20 11:29:09,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,402 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:09,403 ERROR raise exception
2023-03-20 11:29:09,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,404 ERROR result = handle_locally()
2023-03-20 11:29:09,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,404 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:09,405 ERROR raise exception
2023-03-20 11:29:09,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,406 ERROR result = handle_locally()
2023-03-20 11:29:09,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,407 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:09,407 ERROR raise exception
2023-03-20 11:29:09,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,408 ERROR result = handle_locally()
2023-03-20 11:29:09,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,409 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:09,410 ERROR raise exception
2023-03-20 11:29:09,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,410 ERROR result = handle_locally()
2023-03-20 11:29:09,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:09,411 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:09,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:09,412 ERROR raise exception
2023-03-20 11:29:09,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:09,412 ERROR result = handle_locally()
2023-03-20 11:29:09,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:09,413 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:09,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:09,414 ERROR constraint_type_strict)
2023-03-20 11:29:09,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:09,415 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:09,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:09,415 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:09,416 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:09,478 INFO Welcome to the CDS
2023-03-20 11:29:09,479 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:09,588 INFO Request is queued
no data199512
2023-03-20 11:29:10,679 INFO Request is failed
2023-03-20 11:29:10,680 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:10,680 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:10,681 ERROR Traceback (most recent call last):
2023-03-20 11:29:10,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,681 ERROR result = handle_locally()
2023-03-20 11:29:10,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,682 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:10,683 ERROR raise exception
2023-03-20 11:29:10,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,684 ERROR result = handle_locally()
2023-03-20 11:29:10,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,684 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:10,685 ERROR raise exception
2023-03-20 11:29:10,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,686 ERROR result = handle_locally()
2023-03-20 11:29:10,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,686 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:10,687 ERROR raise exception
2023-03-20 11:29:10,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,688 ERROR result = handle_locally()
2023-03-20 11:29:10,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,689 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:10,689 ERROR raise exception
2023-03-20 11:29:10,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,690 ERROR result = handle_locally()
2023-03-20 11:29:10,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,691 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:10,692 ERROR raise exception
2023-03-20 11:29:10,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,692 ERROR result = handle_locally()
2023-03-20 11:29:10,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,693 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:10,694 ERROR raise exception
2023-03-20 11:29:10,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,695 ERROR result = handle_locally()
2023-03-20 11:29:10,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:10,695 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:10,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:10,696 ERROR raise exception
2023-03-20 11:29:10,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:10,697 ERROR result = handle_locally()
2023-03-20 11:29:10,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:10,697 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:10,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:10,698 ERROR constraint_type_strict)
2023-03-20 11:29:10,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:10,699 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:10,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:10,700 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:10,700 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:10,793 INFO Welcome to the CDS
2023-03-20 11:29:10,794 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199601
2023-03-20 11:29:10,926 INFO Request is queued
2023-03-20 11:29:12,016 INFO Request is failed
2023-03-20 11:29:12,016 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:12,017 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:12,017 ERROR Traceback (most recent call last):
2023-03-20 11:29:12,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,018 ERROR result = handle_locally()
2023-03-20 11:29:12,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,019 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:12,019 ERROR raise exception
2023-03-20 11:29:12,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,020 ERROR result = handle_locally()
2023-03-20 11:29:12,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,021 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:12,022 ERROR raise exception
2023-03-20 11:29:12,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,022 ERROR result = handle_locally()
2023-03-20 11:29:12,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,023 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:12,024 ERROR raise exception
2023-03-20 11:29:12,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,025 ERROR result = handle_locally()
2023-03-20 11:29:12,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,025 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:12,026 ERROR raise exception
2023-03-20 11:29:12,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,027 ERROR result = handle_locally()
2023-03-20 11:29:12,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,028 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:12,028 ERROR raise exception
2023-03-20 11:29:12,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,029 ERROR result = handle_locally()
2023-03-20 11:29:12,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,030 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,030 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:12,030 ERROR raise exception
2023-03-20 11:29:12,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,031 ERROR result = handle_locally()
2023-03-20 11:29:12,032 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:12,032 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:12,032 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:12,033 ERROR raise exception
2023-03-20 11:29:12,033 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:12,033 ERROR result = handle_locally()
2023-03-20 11:29:12,034 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:12,034 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:12,034 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:12,035 ERROR constraint_type_strict)
2023-03-20 11:29:12,035 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:12,036 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:12,036 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:12,036 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:12,037 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:12,129 INFO Welcome to the CDS
2023-03-20 11:29:12,130 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199602
2023-03-20 11:29:12,292 INFO Request is queued
2023-03-20 11:29:13,368 INFO Request is failed
2023-03-20 11:29:13,369 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:13,369 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:13,370 ERROR Traceback (most recent call last):
2023-03-20 11:29:13,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,371 ERROR result = handle_locally()
2023-03-20 11:29:13,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,371 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:13,372 ERROR raise exception
2023-03-20 11:29:13,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,373 ERROR result = handle_locally()
2023-03-20 11:29:13,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,374 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:13,374 ERROR raise exception
2023-03-20 11:29:13,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,375 ERROR result = handle_locally()
2023-03-20 11:29:13,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,376 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:13,377 ERROR raise exception
2023-03-20 11:29:13,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,377 ERROR result = handle_locally()
2023-03-20 11:29:13,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,378 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:13,379 ERROR raise exception
2023-03-20 11:29:13,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,379 ERROR result = handle_locally()
2023-03-20 11:29:13,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:13,381 ERROR raise exception
2023-03-20 11:29:13,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,382 ERROR result = handle_locally()
2023-03-20 11:29:13,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:13,383 ERROR raise exception
2023-03-20 11:29:13,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,384 ERROR result = handle_locally()
2023-03-20 11:29:13,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:13,385 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:13,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:13,385 ERROR raise exception
2023-03-20 11:29:13,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:13,386 ERROR result = handle_locally()
2023-03-20 11:29:13,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:13,387 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:13,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:13,387 ERROR constraint_type_strict)
2023-03-20 11:29:13,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:13,388 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:13,389 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:13,389 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:13,389 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:13,487 INFO Welcome to the CDS
2023-03-20 11:29:13,488 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199603
2023-03-20 11:29:13,619 INFO Request is queued
2023-03-20 11:29:14,686 INFO Request is failed
2023-03-20 11:29:14,687 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:14,688 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:14,688 ERROR Traceback (most recent call last):
2023-03-20 11:29:14,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,689 ERROR result = handle_locally()
2023-03-20 11:29:14,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,690 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:14,690 ERROR raise exception
2023-03-20 11:29:14,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,691 ERROR result = handle_locally()
2023-03-20 11:29:14,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,692 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:14,693 ERROR raise exception
2023-03-20 11:29:14,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,693 ERROR result = handle_locally()
2023-03-20 11:29:14,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,694 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:14,695 ERROR raise exception
2023-03-20 11:29:14,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,695 ERROR result = handle_locally()
2023-03-20 11:29:14,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,696 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:14,697 ERROR raise exception
2023-03-20 11:29:14,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,698 ERROR result = handle_locally()
2023-03-20 11:29:14,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,698 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:14,699 ERROR raise exception
2023-03-20 11:29:14,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,700 ERROR result = handle_locally()
2023-03-20 11:29:14,700 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,701 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:14,701 ERROR raise exception
2023-03-20 11:29:14,702 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,702 ERROR result = handle_locally()
2023-03-20 11:29:14,702 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:14,703 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:14,703 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:14,703 ERROR raise exception
2023-03-20 11:29:14,704 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:14,704 ERROR result = handle_locally()
2023-03-20 11:29:14,704 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:14,705 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:14,705 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:14,706 ERROR constraint_type_strict)
2023-03-20 11:29:14,706 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:14,706 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:14,707 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:14,707 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:14,707 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:14,777 INFO Welcome to the CDS
2023-03-20 11:29:14,777 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:14,868 INFO Request is queued
no data199604
2023-03-20 11:29:15,958 INFO Request is failed
2023-03-20 11:29:15,958 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:15,959 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:15,959 ERROR Traceback (most recent call last):
2023-03-20 11:29:15,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,960 ERROR result = handle_locally()
2023-03-20 11:29:15,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,961 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:15,962 ERROR raise exception
2023-03-20 11:29:15,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,962 ERROR result = handle_locally()
2023-03-20 11:29:15,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,963 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:15,964 ERROR raise exception
2023-03-20 11:29:15,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,964 ERROR result = handle_locally()
2023-03-20 11:29:15,965 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,965 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,965 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:15,966 ERROR raise exception
2023-03-20 11:29:15,966 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,966 ERROR result = handle_locally()
2023-03-20 11:29:15,967 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,967 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,967 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:15,968 ERROR raise exception
2023-03-20 11:29:15,968 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,968 ERROR result = handle_locally()
2023-03-20 11:29:15,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,969 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:15,970 ERROR raise exception
2023-03-20 11:29:15,970 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,970 ERROR result = handle_locally()
2023-03-20 11:29:15,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,971 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:15,972 ERROR raise exception
2023-03-20 11:29:15,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,973 ERROR result = handle_locally()
2023-03-20 11:29:15,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:15,973 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:15,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:15,974 ERROR raise exception
2023-03-20 11:29:15,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:15,975 ERROR result = handle_locally()
2023-03-20 11:29:15,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:15,975 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:15,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:15,976 ERROR constraint_type_strict)
2023-03-20 11:29:15,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:15,977 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:15,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:15,977 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:15,978 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:16,058 INFO Welcome to the CDS
2023-03-20 11:29:16,059 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199605
2023-03-20 11:29:16,196 INFO Request is queued
2023-03-20 11:29:17,264 INFO Request is failed
2023-03-20 11:29:17,265 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:17,265 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:17,266 ERROR Traceback (most recent call last):
2023-03-20 11:29:17,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,266 ERROR result = handle_locally()
2023-03-20 11:29:17,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,267 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:17,268 ERROR raise exception
2023-03-20 11:29:17,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,268 ERROR result = handle_locally()
2023-03-20 11:29:17,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,269 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:17,270 ERROR raise exception
2023-03-20 11:29:17,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,270 ERROR result = handle_locally()
2023-03-20 11:29:17,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,271 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:17,272 ERROR raise exception
2023-03-20 11:29:17,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,273 ERROR result = handle_locally()
2023-03-20 11:29:17,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,273 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:17,274 ERROR raise exception
2023-03-20 11:29:17,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,275 ERROR result = handle_locally()
2023-03-20 11:29:17,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,275 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:17,276 ERROR raise exception
2023-03-20 11:29:17,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,277 ERROR result = handle_locally()
2023-03-20 11:29:17,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,277 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:17,278 ERROR raise exception
2023-03-20 11:29:17,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,279 ERROR result = handle_locally()
2023-03-20 11:29:17,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:17,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:17,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:17,280 ERROR raise exception
2023-03-20 11:29:17,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:17,281 ERROR result = handle_locally()
2023-03-20 11:29:17,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:17,281 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:17,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:17,282 ERROR constraint_type_strict)
2023-03-20 11:29:17,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:17,283 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:17,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:17,283 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:17,284 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:17,356 INFO Welcome to the CDS
2023-03-20 11:29:17,356 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:17,478 INFO Request is queued
no data199606
2023-03-20 11:29:18,548 INFO Request is failed
2023-03-20 11:29:18,548 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:18,549 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:18,549 ERROR Traceback (most recent call last):
2023-03-20 11:29:18,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,550 ERROR result = handle_locally()
2023-03-20 11:29:18,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,550 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,551 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:18,551 ERROR raise exception
2023-03-20 11:29:18,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,552 ERROR result = handle_locally()
2023-03-20 11:29:18,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,553 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,553 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:18,553 ERROR raise exception
2023-03-20 11:29:18,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,554 ERROR result = handle_locally()
2023-03-20 11:29:18,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,555 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:18,555 ERROR raise exception
2023-03-20 11:29:18,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,556 ERROR result = handle_locally()
2023-03-20 11:29:18,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,557 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:18,557 ERROR raise exception
2023-03-20 11:29:18,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,558 ERROR result = handle_locally()
2023-03-20 11:29:18,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,559 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:18,559 ERROR raise exception
2023-03-20 11:29:18,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,560 ERROR result = handle_locally()
2023-03-20 11:29:18,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,561 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,561 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:18,561 ERROR raise exception
2023-03-20 11:29:18,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,562 ERROR result = handle_locally()
2023-03-20 11:29:18,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:18,563 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:18,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:18,563 ERROR raise exception
2023-03-20 11:29:18,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:18,564 ERROR result = handle_locally()
2023-03-20 11:29:18,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:18,565 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:18,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:18,565 ERROR constraint_type_strict)
2023-03-20 11:29:18,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:18,566 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:18,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:18,567 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:18,567 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:18,632 INFO Welcome to the CDS
2023-03-20 11:29:18,632 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:18,768 INFO Request is queued
no data199607
2023-03-20 11:29:19,834 INFO Request is failed
2023-03-20 11:29:19,835 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:19,835 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:19,835 ERROR Traceback (most recent call last):
2023-03-20 11:29:19,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,836 ERROR result = handle_locally()
2023-03-20 11:29:19,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,837 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:19,837 ERROR raise exception
2023-03-20 11:29:19,838 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,838 ERROR result = handle_locally()
2023-03-20 11:29:19,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,839 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:19,840 ERROR raise exception
2023-03-20 11:29:19,840 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,840 ERROR result = handle_locally()
2023-03-20 11:29:19,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,841 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:19,842 ERROR raise exception
2023-03-20 11:29:19,842 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,842 ERROR result = handle_locally()
2023-03-20 11:29:19,843 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,843 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,843 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:19,844 ERROR raise exception
2023-03-20 11:29:19,844 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,844 ERROR result = handle_locally()
2023-03-20 11:29:19,845 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,845 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,845 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:19,846 ERROR raise exception
2023-03-20 11:29:19,846 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,846 ERROR result = handle_locally()
2023-03-20 11:29:19,847 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,847 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,847 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:19,848 ERROR raise exception
2023-03-20 11:29:19,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,848 ERROR result = handle_locally()
2023-03-20 11:29:19,849 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:19,849 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:19,849 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:19,850 ERROR raise exception
2023-03-20 11:29:19,850 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:19,850 ERROR result = handle_locally()
2023-03-20 11:29:19,851 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:19,851 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:19,851 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:19,852 ERROR constraint_type_strict)
2023-03-20 11:29:19,852 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:19,852 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:19,853 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:19,853 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:19,853 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:19,917 INFO Welcome to the CDS
2023-03-20 11:29:19,917 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199608
2023-03-20 11:29:20,126 INFO Request is queued
2023-03-20 11:29:21,194 INFO Request is failed
2023-03-20 11:29:21,195 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:21,195 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:21,195 ERROR Traceback (most recent call last):
2023-03-20 11:29:21,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,196 ERROR result = handle_locally()
2023-03-20 11:29:21,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,197 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:21,198 ERROR raise exception
2023-03-20 11:29:21,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,198 ERROR result = handle_locally()
2023-03-20 11:29:21,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,199 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:21,200 ERROR raise exception
2023-03-20 11:29:21,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,200 ERROR result = handle_locally()
2023-03-20 11:29:21,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,201 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:21,202 ERROR raise exception
2023-03-20 11:29:21,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,202 ERROR result = handle_locally()
2023-03-20 11:29:21,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,203 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:21,204 ERROR raise exception
2023-03-20 11:29:21,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,204 ERROR result = handle_locally()
2023-03-20 11:29:21,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,205 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:21,206 ERROR raise exception
2023-03-20 11:29:21,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,206 ERROR result = handle_locally()
2023-03-20 11:29:21,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,207 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:21,208 ERROR raise exception
2023-03-20 11:29:21,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,208 ERROR result = handle_locally()
2023-03-20 11:29:21,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:21,209 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:21,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:21,210 ERROR raise exception
2023-03-20 11:29:21,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:21,211 ERROR result = handle_locally()
2023-03-20 11:29:21,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:21,211 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:21,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:21,212 ERROR constraint_type_strict)
2023-03-20 11:29:21,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:21,213 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:21,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:21,213 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:21,214 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:21,281 INFO Welcome to the CDS
2023-03-20 11:29:21,281 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:21,394 INFO Request is queued
no data199609
2023-03-20 11:29:22,468 INFO Request is failed
2023-03-20 11:29:22,469 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:22,469 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:22,470 ERROR Traceback (most recent call last):
2023-03-20 11:29:22,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,470 ERROR result = handle_locally()
2023-03-20 11:29:22,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,471 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:22,472 ERROR raise exception
2023-03-20 11:29:22,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,472 ERROR result = handle_locally()
2023-03-20 11:29:22,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,473 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:22,474 ERROR raise exception
2023-03-20 11:29:22,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,474 ERROR result = handle_locally()
2023-03-20 11:29:22,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,475 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:22,476 ERROR raise exception
2023-03-20 11:29:22,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,476 ERROR result = handle_locally()
2023-03-20 11:29:22,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,477 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:22,478 ERROR raise exception
2023-03-20 11:29:22,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,478 ERROR result = handle_locally()
2023-03-20 11:29:22,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,479 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:22,480 ERROR raise exception
2023-03-20 11:29:22,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,480 ERROR result = handle_locally()
2023-03-20 11:29:22,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,481 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:22,482 ERROR raise exception
2023-03-20 11:29:22,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,482 ERROR result = handle_locally()
2023-03-20 11:29:22,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:22,483 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:22,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:22,484 ERROR raise exception
2023-03-20 11:29:22,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:22,484 ERROR result = handle_locally()
2023-03-20 11:29:22,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:22,485 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:22,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:22,486 ERROR constraint_type_strict)
2023-03-20 11:29:22,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:22,487 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:22,487 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:22,487 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:22,488 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:22,563 INFO Welcome to the CDS
2023-03-20 11:29:22,563 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199610
2023-03-20 11:29:22,692 INFO Request is queued
2023-03-20 11:29:23,771 INFO Request is failed
2023-03-20 11:29:23,772 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:23,772 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:23,773 ERROR Traceback (most recent call last):
2023-03-20 11:29:23,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,773 ERROR result = handle_locally()
2023-03-20 11:29:23,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,774 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:23,775 ERROR raise exception
2023-03-20 11:29:23,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,776 ERROR result = handle_locally()
2023-03-20 11:29:23,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,777 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:23,777 ERROR raise exception
2023-03-20 11:29:23,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,778 ERROR result = handle_locally()
2023-03-20 11:29:23,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:23,780 ERROR raise exception
2023-03-20 11:29:23,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,780 ERROR result = handle_locally()
2023-03-20 11:29:23,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,781 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:23,782 ERROR raise exception
2023-03-20 11:29:23,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,783 ERROR result = handle_locally()
2023-03-20 11:29:23,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,783 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:23,784 ERROR raise exception
2023-03-20 11:29:23,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,785 ERROR result = handle_locally()
2023-03-20 11:29:23,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,786 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:23,787 ERROR raise exception
2023-03-20 11:29:23,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,787 ERROR result = handle_locally()
2023-03-20 11:29:23,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:23,788 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:23,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:23,789 ERROR raise exception
2023-03-20 11:29:23,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:23,790 ERROR result = handle_locally()
2023-03-20 11:29:23,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:23,790 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:23,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:23,791 ERROR constraint_type_strict)
2023-03-20 11:29:23,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:23,792 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:23,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:23,792 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:23,793 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:23,871 INFO Welcome to the CDS
2023-03-20 11:29:23,872 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199611
2023-03-20 11:29:24,034 INFO Request is queued
2023-03-20 11:29:25,128 INFO Request is failed
2023-03-20 11:29:25,129 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:25,129 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:25,130 ERROR Traceback (most recent call last):
2023-03-20 11:29:25,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,131 ERROR result = handle_locally()
2023-03-20 11:29:25,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,131 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,132 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:25,132 ERROR raise exception
2023-03-20 11:29:25,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,133 ERROR result = handle_locally()
2023-03-20 11:29:25,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,134 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,134 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:25,134 ERROR raise exception
2023-03-20 11:29:25,135 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,135 ERROR result = handle_locally()
2023-03-20 11:29:25,135 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,136 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,136 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:25,137 ERROR raise exception
2023-03-20 11:29:25,137 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,137 ERROR result = handle_locally()
2023-03-20 11:29:25,138 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,140 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,141 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:25,141 ERROR raise exception
2023-03-20 11:29:25,141 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,142 ERROR result = handle_locally()
2023-03-20 11:29:25,142 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,143 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,143 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:25,143 ERROR raise exception
2023-03-20 11:29:25,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,144 ERROR result = handle_locally()
2023-03-20 11:29:25,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,145 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:25,146 ERROR raise exception
2023-03-20 11:29:25,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,146 ERROR result = handle_locally()
2023-03-20 11:29:25,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:25,147 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:25,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:25,148 ERROR raise exception
2023-03-20 11:29:25,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:25,149 ERROR result = handle_locally()
2023-03-20 11:29:25,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:25,149 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:25,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:25,150 ERROR constraint_type_strict)
2023-03-20 11:29:25,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:25,151 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:25,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:25,152 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:25,152 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:25,241 INFO Welcome to the CDS
2023-03-20 11:29:25,243 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199612
2023-03-20 11:29:25,381 INFO Request is queued
2023-03-20 11:29:26,458 INFO Request is failed
2023-03-20 11:29:26,459 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:26,460 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:26,460 ERROR Traceback (most recent call last):
2023-03-20 11:29:26,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,461 ERROR result = handle_locally()
2023-03-20 11:29:26,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,462 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:26,463 ERROR raise exception
2023-03-20 11:29:26,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,464 ERROR result = handle_locally()
2023-03-20 11:29:26,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,464 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:26,465 ERROR raise exception
2023-03-20 11:29:26,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,466 ERROR result = handle_locally()
2023-03-20 11:29:26,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,467 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:26,468 ERROR raise exception
2023-03-20 11:29:26,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,468 ERROR result = handle_locally()
2023-03-20 11:29:26,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,469 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:26,470 ERROR raise exception
2023-03-20 11:29:26,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,471 ERROR result = handle_locally()
2023-03-20 11:29:26,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,471 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:26,472 ERROR raise exception
2023-03-20 11:29:26,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,473 ERROR result = handle_locally()
2023-03-20 11:29:26,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,474 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:26,475 ERROR raise exception
2023-03-20 11:29:26,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,479 ERROR result = handle_locally()
2023-03-20 11:29:26,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:26,480 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:26,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:26,480 ERROR raise exception
2023-03-20 11:29:26,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:26,481 ERROR result = handle_locally()
2023-03-20 11:29:26,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:26,482 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:26,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:26,483 ERROR constraint_type_strict)
2023-03-20 11:29:26,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:26,484 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:26,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:26,484 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:26,485 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:26,567 INFO Welcome to the CDS
2023-03-20 11:29:26,567 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:26,680 INFO Request is queued
no data199701
2023-03-20 11:29:27,745 INFO Request is failed
2023-03-20 11:29:27,746 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:27,747 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:27,747 ERROR Traceback (most recent call last):
2023-03-20 11:29:27,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,748 ERROR result = handle_locally()
2023-03-20 11:29:27,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,749 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:27,750 ERROR raise exception
2023-03-20 11:29:27,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,750 ERROR result = handle_locally()
2023-03-20 11:29:27,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,751 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:27,752 ERROR raise exception
2023-03-20 11:29:27,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,754 ERROR result = handle_locally()
2023-03-20 11:29:27,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,755 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:27,755 ERROR raise exception
2023-03-20 11:29:27,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,756 ERROR result = handle_locally()
2023-03-20 11:29:27,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,757 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:27,758 ERROR raise exception
2023-03-20 11:29:27,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,759 ERROR result = handle_locally()
2023-03-20 11:29:27,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,759 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:27,760 ERROR raise exception
2023-03-20 11:29:27,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,761 ERROR result = handle_locally()
2023-03-20 11:29:27,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,762 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:27,762 ERROR raise exception
2023-03-20 11:29:27,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,763 ERROR result = handle_locally()
2023-03-20 11:29:27,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:27,764 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:27,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:27,765 ERROR raise exception
2023-03-20 11:29:27,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:27,765 ERROR result = handle_locally()
2023-03-20 11:29:27,766 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:27,766 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:27,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:27,767 ERROR constraint_type_strict)
2023-03-20 11:29:27,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:27,768 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:27,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:27,769 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:27,769 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:27,831 INFO Welcome to the CDS
2023-03-20 11:29:27,831 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199702
2023-03-20 11:29:27,973 INFO Request is queued
2023-03-20 11:29:29,063 INFO Request is failed
2023-03-20 11:29:29,064 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:29,064 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:29,065 ERROR Traceback (most recent call last):
2023-03-20 11:29:29,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,066 ERROR result = handle_locally()
2023-03-20 11:29:29,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,067 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,067 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:29,068 ERROR raise exception
2023-03-20 11:29:29,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,068 ERROR result = handle_locally()
2023-03-20 11:29:29,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,069 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:29,070 ERROR raise exception
2023-03-20 11:29:29,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,071 ERROR result = handle_locally()
2023-03-20 11:29:29,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,072 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:29,072 ERROR raise exception
2023-03-20 11:29:29,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,073 ERROR result = handle_locally()
2023-03-20 11:29:29,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,074 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:29,075 ERROR raise exception
2023-03-20 11:29:29,075 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,075 ERROR result = handle_locally()
2023-03-20 11:29:29,076 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,076 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:29,079 ERROR raise exception
2023-03-20 11:29:29,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,080 ERROR result = handle_locally()
2023-03-20 11:29:29,081 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,081 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:29,082 ERROR raise exception
2023-03-20 11:29:29,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,083 ERROR result = handle_locally()
2023-03-20 11:29:29,083 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:29,083 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:29,084 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:29,084 ERROR raise exception
2023-03-20 11:29:29,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:29,085 ERROR result = handle_locally()
2023-03-20 11:29:29,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:29,086 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:29,086 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:29,087 ERROR constraint_type_strict)
2023-03-20 11:29:29,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:29,087 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:29,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:29,088 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:29,088 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:29,172 INFO Welcome to the CDS
2023-03-20 11:29:29,172 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199703
2023-03-20 11:29:29,385 INFO Request is queued
2023-03-20 11:29:30,477 INFO Request is failed
2023-03-20 11:29:30,478 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:30,478 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:30,479 ERROR Traceback (most recent call last):
2023-03-20 11:29:30,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,479 ERROR result = handle_locally()
2023-03-20 11:29:30,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,480 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:30,481 ERROR raise exception
2023-03-20 11:29:30,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,482 ERROR result = handle_locally()
2023-03-20 11:29:30,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,483 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:30,484 ERROR raise exception
2023-03-20 11:29:30,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,484 ERROR result = handle_locally()
2023-03-20 11:29:30,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,485 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:30,486 ERROR raise exception
2023-03-20 11:29:30,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,487 ERROR result = handle_locally()
2023-03-20 11:29:30,487 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,487 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:30,488 ERROR raise exception
2023-03-20 11:29:30,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,489 ERROR result = handle_locally()
2023-03-20 11:29:30,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,490 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:30,490 ERROR raise exception
2023-03-20 11:29:30,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,494 ERROR result = handle_locally()
2023-03-20 11:29:30,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,495 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:30,496 ERROR raise exception
2023-03-20 11:29:30,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,496 ERROR result = handle_locally()
2023-03-20 11:29:30,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:30,497 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:30,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:30,498 ERROR raise exception
2023-03-20 11:29:30,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:30,499 ERROR result = handle_locally()
2023-03-20 11:29:30,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:30,499 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:30,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:30,500 ERROR constraint_type_strict)
2023-03-20 11:29:30,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:30,501 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:30,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:30,502 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:30,502 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:30,582 INFO Welcome to the CDS
2023-03-20 11:29:30,582 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199704
2023-03-20 11:29:30,713 INFO Request is queued
2023-03-20 11:29:31,798 INFO Request is failed
2023-03-20 11:29:31,799 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:31,799 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:31,799 ERROR Traceback (most recent call last):
2023-03-20 11:29:31,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,801 ERROR result = handle_locally()
2023-03-20 11:29:31,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,802 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:31,802 ERROR raise exception
2023-03-20 11:29:31,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,803 ERROR result = handle_locally()
2023-03-20 11:29:31,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,804 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:31,805 ERROR raise exception
2023-03-20 11:29:31,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,806 ERROR result = handle_locally()
2023-03-20 11:29:31,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,806 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:31,807 ERROR raise exception
2023-03-20 11:29:31,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,808 ERROR result = handle_locally()
2023-03-20 11:29:31,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,809 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:31,809 ERROR raise exception
2023-03-20 11:29:31,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,810 ERROR result = handle_locally()
2023-03-20 11:29:31,811 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,811 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:31,814 ERROR raise exception
2023-03-20 11:29:31,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,815 ERROR result = handle_locally()
2023-03-20 11:29:31,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,816 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:31,817 ERROR raise exception
2023-03-20 11:29:31,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,817 ERROR result = handle_locally()
2023-03-20 11:29:31,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:31,818 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:31,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:31,819 ERROR raise exception
2023-03-20 11:29:31,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:31,821 ERROR result = handle_locally()
2023-03-20 11:29:31,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:31,822 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:31,822 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:31,822 ERROR constraint_type_strict)
2023-03-20 11:29:31,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:31,823 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:31,824 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:31,824 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:31,824 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:31,918 INFO Welcome to the CDS
2023-03-20 11:29:31,919 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199705
2023-03-20 11:29:32,068 INFO Request is queued
2023-03-20 11:29:33,160 INFO Request is failed
2023-03-20 11:29:33,161 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:33,161 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:33,162 ERROR Traceback (most recent call last):
2023-03-20 11:29:33,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,162 ERROR result = handle_locally()
2023-03-20 11:29:33,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,163 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:33,164 ERROR raise exception
2023-03-20 11:29:33,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,165 ERROR result = handle_locally()
2023-03-20 11:29:33,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,166 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,166 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:33,166 ERROR raise exception
2023-03-20 11:29:33,167 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,167 ERROR result = handle_locally()
2023-03-20 11:29:33,167 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,168 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:33,169 ERROR raise exception
2023-03-20 11:29:33,169 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,169 ERROR result = handle_locally()
2023-03-20 11:29:33,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,170 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:33,171 ERROR raise exception
2023-03-20 11:29:33,171 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,172 ERROR result = handle_locally()
2023-03-20 11:29:33,172 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,172 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,173 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:33,173 ERROR raise exception
2023-03-20 11:29:33,174 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,174 ERROR result = handle_locally()
2023-03-20 11:29:33,174 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,175 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,175 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:33,175 ERROR raise exception
2023-03-20 11:29:33,176 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,176 ERROR result = handle_locally()
2023-03-20 11:29:33,177 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:33,177 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:33,177 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:33,178 ERROR raise exception
2023-03-20 11:29:33,178 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:33,179 ERROR result = handle_locally()
2023-03-20 11:29:33,179 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:33,179 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:33,180 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:33,180 ERROR constraint_type_strict)
2023-03-20 11:29:33,180 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:33,181 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:33,181 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:33,182 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:33,182 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:33,255 INFO Welcome to the CDS
2023-03-20 11:29:33,256 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:33,384 INFO Request is queued
no data199706
2023-03-20 11:29:34,452 INFO Request is failed
2023-03-20 11:29:34,453 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:34,453 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:34,454 ERROR Traceback (most recent call last):
2023-03-20 11:29:34,454 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,455 ERROR result = handle_locally()
2023-03-20 11:29:34,455 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,455 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,456 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:34,456 ERROR raise exception
2023-03-20 11:29:34,457 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,457 ERROR result = handle_locally()
2023-03-20 11:29:34,457 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,458 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,458 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:34,459 ERROR raise exception
2023-03-20 11:29:34,459 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,460 ERROR result = handle_locally()
2023-03-20 11:29:34,460 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,460 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:34,461 ERROR raise exception
2023-03-20 11:29:34,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,462 ERROR result = handle_locally()
2023-03-20 11:29:34,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,463 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:34,463 ERROR raise exception
2023-03-20 11:29:34,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,464 ERROR result = handle_locally()
2023-03-20 11:29:34,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,465 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:34,466 ERROR raise exception
2023-03-20 11:29:34,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,466 ERROR result = handle_locally()
2023-03-20 11:29:34,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,467 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:34,468 ERROR raise exception
2023-03-20 11:29:34,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,469 ERROR result = handle_locally()
2023-03-20 11:29:34,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:34,470 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:34,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:34,470 ERROR raise exception
2023-03-20 11:29:34,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:34,471 ERROR result = handle_locally()
2023-03-20 11:29:34,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:34,472 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:34,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:34,473 ERROR constraint_type_strict)
2023-03-20 11:29:34,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:34,474 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:34,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:34,474 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:34,475 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:34,545 INFO Welcome to the CDS
2023-03-20 11:29:34,546 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199707
2023-03-20 11:29:34,680 INFO Request is queued
2023-03-20 11:29:35,765 INFO Request is failed
2023-03-20 11:29:35,766 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:35,767 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:35,767 ERROR Traceback (most recent call last):
2023-03-20 11:29:35,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,768 ERROR result = handle_locally()
2023-03-20 11:29:35,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,769 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:35,769 ERROR raise exception
2023-03-20 11:29:35,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,770 ERROR result = handle_locally()
2023-03-20 11:29:35,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,771 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:35,772 ERROR raise exception
2023-03-20 11:29:35,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,772 ERROR result = handle_locally()
2023-03-20 11:29:35,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,773 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:35,774 ERROR raise exception
2023-03-20 11:29:35,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,774 ERROR result = handle_locally()
2023-03-20 11:29:35,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,775 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:35,776 ERROR raise exception
2023-03-20 11:29:35,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,777 ERROR result = handle_locally()
2023-03-20 11:29:35,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,777 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:35,778 ERROR raise exception
2023-03-20 11:29:35,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,779 ERROR result = handle_locally()
2023-03-20 11:29:35,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,780 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:35,780 ERROR raise exception
2023-03-20 11:29:35,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,781 ERROR result = handle_locally()
2023-03-20 11:29:35,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:35,782 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:35,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:35,782 ERROR raise exception
2023-03-20 11:29:35,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:35,783 ERROR result = handle_locally()
2023-03-20 11:29:35,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:35,784 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:35,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:35,785 ERROR constraint_type_strict)
2023-03-20 11:29:35,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:35,785 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:35,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:35,786 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:35,786 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:35,872 INFO Welcome to the CDS
2023-03-20 11:29:35,873 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199708
2023-03-20 11:29:36,016 INFO Request is queued
2023-03-20 11:29:37,100 INFO Request is failed
2023-03-20 11:29:37,101 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:37,101 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:37,102 ERROR Traceback (most recent call last):
2023-03-20 11:29:37,102 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,103 ERROR result = handle_locally()
2023-03-20 11:29:37,103 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,104 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:37,104 ERROR raise exception
2023-03-20 11:29:37,105 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,105 ERROR result = handle_locally()
2023-03-20 11:29:37,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,106 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:37,107 ERROR raise exception
2023-03-20 11:29:37,107 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,108 ERROR result = handle_locally()
2023-03-20 11:29:37,108 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,108 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,109 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:37,109 ERROR raise exception
2023-03-20 11:29:37,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,110 ERROR result = handle_locally()
2023-03-20 11:29:37,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,111 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,111 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:37,112 ERROR raise exception
2023-03-20 11:29:37,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,112 ERROR result = handle_locally()
2023-03-20 11:29:37,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,113 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:37,114 ERROR raise exception
2023-03-20 11:29:37,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,115 ERROR result = handle_locally()
2023-03-20 11:29:37,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,116 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:37,116 ERROR raise exception
2023-03-20 11:29:37,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,117 ERROR result = handle_locally()
2023-03-20 11:29:37,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:37,118 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:37,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:37,119 ERROR raise exception
2023-03-20 11:29:37,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:37,120 ERROR result = handle_locally()
2023-03-20 11:29:37,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:37,120 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:37,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:37,121 ERROR constraint_type_strict)
2023-03-20 11:29:37,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:37,122 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:37,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:37,123 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:37,123 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:37,209 INFO Welcome to the CDS
2023-03-20 11:29:37,210 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199709
2023-03-20 11:29:37,646 INFO Request is queued
2023-03-20 11:29:38,719 INFO Request is failed
2023-03-20 11:29:38,720 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:38,720 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:38,721 ERROR Traceback (most recent call last):
2023-03-20 11:29:38,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,721 ERROR result = handle_locally()
2023-03-20 11:29:38,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,722 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:38,723 ERROR raise exception
2023-03-20 11:29:38,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,725 ERROR result = handle_locally()
2023-03-20 11:29:38,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,726 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:38,726 ERROR raise exception
2023-03-20 11:29:38,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,727 ERROR result = handle_locally()
2023-03-20 11:29:38,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,728 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:38,729 ERROR raise exception
2023-03-20 11:29:38,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,730 ERROR result = handle_locally()
2023-03-20 11:29:38,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,730 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:38,731 ERROR raise exception
2023-03-20 11:29:38,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,732 ERROR result = handle_locally()
2023-03-20 11:29:38,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,733 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:38,734 ERROR raise exception
2023-03-20 11:29:38,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,734 ERROR result = handle_locally()
2023-03-20 11:29:38,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,735 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:38,736 ERROR raise exception
2023-03-20 11:29:38,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,737 ERROR result = handle_locally()
2023-03-20 11:29:38,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:38,737 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:38,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:38,738 ERROR raise exception
2023-03-20 11:29:38,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:38,739 ERROR result = handle_locally()
2023-03-20 11:29:38,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:38,740 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:38,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:38,741 ERROR constraint_type_strict)
2023-03-20 11:29:38,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:38,741 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:38,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:38,742 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:38,743 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:38,804 INFO Welcome to the CDS
2023-03-20 11:29:38,805 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:38,916 INFO Request is queued
no data199710
2023-03-20 11:29:40,007 INFO Request is failed
2023-03-20 11:29:40,008 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:40,008 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:40,009 ERROR Traceback (most recent call last):
2023-03-20 11:29:40,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,009 ERROR result = handle_locally()
2023-03-20 11:29:40,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,010 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:40,011 ERROR raise exception
2023-03-20 11:29:40,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,012 ERROR result = handle_locally()
2023-03-20 11:29:40,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,013 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:40,013 ERROR raise exception
2023-03-20 11:29:40,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,014 ERROR result = handle_locally()
2023-03-20 11:29:40,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,015 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:40,016 ERROR raise exception
2023-03-20 11:29:40,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,017 ERROR result = handle_locally()
2023-03-20 11:29:40,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,017 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:40,018 ERROR raise exception
2023-03-20 11:29:40,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,019 ERROR result = handle_locally()
2023-03-20 11:29:40,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,020 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:40,020 ERROR raise exception
2023-03-20 11:29:40,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,021 ERROR result = handle_locally()
2023-03-20 11:29:40,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,022 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:40,023 ERROR raise exception
2023-03-20 11:29:40,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,023 ERROR result = handle_locally()
2023-03-20 11:29:40,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:40,024 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:40,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:40,025 ERROR raise exception
2023-03-20 11:29:40,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:40,026 ERROR result = handle_locally()
2023-03-20 11:29:40,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:40,027 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:40,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:40,027 ERROR constraint_type_strict)
2023-03-20 11:29:40,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:40,028 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:40,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:40,029 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:40,029 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:40,101 INFO Welcome to the CDS
2023-03-20 11:29:40,102 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:40,202 INFO Request is queued
no data199711
2023-03-20 11:29:41,262 INFO Request is failed
2023-03-20 11:29:41,263 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:41,263 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:41,263 ERROR Traceback (most recent call last):
2023-03-20 11:29:41,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,264 ERROR result = handle_locally()
2023-03-20 11:29:41,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,265 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:41,266 ERROR raise exception
2023-03-20 11:29:41,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,267 ERROR result = handle_locally()
2023-03-20 11:29:41,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,267 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:41,268 ERROR raise exception
2023-03-20 11:29:41,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,269 ERROR result = handle_locally()
2023-03-20 11:29:41,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,270 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:41,271 ERROR raise exception
2023-03-20 11:29:41,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,271 ERROR result = handle_locally()
2023-03-20 11:29:41,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,272 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:41,273 ERROR raise exception
2023-03-20 11:29:41,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,274 ERROR result = handle_locally()
2023-03-20 11:29:41,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,275 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:41,275 ERROR raise exception
2023-03-20 11:29:41,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,276 ERROR result = handle_locally()
2023-03-20 11:29:41,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,277 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:41,278 ERROR raise exception
2023-03-20 11:29:41,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,279 ERROR result = handle_locally()
2023-03-20 11:29:41,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:41,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:41,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:41,280 ERROR raise exception
2023-03-20 11:29:41,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:41,281 ERROR result = handle_locally()
2023-03-20 11:29:41,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:41,282 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:41,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:41,282 ERROR constraint_type_strict)
2023-03-20 11:29:41,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:41,283 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:41,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:41,284 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:41,284 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:41,353 INFO Welcome to the CDS
2023-03-20 11:29:41,353 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199712
2023-03-20 11:29:41,498 INFO Request is queued
2023-03-20 11:29:42,584 INFO Request is failed
2023-03-20 11:29:42,584 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:42,585 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:42,585 ERROR Traceback (most recent call last):
2023-03-20 11:29:42,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,586 ERROR result = handle_locally()
2023-03-20 11:29:42,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,587 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,587 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:42,588 ERROR raise exception
2023-03-20 11:29:42,588 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,588 ERROR result = handle_locally()
2023-03-20 11:29:42,589 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,589 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:42,590 ERROR raise exception
2023-03-20 11:29:42,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,591 ERROR result = handle_locally()
2023-03-20 11:29:42,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,592 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:42,592 ERROR raise exception
2023-03-20 11:29:42,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,593 ERROR result = handle_locally()
2023-03-20 11:29:42,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,594 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:42,595 ERROR raise exception
2023-03-20 11:29:42,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,596 ERROR result = handle_locally()
2023-03-20 11:29:42,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,596 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:42,597 ERROR raise exception
2023-03-20 11:29:42,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,598 ERROR result = handle_locally()
2023-03-20 11:29:42,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,599 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:42,600 ERROR raise exception
2023-03-20 11:29:42,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,600 ERROR result = handle_locally()
2023-03-20 11:29:42,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:42,601 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:42,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:42,602 ERROR raise exception
2023-03-20 11:29:42,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:42,603 ERROR result = handle_locally()
2023-03-20 11:29:42,603 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:42,603 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:42,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:42,604 ERROR constraint_type_strict)
2023-03-20 11:29:42,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:42,605 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:42,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:42,606 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:42,606 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:42,669 INFO Welcome to the CDS
2023-03-20 11:29:42,669 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:42,790 INFO Request is queued
no data199801
2023-03-20 11:29:43,853 INFO Request is failed
2023-03-20 11:29:43,854 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:43,854 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:43,855 ERROR Traceback (most recent call last):
2023-03-20 11:29:43,855 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,855 ERROR result = handle_locally()
2023-03-20 11:29:43,856 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,856 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:43,857 ERROR raise exception
2023-03-20 11:29:43,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,858 ERROR result = handle_locally()
2023-03-20 11:29:43,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,859 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,860 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:43,860 ERROR raise exception
2023-03-20 11:29:43,860 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,861 ERROR result = handle_locally()
2023-03-20 11:29:43,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,861 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,862 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:43,862 ERROR raise exception
2023-03-20 11:29:43,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,863 ERROR result = handle_locally()
2023-03-20 11:29:43,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,864 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,864 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:43,864 ERROR raise exception
2023-03-20 11:29:43,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,865 ERROR result = handle_locally()
2023-03-20 11:29:43,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,866 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:43,866 ERROR raise exception
2023-03-20 11:29:43,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,867 ERROR result = handle_locally()
2023-03-20 11:29:43,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,868 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:43,869 ERROR raise exception
2023-03-20 11:29:43,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,869 ERROR result = handle_locally()
2023-03-20 11:29:43,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:43,870 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:43,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:43,871 ERROR raise exception
2023-03-20 11:29:43,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:43,871 ERROR result = handle_locally()
2023-03-20 11:29:43,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:43,872 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:43,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:43,873 ERROR constraint_type_strict)
2023-03-20 11:29:43,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:43,874 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:43,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:43,874 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:43,875 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:43,935 INFO Welcome to the CDS
2023-03-20 11:29:43,936 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:44,037 INFO Request is queued
no data199802
2023-03-20 11:29:45,108 INFO Request is failed
2023-03-20 11:29:45,109 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:45,110 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:45,110 ERROR Traceback (most recent call last):
2023-03-20 11:29:45,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,111 ERROR result = handle_locally()
2023-03-20 11:29:45,111 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,112 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:45,112 ERROR raise exception
2023-03-20 11:29:45,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,113 ERROR result = handle_locally()
2023-03-20 11:29:45,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,114 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:45,114 ERROR raise exception
2023-03-20 11:29:45,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,115 ERROR result = handle_locally()
2023-03-20 11:29:45,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,116 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:45,117 ERROR raise exception
2023-03-20 11:29:45,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,117 ERROR result = handle_locally()
2023-03-20 11:29:45,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,118 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:45,119 ERROR raise exception
2023-03-20 11:29:45,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,119 ERROR result = handle_locally()
2023-03-20 11:29:45,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,120 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:45,121 ERROR raise exception
2023-03-20 11:29:45,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,121 ERROR result = handle_locally()
2023-03-20 11:29:45,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,122 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:45,123 ERROR raise exception
2023-03-20 11:29:45,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,124 ERROR result = handle_locally()
2023-03-20 11:29:45,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:45,124 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:45,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:45,125 ERROR raise exception
2023-03-20 11:29:45,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:45,126 ERROR result = handle_locally()
2023-03-20 11:29:45,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:45,126 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:45,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:45,127 ERROR constraint_type_strict)
2023-03-20 11:29:45,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:45,128 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:45,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:45,128 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:45,129 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:45,201 INFO Welcome to the CDS
2023-03-20 11:29:45,202 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199803
2023-03-20 11:29:45,574 INFO Request is queued
2023-03-20 11:29:46,639 INFO Request is failed
2023-03-20 11:29:46,639 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:46,640 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:46,640 ERROR Traceback (most recent call last):
2023-03-20 11:29:46,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,641 ERROR result = handle_locally()
2023-03-20 11:29:46,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,642 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:46,642 ERROR raise exception
2023-03-20 11:29:46,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,643 ERROR result = handle_locally()
2023-03-20 11:29:46,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,644 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:46,645 ERROR raise exception
2023-03-20 11:29:46,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,645 ERROR result = handle_locally()
2023-03-20 11:29:46,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,646 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:46,647 ERROR raise exception
2023-03-20 11:29:46,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,647 ERROR result = handle_locally()
2023-03-20 11:29:46,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,648 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:46,649 ERROR raise exception
2023-03-20 11:29:46,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,650 ERROR result = handle_locally()
2023-03-20 11:29:46,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,650 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:46,651 ERROR raise exception
2023-03-20 11:29:46,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,652 ERROR result = handle_locally()
2023-03-20 11:29:46,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,652 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:46,653 ERROR raise exception
2023-03-20 11:29:46,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,654 ERROR result = handle_locally()
2023-03-20 11:29:46,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:46,655 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:46,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:46,655 ERROR raise exception
2023-03-20 11:29:46,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:46,656 ERROR result = handle_locally()
2023-03-20 11:29:46,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:46,657 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:46,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:46,657 ERROR constraint_type_strict)
2023-03-20 11:29:46,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:46,658 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:46,659 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:46,659 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:46,659 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:46,727 INFO Welcome to the CDS
2023-03-20 11:29:46,727 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199804
2023-03-20 11:29:46,918 INFO Request is queued
2023-03-20 11:29:47,993 INFO Request is failed
2023-03-20 11:29:47,994 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:47,994 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:47,995 ERROR Traceback (most recent call last):
2023-03-20 11:29:47,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:47,996 ERROR result = handle_locally()
2023-03-20 11:29:47,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:47,996 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:47,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:47,997 ERROR raise exception
2023-03-20 11:29:47,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:47,998 ERROR result = handle_locally()
2023-03-20 11:29:47,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:47,999 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:47,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:47,999 ERROR raise exception
2023-03-20 11:29:48,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,000 ERROR result = handle_locally()
2023-03-20 11:29:48,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:48,001 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:48,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:48,001 ERROR raise exception
2023-03-20 11:29:48,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,002 ERROR result = handle_locally()
2023-03-20 11:29:48,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:48,003 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:48,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:48,004 ERROR raise exception
2023-03-20 11:29:48,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,004 ERROR result = handle_locally()
2023-03-20 11:29:48,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:48,005 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:48,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:48,006 ERROR raise exception
2023-03-20 11:29:48,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,006 ERROR result = handle_locally()
2023-03-20 11:29:48,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:48,007 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:48,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:48,008 ERROR raise exception
2023-03-20 11:29:48,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,008 ERROR result = handle_locally()
2023-03-20 11:29:48,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:48,009 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:48,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:48,010 ERROR raise exception
2023-03-20 11:29:48,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:48,011 ERROR result = handle_locally()
2023-03-20 11:29:48,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:48,011 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:48,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:48,012 ERROR constraint_type_strict)
2023-03-20 11:29:48,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:48,013 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:48,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:48,013 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:48,014 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:48,087 INFO Welcome to the CDS
2023-03-20 11:29:48,088 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:48,187 INFO Request is queued
no data199805
2023-03-20 11:29:49,259 INFO Request is failed
2023-03-20 11:29:49,260 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:49,260 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:49,261 ERROR Traceback (most recent call last):
2023-03-20 11:29:49,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,262 ERROR result = handle_locally()
2023-03-20 11:29:49,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,262 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:49,263 ERROR raise exception
2023-03-20 11:29:49,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,264 ERROR result = handle_locally()
2023-03-20 11:29:49,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,264 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:49,265 ERROR raise exception
2023-03-20 11:29:49,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,266 ERROR result = handle_locally()
2023-03-20 11:29:49,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,267 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:49,267 ERROR raise exception
2023-03-20 11:29:49,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,268 ERROR result = handle_locally()
2023-03-20 11:29:49,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,269 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:49,270 ERROR raise exception
2023-03-20 11:29:49,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,270 ERROR result = handle_locally()
2023-03-20 11:29:49,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,271 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:49,272 ERROR raise exception
2023-03-20 11:29:49,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,272 ERROR result = handle_locally()
2023-03-20 11:29:49,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,273 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:49,274 ERROR raise exception
2023-03-20 11:29:49,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,275 ERROR result = handle_locally()
2023-03-20 11:29:49,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:49,275 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:49,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:49,276 ERROR raise exception
2023-03-20 11:29:49,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:49,277 ERROR result = handle_locally()
2023-03-20 11:29:49,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:49,278 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:49,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:49,278 ERROR constraint_type_strict)
2023-03-20 11:29:49,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:49,279 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:49,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:49,280 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:49,280 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:49,341 INFO Welcome to the CDS
2023-03-20 11:29:49,342 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:49,448 INFO Request is queued
no data199806
2023-03-20 11:29:50,520 INFO Request is failed
2023-03-20 11:29:50,521 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:50,522 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:50,522 ERROR Traceback (most recent call last):
2023-03-20 11:29:50,522 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,523 ERROR result = handle_locally()
2023-03-20 11:29:50,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,523 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,524 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:50,524 ERROR raise exception
2023-03-20 11:29:50,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,525 ERROR result = handle_locally()
2023-03-20 11:29:50,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,526 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,526 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:50,526 ERROR raise exception
2023-03-20 11:29:50,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,527 ERROR result = handle_locally()
2023-03-20 11:29:50,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,528 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:50,529 ERROR raise exception
2023-03-20 11:29:50,529 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,529 ERROR result = handle_locally()
2023-03-20 11:29:50,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,530 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:50,531 ERROR raise exception
2023-03-20 11:29:50,531 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,531 ERROR result = handle_locally()
2023-03-20 11:29:50,532 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,532 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:50,533 ERROR raise exception
2023-03-20 11:29:50,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,534 ERROR result = handle_locally()
2023-03-20 11:29:50,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,534 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:50,535 ERROR raise exception
2023-03-20 11:29:50,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,536 ERROR result = handle_locally()
2023-03-20 11:29:50,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:50,536 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:50,537 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:50,537 ERROR raise exception
2023-03-20 11:29:50,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:50,538 ERROR result = handle_locally()
2023-03-20 11:29:50,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:50,539 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:50,539 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:50,539 ERROR constraint_type_strict)
2023-03-20 11:29:50,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:50,540 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:50,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:50,541 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:50,541 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:50,609 INFO Welcome to the CDS
2023-03-20 11:29:50,610 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:50,732 INFO Request is queued
no data199807
2023-03-20 11:29:51,797 INFO Request is failed
2023-03-20 11:29:51,798 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:51,798 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:51,799 ERROR Traceback (most recent call last):
2023-03-20 11:29:51,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,800 ERROR result = handle_locally()
2023-03-20 11:29:51,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,800 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:51,801 ERROR raise exception
2023-03-20 11:29:51,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,802 ERROR result = handle_locally()
2023-03-20 11:29:51,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,803 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:51,803 ERROR raise exception
2023-03-20 11:29:51,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,804 ERROR result = handle_locally()
2023-03-20 11:29:51,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,805 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:51,805 ERROR raise exception
2023-03-20 11:29:51,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,806 ERROR result = handle_locally()
2023-03-20 11:29:51,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,807 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:51,808 ERROR raise exception
2023-03-20 11:29:51,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,808 ERROR result = handle_locally()
2023-03-20 11:29:51,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,809 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:51,810 ERROR raise exception
2023-03-20 11:29:51,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,811 ERROR result = handle_locally()
2023-03-20 11:29:51,811 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,811 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,812 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:51,812 ERROR raise exception
2023-03-20 11:29:51,812 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,813 ERROR result = handle_locally()
2023-03-20 11:29:51,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:51,813 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:51,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:51,814 ERROR raise exception
2023-03-20 11:29:51,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:51,815 ERROR result = handle_locally()
2023-03-20 11:29:51,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:51,816 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:51,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:51,816 ERROR constraint_type_strict)
2023-03-20 11:29:51,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:51,817 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:51,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:51,818 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:51,818 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:51,893 INFO Welcome to the CDS
2023-03-20 11:29:51,894 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:51,991 INFO Request is queued
no data199808
2023-03-20 11:29:53,065 INFO Request is failed
2023-03-20 11:29:53,066 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:53,066 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:53,067 ERROR Traceback (most recent call last):
2023-03-20 11:29:53,067 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,067 ERROR result = handle_locally()
2023-03-20 11:29:53,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,068 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:53,069 ERROR raise exception
2023-03-20 11:29:53,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,070 ERROR result = handle_locally()
2023-03-20 11:29:53,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,070 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:53,071 ERROR raise exception
2023-03-20 11:29:53,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,072 ERROR result = handle_locally()
2023-03-20 11:29:53,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,073 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:53,073 ERROR raise exception
2023-03-20 11:29:53,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,074 ERROR result = handle_locally()
2023-03-20 11:29:53,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,075 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,075 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:53,075 ERROR raise exception
2023-03-20 11:29:53,076 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,076 ERROR result = handle_locally()
2023-03-20 11:29:53,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,077 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:53,078 ERROR raise exception
2023-03-20 11:29:53,078 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,078 ERROR result = handle_locally()
2023-03-20 11:29:53,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,079 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:53,080 ERROR raise exception
2023-03-20 11:29:53,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,081 ERROR result = handle_locally()
2023-03-20 11:29:53,081 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:53,081 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:53,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:53,082 ERROR raise exception
2023-03-20 11:29:53,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:53,083 ERROR result = handle_locally()
2023-03-20 11:29:53,083 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:53,083 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:53,084 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:53,084 ERROR constraint_type_strict)
2023-03-20 11:29:53,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:53,085 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:53,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:53,086 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:53,086 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:53,151 INFO Welcome to the CDS
2023-03-20 11:29:53,152 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:53,281 INFO Request is queued
no data199809
2023-03-20 11:29:54,336 INFO Request is failed
2023-03-20 11:29:54,337 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:54,337 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:54,337 ERROR Traceback (most recent call last):
2023-03-20 11:29:54,338 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,338 ERROR result = handle_locally()
2023-03-20 11:29:54,339 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,339 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,339 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:54,340 ERROR raise exception
2023-03-20 11:29:54,340 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,340 ERROR result = handle_locally()
2023-03-20 11:29:54,341 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,341 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,342 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:54,342 ERROR raise exception
2023-03-20 11:29:54,342 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,343 ERROR result = handle_locally()
2023-03-20 11:29:54,343 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,343 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:54,344 ERROR raise exception
2023-03-20 11:29:54,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,345 ERROR result = handle_locally()
2023-03-20 11:29:54,345 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,345 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:54,346 ERROR raise exception
2023-03-20 11:29:54,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,347 ERROR result = handle_locally()
2023-03-20 11:29:54,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,348 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,348 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:54,348 ERROR raise exception
2023-03-20 11:29:54,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,350 ERROR result = handle_locally()
2023-03-20 11:29:54,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,351 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:54,351 ERROR raise exception
2023-03-20 11:29:54,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,352 ERROR result = handle_locally()
2023-03-20 11:29:54,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:54,353 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:54,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:54,354 ERROR raise exception
2023-03-20 11:29:54,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:54,354 ERROR result = handle_locally()
2023-03-20 11:29:54,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:54,355 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:54,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:54,356 ERROR constraint_type_strict)
2023-03-20 11:29:54,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:54,356 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:54,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:54,357 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:54,358 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:54,412 INFO Welcome to the CDS
2023-03-20 11:29:54,412 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:54,516 INFO Request is queued
no data199810
2023-03-20 11:29:55,577 INFO Request is failed
2023-03-20 11:29:55,577 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:55,578 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:55,578 ERROR Traceback (most recent call last):
2023-03-20 11:29:55,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,579 ERROR result = handle_locally()
2023-03-20 11:29:55,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,580 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,580 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:55,580 ERROR raise exception
2023-03-20 11:29:55,581 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,581 ERROR result = handle_locally()
2023-03-20 11:29:55,582 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,582 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,582 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:55,583 ERROR raise exception
2023-03-20 11:29:55,583 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,583 ERROR result = handle_locally()
2023-03-20 11:29:55,584 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,584 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,584 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:55,585 ERROR raise exception
2023-03-20 11:29:55,585 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,585 ERROR result = handle_locally()
2023-03-20 11:29:55,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,586 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:55,587 ERROR raise exception
2023-03-20 11:29:55,587 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,588 ERROR result = handle_locally()
2023-03-20 11:29:55,588 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,588 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,589 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:55,589 ERROR raise exception
2023-03-20 11:29:55,589 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,590 ERROR result = handle_locally()
2023-03-20 11:29:55,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,590 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:55,591 ERROR raise exception
2023-03-20 11:29:55,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,592 ERROR result = handle_locally()
2023-03-20 11:29:55,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:55,592 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:55,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:55,593 ERROR raise exception
2023-03-20 11:29:55,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:55,594 ERROR result = handle_locally()
2023-03-20 11:29:55,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:55,595 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:55,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:55,595 ERROR constraint_type_strict)
2023-03-20 11:29:55,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:55,596 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:55,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:55,597 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:55,597 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:55,655 INFO Welcome to the CDS
2023-03-20 11:29:55,655 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199811
2023-03-20 11:29:55,862 INFO Request is queued
2023-03-20 11:29:56,918 INFO Request is failed
2023-03-20 11:29:56,919 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:56,919 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:56,920 ERROR Traceback (most recent call last):
2023-03-20 11:29:56,920 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,921 ERROR result = handle_locally()
2023-03-20 11:29:56,921 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,921 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,922 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:56,922 ERROR raise exception
2023-03-20 11:29:56,922 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,923 ERROR result = handle_locally()
2023-03-20 11:29:56,923 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,923 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,924 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:56,924 ERROR raise exception
2023-03-20 11:29:56,924 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,925 ERROR result = handle_locally()
2023-03-20 11:29:56,925 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,926 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,926 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:56,926 ERROR raise exception
2023-03-20 11:29:56,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,927 ERROR result = handle_locally()
2023-03-20 11:29:56,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,928 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,928 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:56,928 ERROR raise exception
2023-03-20 11:29:56,929 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,929 ERROR result = handle_locally()
2023-03-20 11:29:56,929 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,930 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,930 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:56,930 ERROR raise exception
2023-03-20 11:29:56,931 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,931 ERROR result = handle_locally()
2023-03-20 11:29:56,931 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,932 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,932 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:56,933 ERROR raise exception
2023-03-20 11:29:56,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,933 ERROR result = handle_locally()
2023-03-20 11:29:56,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:56,934 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:56,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:56,935 ERROR raise exception
2023-03-20 11:29:56,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:56,935 ERROR result = handle_locally()
2023-03-20 11:29:56,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:56,936 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:56,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:56,937 ERROR constraint_type_strict)
2023-03-20 11:29:56,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:56,938 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:56,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:56,938 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:56,939 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:56,987 INFO Welcome to the CDS
2023-03-20 11:29:56,988 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:57,058 INFO Request is queued
no data199812
2023-03-20 11:29:58,135 INFO Request is failed
2023-03-20 11:29:58,136 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:58,136 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:58,136 ERROR Traceback (most recent call last):
2023-03-20 11:29:58,137 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,137 ERROR result = handle_locally()
2023-03-20 11:29:58,137 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,138 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,138 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:58,139 ERROR raise exception
2023-03-20 11:29:58,139 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,139 ERROR result = handle_locally()
2023-03-20 11:29:58,140 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,140 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,140 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:58,141 ERROR raise exception
2023-03-20 11:29:58,141 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,141 ERROR result = handle_locally()
2023-03-20 11:29:58,142 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,142 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,142 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:58,143 ERROR raise exception
2023-03-20 11:29:58,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,145 ERROR result = handle_locally()
2023-03-20 11:29:58,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,146 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:58,146 ERROR raise exception
2023-03-20 11:29:58,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,147 ERROR result = handle_locally()
2023-03-20 11:29:58,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,148 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:58,149 ERROR raise exception
2023-03-20 11:29:58,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,150 ERROR result = handle_locally()
2023-03-20 11:29:58,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,150 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:58,151 ERROR raise exception
2023-03-20 11:29:58,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,152 ERROR result = handle_locally()
2023-03-20 11:29:58,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:58,153 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:58,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:58,153 ERROR raise exception
2023-03-20 11:29:58,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:58,154 ERROR result = handle_locally()
2023-03-20 11:29:58,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:58,155 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:58,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:58,156 ERROR constraint_type_strict)
2023-03-20 11:29:58,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:58,157 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:58,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:58,159 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:58,160 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:58,222 INFO Welcome to the CDS
2023-03-20 11:29:58,222 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:58,323 INFO Request is queued
no data199901
2023-03-20 11:29:59,399 INFO Request is failed
2023-03-20 11:29:59,400 ERROR Message: the request you have submitted is not valid
2023-03-20 11:29:59,400 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:59,401 ERROR Traceback (most recent call last):
2023-03-20 11:29:59,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,401 ERROR result = handle_locally()
2023-03-20 11:29:59,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,402 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:29:59,403 ERROR raise exception
2023-03-20 11:29:59,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,404 ERROR result = handle_locally()
2023-03-20 11:29:59,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,405 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:29:59,405 ERROR raise exception
2023-03-20 11:29:59,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,406 ERROR result = handle_locally()
2023-03-20 11:29:59,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,407 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:29:59,408 ERROR raise exception
2023-03-20 11:29:59,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,409 ERROR result = handle_locally()
2023-03-20 11:29:59,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,409 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:59,410 ERROR raise exception
2023-03-20 11:29:59,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,411 ERROR result = handle_locally()
2023-03-20 11:29:59,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,412 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:59,412 ERROR raise exception
2023-03-20 11:29:59,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,413 ERROR result = handle_locally()
2023-03-20 11:29:59,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,414 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:59,415 ERROR raise exception
2023-03-20 11:29:59,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,416 ERROR result = handle_locally()
2023-03-20 11:29:59,416 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:29:59,416 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:29:59,417 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:29:59,417 ERROR raise exception
2023-03-20 11:29:59,418 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:29:59,418 ERROR result = handle_locally()
2023-03-20 11:29:59,418 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:29:59,419 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:29:59,419 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:29:59,420 ERROR constraint_type_strict)
2023-03-20 11:29:59,420 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:29:59,420 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:29:59,421 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:29:59,421 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:29:59,422 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:29:59,486 INFO Welcome to the CDS
2023-03-20 11:29:59,486 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:29:59,593 INFO Request is queued
no data199902
2023-03-20 11:30:00,646 INFO Request is failed
2023-03-20 11:30:00,647 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:00,647 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:00,648 ERROR Traceback (most recent call last):
2023-03-20 11:30:00,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,648 ERROR result = handle_locally()
2023-03-20 11:30:00,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,649 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:00,650 ERROR raise exception
2023-03-20 11:30:00,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,651 ERROR result = handle_locally()
2023-03-20 11:30:00,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,652 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:00,652 ERROR raise exception
2023-03-20 11:30:00,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,653 ERROR result = handle_locally()
2023-03-20 11:30:00,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,654 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:00,655 ERROR raise exception
2023-03-20 11:30:00,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,656 ERROR result = handle_locally()
2023-03-20 11:30:00,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,656 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:00,657 ERROR raise exception
2023-03-20 11:30:00,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,658 ERROR result = handle_locally()
2023-03-20 11:30:00,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,659 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,659 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:00,659 ERROR raise exception
2023-03-20 11:30:00,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,660 ERROR result = handle_locally()
2023-03-20 11:30:00,661 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,661 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,661 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:00,662 ERROR raise exception
2023-03-20 11:30:00,662 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,663 ERROR result = handle_locally()
2023-03-20 11:30:00,663 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:00,663 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:00,664 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:00,664 ERROR raise exception
2023-03-20 11:30:00,665 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:00,665 ERROR result = handle_locally()
2023-03-20 11:30:00,665 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:00,666 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:00,666 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:00,667 ERROR constraint_type_strict)
2023-03-20 11:30:00,667 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:00,667 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:00,668 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:00,668 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:00,669 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:00,718 INFO Welcome to the CDS
2023-03-20 11:30:00,719 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:00,811 INFO Request is queued
no data199903
2023-03-20 11:30:01,864 INFO Request is running
2023-03-20 11:30:03,418 INFO Request is failed
2023-03-20 11:30:03,418 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:03,419 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:03,419 ERROR Traceback (most recent call last):
2023-03-20 11:30:03,420 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,420 ERROR result = handle_locally()
2023-03-20 11:30:03,421 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,421 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,421 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:03,422 ERROR raise exception
2023-03-20 11:30:03,422 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,423 ERROR result = handle_locally()
2023-03-20 11:30:03,423 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,426 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:03,428 ERROR raise exception
2023-03-20 11:30:03,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,429 ERROR result = handle_locally()
2023-03-20 11:30:03,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,430 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:03,431 ERROR raise exception
2023-03-20 11:30:03,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,431 ERROR result = handle_locally()
2023-03-20 11:30:03,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,432 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:03,433 ERROR raise exception
2023-03-20 11:30:03,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,434 ERROR result = handle_locally()
2023-03-20 11:30:03,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,435 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:03,435 ERROR raise exception
2023-03-20 11:30:03,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,436 ERROR result = handle_locally()
2023-03-20 11:30:03,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,437 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:03,438 ERROR raise exception
2023-03-20 11:30:03,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,439 ERROR result = handle_locally()
2023-03-20 11:30:03,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:03,439 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:03,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:03,440 ERROR raise exception
2023-03-20 11:30:03,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:03,441 ERROR result = handle_locally()
2023-03-20 11:30:03,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:03,442 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:03,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:03,443 ERROR constraint_type_strict)
2023-03-20 11:30:03,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:03,443 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:03,444 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:03,444 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:03,445 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:03,495 INFO Welcome to the CDS
2023-03-20 11:30:03,495 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data199904
2023-03-20 11:30:03,661 INFO Request is queued
2023-03-20 11:30:04,719 INFO Request is failed
2023-03-20 11:30:04,720 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:04,720 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:04,721 ERROR Traceback (most recent call last):
2023-03-20 11:30:04,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,722 ERROR result = handle_locally()
2023-03-20 11:30:04,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,722 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:04,723 ERROR raise exception
2023-03-20 11:30:04,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,724 ERROR result = handle_locally()
2023-03-20 11:30:04,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,725 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:04,726 ERROR raise exception
2023-03-20 11:30:04,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,726 ERROR result = handle_locally()
2023-03-20 11:30:04,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,727 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:04,729 ERROR raise exception
2023-03-20 11:30:04,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,730 ERROR result = handle_locally()
2023-03-20 11:30:04,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,732 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:04,732 ERROR raise exception
2023-03-20 11:30:04,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,733 ERROR result = handle_locally()
2023-03-20 11:30:04,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,734 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:04,735 ERROR raise exception
2023-03-20 11:30:04,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,735 ERROR result = handle_locally()
2023-03-20 11:30:04,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,736 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:04,737 ERROR raise exception
2023-03-20 11:30:04,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,738 ERROR result = handle_locally()
2023-03-20 11:30:04,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:04,739 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:04,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:04,739 ERROR raise exception
2023-03-20 11:30:04,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:04,740 ERROR result = handle_locally()
2023-03-20 11:30:04,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:04,741 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:04,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:04,742 ERROR constraint_type_strict)
2023-03-20 11:30:04,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:04,742 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:04,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:04,743 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:04,744 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:04,796 INFO Welcome to the CDS
2023-03-20 11:30:04,796 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:04,868 INFO Request is queued
no data199905
2023-03-20 11:30:05,931 INFO Request is failed
2023-03-20 11:30:05,931 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:05,932 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:05,932 ERROR Traceback (most recent call last):
2023-03-20 11:30:05,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,933 ERROR result = handle_locally()
2023-03-20 11:30:05,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,934 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:05,935 ERROR raise exception
2023-03-20 11:30:05,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,935 ERROR result = handle_locally()
2023-03-20 11:30:05,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,936 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:05,937 ERROR raise exception
2023-03-20 11:30:05,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,938 ERROR result = handle_locally()
2023-03-20 11:30:05,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,938 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:05,939 ERROR raise exception
2023-03-20 11:30:05,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,940 ERROR result = handle_locally()
2023-03-20 11:30:05,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,941 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:05,942 ERROR raise exception
2023-03-20 11:30:05,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,942 ERROR result = handle_locally()
2023-03-20 11:30:05,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,943 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:05,944 ERROR raise exception
2023-03-20 11:30:05,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,945 ERROR result = handle_locally()
2023-03-20 11:30:05,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,945 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:05,946 ERROR raise exception
2023-03-20 11:30:05,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,947 ERROR result = handle_locally()
2023-03-20 11:30:05,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:05,948 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:05,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:05,948 ERROR raise exception
2023-03-20 11:30:05,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:05,949 ERROR result = handle_locally()
2023-03-20 11:30:05,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:05,950 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:05,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:05,951 ERROR constraint_type_strict)
2023-03-20 11:30:05,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:05,952 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:05,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:05,952 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:05,953 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:06,006 INFO Welcome to the CDS
2023-03-20 11:30:06,007 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:06,084 INFO Request is queued
no data199906
2023-03-20 11:30:07,156 INFO Request is failed
2023-03-20 11:30:07,157 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:07,158 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:07,158 ERROR Traceback (most recent call last):
2023-03-20 11:30:07,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,159 ERROR result = handle_locally()
2023-03-20 11:30:07,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,160 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:07,160 ERROR raise exception
2023-03-20 11:30:07,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,161 ERROR result = handle_locally()
2023-03-20 11:30:07,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,162 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:07,163 ERROR raise exception
2023-03-20 11:30:07,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,163 ERROR result = handle_locally()
2023-03-20 11:30:07,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,164 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:07,165 ERROR raise exception
2023-03-20 11:30:07,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,166 ERROR result = handle_locally()
2023-03-20 11:30:07,166 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,166 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,167 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:07,167 ERROR raise exception
2023-03-20 11:30:07,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,168 ERROR result = handle_locally()
2023-03-20 11:30:07,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,169 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,169 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:07,170 ERROR raise exception
2023-03-20 11:30:07,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,170 ERROR result = handle_locally()
2023-03-20 11:30:07,171 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,171 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,171 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:07,172 ERROR raise exception
2023-03-20 11:30:07,172 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,173 ERROR result = handle_locally()
2023-03-20 11:30:07,173 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:07,173 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:07,174 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:07,174 ERROR raise exception
2023-03-20 11:30:07,175 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:07,175 ERROR result = handle_locally()
2023-03-20 11:30:07,175 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:07,176 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:07,176 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:07,176 ERROR constraint_type_strict)
2023-03-20 11:30:07,177 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:07,177 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:07,178 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:07,178 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:07,178 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:07,234 INFO Welcome to the CDS
2023-03-20 11:30:07,235 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:07,350 INFO Request is queued
no data199907
2023-03-20 11:30:08,402 INFO Request is running
2023-03-20 11:30:09,957 INFO Request is failed
2023-03-20 11:30:09,958 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:09,959 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:09,959 ERROR Traceback (most recent call last):
2023-03-20 11:30:09,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,960 ERROR result = handle_locally()
2023-03-20 11:30:09,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,961 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:09,961 ERROR raise exception
2023-03-20 11:30:09,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,962 ERROR result = handle_locally()
2023-03-20 11:30:09,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,963 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:09,964 ERROR raise exception
2023-03-20 11:30:09,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,964 ERROR result = handle_locally()
2023-03-20 11:30:09,965 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,965 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,966 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:09,966 ERROR raise exception
2023-03-20 11:30:09,966 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,967 ERROR result = handle_locally()
2023-03-20 11:30:09,967 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,968 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,968 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:09,968 ERROR raise exception
2023-03-20 11:30:09,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,969 ERROR result = handle_locally()
2023-03-20 11:30:09,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,970 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,970 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:09,971 ERROR raise exception
2023-03-20 11:30:09,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,971 ERROR result = handle_locally()
2023-03-20 11:30:09,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,972 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:09,973 ERROR raise exception
2023-03-20 11:30:09,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,974 ERROR result = handle_locally()
2023-03-20 11:30:09,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:09,974 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:09,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:09,975 ERROR raise exception
2023-03-20 11:30:09,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:09,976 ERROR result = handle_locally()
2023-03-20 11:30:09,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:09,977 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:09,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:09,978 ERROR constraint_type_strict)
2023-03-20 11:30:09,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:09,978 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:09,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:09,979 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:09,980 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:10,030 INFO Welcome to the CDS
2023-03-20 11:30:10,031 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:10,142 INFO Request is queued
no data199908
2023-03-20 11:30:11,196 INFO Request is failed
2023-03-20 11:30:11,196 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:11,197 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:11,197 ERROR Traceback (most recent call last):
2023-03-20 11:30:11,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,198 ERROR result = handle_locally()
2023-03-20 11:30:11,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,199 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:11,200 ERROR raise exception
2023-03-20 11:30:11,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,200 ERROR result = handle_locally()
2023-03-20 11:30:11,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,201 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:11,202 ERROR raise exception
2023-03-20 11:30:11,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,203 ERROR result = handle_locally()
2023-03-20 11:30:11,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,203 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:11,205 ERROR raise exception
2023-03-20 11:30:11,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,206 ERROR result = handle_locally()
2023-03-20 11:30:11,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,206 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:11,207 ERROR raise exception
2023-03-20 11:30:11,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,208 ERROR result = handle_locally()
2023-03-20 11:30:11,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,209 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:11,209 ERROR raise exception
2023-03-20 11:30:11,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,210 ERROR result = handle_locally()
2023-03-20 11:30:11,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,211 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:11,212 ERROR raise exception
2023-03-20 11:30:11,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,212 ERROR result = handle_locally()
2023-03-20 11:30:11,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:11,213 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:11,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:11,214 ERROR raise exception
2023-03-20 11:30:11,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:11,215 ERROR result = handle_locally()
2023-03-20 11:30:11,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:11,215 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:11,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:11,216 ERROR constraint_type_strict)
2023-03-20 11:30:11,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:11,217 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:11,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:11,218 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:11,218 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:11,267 INFO Welcome to the CDS
2023-03-20 11:30:11,268 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:11,368 INFO Request is queued
no data199909
2023-03-20 11:30:12,431 INFO Request is running
2023-03-20 11:30:14,003 INFO Request is failed
2023-03-20 11:30:14,004 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:14,004 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:14,005 ERROR Traceback (most recent call last):
2023-03-20 11:30:14,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,005 ERROR result = handle_locally()
2023-03-20 11:30:14,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,006 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:14,007 ERROR raise exception
2023-03-20 11:30:14,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,008 ERROR result = handle_locally()
2023-03-20 11:30:14,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,008 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:14,009 ERROR raise exception
2023-03-20 11:30:14,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,010 ERROR result = handle_locally()
2023-03-20 11:30:14,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,011 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:14,012 ERROR raise exception
2023-03-20 11:30:14,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,012 ERROR result = handle_locally()
2023-03-20 11:30:14,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,013 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:14,014 ERROR raise exception
2023-03-20 11:30:14,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,015 ERROR result = handle_locally()
2023-03-20 11:30:14,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,015 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:14,016 ERROR raise exception
2023-03-20 11:30:14,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,017 ERROR result = handle_locally()
2023-03-20 11:30:14,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,018 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:14,018 ERROR raise exception
2023-03-20 11:30:14,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,019 ERROR result = handle_locally()
2023-03-20 11:30:14,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:14,020 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:14,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:14,021 ERROR raise exception
2023-03-20 11:30:14,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:14,022 ERROR result = handle_locally()
2023-03-20 11:30:14,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:14,022 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:14,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:14,023 ERROR constraint_type_strict)
2023-03-20 11:30:14,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:14,024 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:14,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:14,025 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:14,025 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:14,094 INFO Welcome to the CDS
2023-03-20 11:30:14,095 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:14,226 INFO Request is queued
no data199910
2023-03-20 11:30:15,280 INFO Request is failed
2023-03-20 11:30:15,280 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:15,281 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:15,281 ERROR Traceback (most recent call last):
2023-03-20 11:30:15,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,282 ERROR result = handle_locally()
2023-03-20 11:30:15,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:15,283 ERROR raise exception
2023-03-20 11:30:15,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,284 ERROR result = handle_locally()
2023-03-20 11:30:15,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:15,286 ERROR raise exception
2023-03-20 11:30:15,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,287 ERROR result = handle_locally()
2023-03-20 11:30:15,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:15,288 ERROR raise exception
2023-03-20 11:30:15,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,289 ERROR result = handle_locally()
2023-03-20 11:30:15,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,290 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:15,290 ERROR raise exception
2023-03-20 11:30:15,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,291 ERROR result = handle_locally()
2023-03-20 11:30:15,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,292 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:15,292 ERROR raise exception
2023-03-20 11:30:15,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,293 ERROR result = handle_locally()
2023-03-20 11:30:15,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,294 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:15,295 ERROR raise exception
2023-03-20 11:30:15,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,296 ERROR result = handle_locally()
2023-03-20 11:30:15,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:15,296 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:15,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:15,297 ERROR raise exception
2023-03-20 11:30:15,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:15,298 ERROR result = handle_locally()
2023-03-20 11:30:15,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:15,299 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:15,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:15,299 ERROR constraint_type_strict)
2023-03-20 11:30:15,300 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:15,300 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:15,301 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:15,301 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:15,301 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:15,351 INFO Welcome to the CDS
2023-03-20 11:30:15,351 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:15,435 INFO Request is queued
no data199911
2023-03-20 11:30:16,489 INFO Request is failed
2023-03-20 11:30:16,490 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:16,490 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:16,491 ERROR Traceback (most recent call last):
2023-03-20 11:30:16,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,492 ERROR result = handle_locally()
2023-03-20 11:30:16,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,492 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:16,493 ERROR raise exception
2023-03-20 11:30:16,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,494 ERROR result = handle_locally()
2023-03-20 11:30:16,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,495 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:16,496 ERROR raise exception
2023-03-20 11:30:16,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,496 ERROR result = handle_locally()
2023-03-20 11:30:16,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,497 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:16,498 ERROR raise exception
2023-03-20 11:30:16,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,499 ERROR result = handle_locally()
2023-03-20 11:30:16,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,500 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:16,500 ERROR raise exception
2023-03-20 11:30:16,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,501 ERROR result = handle_locally()
2023-03-20 11:30:16,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,502 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:16,505 ERROR raise exception
2023-03-20 11:30:16,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,506 ERROR result = handle_locally()
2023-03-20 11:30:16,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,507 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:16,508 ERROR raise exception
2023-03-20 11:30:16,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,508 ERROR result = handle_locally()
2023-03-20 11:30:16,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:16,509 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:16,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:16,510 ERROR raise exception
2023-03-20 11:30:16,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:16,511 ERROR result = handle_locally()
2023-03-20 11:30:16,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:16,512 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:16,512 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:16,512 ERROR constraint_type_strict)
2023-03-20 11:30:16,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:16,513 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:16,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:16,514 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:16,514 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:16,570 INFO Welcome to the CDS
2023-03-20 11:30:16,570 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:16,648 INFO Request is queued
no data199912
2023-03-20 11:30:17,705 INFO Request is failed
2023-03-20 11:30:17,706 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:17,707 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:17,707 ERROR Traceback (most recent call last):
2023-03-20 11:30:17,708 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,708 ERROR result = handle_locally()
2023-03-20 11:30:17,708 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,709 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,709 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:17,710 ERROR raise exception
2023-03-20 11:30:17,710 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,710 ERROR result = handle_locally()
2023-03-20 11:30:17,711 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,711 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:17,712 ERROR raise exception
2023-03-20 11:30:17,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,713 ERROR result = handle_locally()
2023-03-20 11:30:17,713 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,714 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:17,714 ERROR raise exception
2023-03-20 11:30:17,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,715 ERROR result = handle_locally()
2023-03-20 11:30:17,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,716 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:17,717 ERROR raise exception
2023-03-20 11:30:17,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,718 ERROR result = handle_locally()
2023-03-20 11:30:17,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,718 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:17,719 ERROR raise exception
2023-03-20 11:30:17,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,720 ERROR result = handle_locally()
2023-03-20 11:30:17,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,721 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:17,722 ERROR raise exception
2023-03-20 11:30:17,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,722 ERROR result = handle_locally()
2023-03-20 11:30:17,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:17,723 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:17,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:17,724 ERROR raise exception
2023-03-20 11:30:17,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:17,725 ERROR result = handle_locally()
2023-03-20 11:30:17,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:17,725 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:17,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:17,727 ERROR constraint_type_strict)
2023-03-20 11:30:17,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:17,731 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:17,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:17,732 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:17,732 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:17,781 INFO Welcome to the CDS
2023-03-20 11:30:17,781 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:17,889 INFO Request is queued
no data200001
2023-03-20 11:30:18,943 INFO Request is failed
2023-03-20 11:30:18,943 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:18,944 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:18,944 ERROR Traceback (most recent call last):
2023-03-20 11:30:18,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,945 ERROR result = handle_locally()
2023-03-20 11:30:18,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,946 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:18,947 ERROR raise exception
2023-03-20 11:30:18,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,947 ERROR result = handle_locally()
2023-03-20 11:30:18,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,948 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:18,949 ERROR raise exception
2023-03-20 11:30:18,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,950 ERROR result = handle_locally()
2023-03-20 11:30:18,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,950 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:18,951 ERROR raise exception
2023-03-20 11:30:18,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,952 ERROR result = handle_locally()
2023-03-20 11:30:18,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,953 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:18,954 ERROR raise exception
2023-03-20 11:30:18,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,954 ERROR result = handle_locally()
2023-03-20 11:30:18,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,955 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:18,956 ERROR raise exception
2023-03-20 11:30:18,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,957 ERROR result = handle_locally()
2023-03-20 11:30:18,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,957 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:18,958 ERROR raise exception
2023-03-20 11:30:18,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,959 ERROR result = handle_locally()
2023-03-20 11:30:18,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:18,960 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:18,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:18,961 ERROR raise exception
2023-03-20 11:30:18,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:18,961 ERROR result = handle_locally()
2023-03-20 11:30:18,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:18,962 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:18,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:18,963 ERROR constraint_type_strict)
2023-03-20 11:30:18,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:18,964 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:18,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:18,965 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:18,965 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:19,015 INFO Welcome to the CDS
2023-03-20 11:30:19,016 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:19,096 INFO Request is queued
no data200002
2023-03-20 11:30:20,163 INFO Request is running
2023-03-20 11:30:21,725 INFO Request is failed
2023-03-20 11:30:21,726 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:21,727 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:21,727 ERROR Traceback (most recent call last):
2023-03-20 11:30:21,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,728 ERROR result = handle_locally()
2023-03-20 11:30:21,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,728 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:21,729 ERROR raise exception
2023-03-20 11:30:21,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,730 ERROR result = handle_locally()
2023-03-20 11:30:21,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,731 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:21,732 ERROR raise exception
2023-03-20 11:30:21,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,732 ERROR result = handle_locally()
2023-03-20 11:30:21,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,733 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:21,734 ERROR raise exception
2023-03-20 11:30:21,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,735 ERROR result = handle_locally()
2023-03-20 11:30:21,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,735 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:21,736 ERROR raise exception
2023-03-20 11:30:21,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,737 ERROR result = handle_locally()
2023-03-20 11:30:21,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,738 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:21,738 ERROR raise exception
2023-03-20 11:30:21,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,739 ERROR result = handle_locally()
2023-03-20 11:30:21,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,740 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:21,741 ERROR raise exception
2023-03-20 11:30:21,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,741 ERROR result = handle_locally()
2023-03-20 11:30:21,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:21,742 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:21,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:21,743 ERROR raise exception
2023-03-20 11:30:21,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:21,744 ERROR result = handle_locally()
2023-03-20 11:30:21,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:21,744 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:21,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:21,745 ERROR constraint_type_strict)
2023-03-20 11:30:21,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:21,746 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:21,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:21,747 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:21,747 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:21,796 INFO Welcome to the CDS
2023-03-20 11:30:21,797 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:21,924 INFO Request is queued
no data200003
2023-03-20 11:30:22,977 INFO Request is failed
2023-03-20 11:30:22,978 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:22,978 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:22,979 ERROR Traceback (most recent call last):
2023-03-20 11:30:22,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,979 ERROR result = handle_locally()
2023-03-20 11:30:22,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,980 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:22,981 ERROR raise exception
2023-03-20 11:30:22,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,982 ERROR result = handle_locally()
2023-03-20 11:30:22,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,982 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:22,983 ERROR raise exception
2023-03-20 11:30:22,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,984 ERROR result = handle_locally()
2023-03-20 11:30:22,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,985 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:22,985 ERROR raise exception
2023-03-20 11:30:22,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,986 ERROR result = handle_locally()
2023-03-20 11:30:22,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,987 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:22,987 ERROR raise exception
2023-03-20 11:30:22,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,988 ERROR result = handle_locally()
2023-03-20 11:30:22,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,989 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:22,990 ERROR raise exception
2023-03-20 11:30:22,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,990 ERROR result = handle_locally()
2023-03-20 11:30:22,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,991 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:22,992 ERROR raise exception
2023-03-20 11:30:22,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,992 ERROR result = handle_locally()
2023-03-20 11:30:22,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:22,993 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:22,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:22,994 ERROR raise exception
2023-03-20 11:30:22,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:22,995 ERROR result = handle_locally()
2023-03-20 11:30:22,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:22,995 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:22,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:22,996 ERROR constraint_type_strict)
2023-03-20 11:30:22,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:22,997 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:22,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:22,998 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:22,998 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:23,048 INFO Welcome to the CDS
2023-03-20 11:30:23,048 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:23,170 INFO Request is queued
no data200004
2023-03-20 11:30:24,223 INFO Request is failed
2023-03-20 11:30:24,224 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:24,225 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:24,225 ERROR Traceback (most recent call last):
2023-03-20 11:30:24,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,226 ERROR result = handle_locally()
2023-03-20 11:30:24,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,226 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:24,227 ERROR raise exception
2023-03-20 11:30:24,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,228 ERROR result = handle_locally()
2023-03-20 11:30:24,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,228 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:24,229 ERROR raise exception
2023-03-20 11:30:24,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,230 ERROR result = handle_locally()
2023-03-20 11:30:24,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,231 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:24,231 ERROR raise exception
2023-03-20 11:30:24,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,232 ERROR result = handle_locally()
2023-03-20 11:30:24,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,233 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:24,233 ERROR raise exception
2023-03-20 11:30:24,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,234 ERROR result = handle_locally()
2023-03-20 11:30:24,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,235 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:24,235 ERROR raise exception
2023-03-20 11:30:24,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,236 ERROR result = handle_locally()
2023-03-20 11:30:24,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,237 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:24,237 ERROR raise exception
2023-03-20 11:30:24,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,238 ERROR result = handle_locally()
2023-03-20 11:30:24,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:24,239 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:24,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:24,239 ERROR raise exception
2023-03-20 11:30:24,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:24,240 ERROR result = handle_locally()
2023-03-20 11:30:24,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:24,241 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:24,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:24,241 ERROR constraint_type_strict)
2023-03-20 11:30:24,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:24,242 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:24,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:24,243 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:24,243 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:24,296 INFO Welcome to the CDS
2023-03-20 11:30:24,296 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200005
2023-03-20 11:30:24,746 INFO Request is queued
2023-03-20 11:30:25,829 INFO Request is failed
2023-03-20 11:30:25,829 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:25,830 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:25,830 ERROR Traceback (most recent call last):
2023-03-20 11:30:25,831 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,831 ERROR result = handle_locally()
2023-03-20 11:30:25,832 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,832 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,832 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:25,833 ERROR raise exception
2023-03-20 11:30:25,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,833 ERROR result = handle_locally()
2023-03-20 11:30:25,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,834 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:25,835 ERROR raise exception
2023-03-20 11:30:25,835 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,836 ERROR result = handle_locally()
2023-03-20 11:30:25,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,836 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:25,837 ERROR raise exception
2023-03-20 11:30:25,838 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,838 ERROR result = handle_locally()
2023-03-20 11:30:25,838 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,839 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:25,839 ERROR raise exception
2023-03-20 11:30:25,840 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,840 ERROR result = handle_locally()
2023-03-20 11:30:25,840 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,841 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:25,842 ERROR raise exception
2023-03-20 11:30:25,842 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,842 ERROR result = handle_locally()
2023-03-20 11:30:25,843 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,843 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,843 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:25,844 ERROR raise exception
2023-03-20 11:30:25,844 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,844 ERROR result = handle_locally()
2023-03-20 11:30:25,845 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:25,845 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:25,845 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:25,846 ERROR raise exception
2023-03-20 11:30:25,846 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:25,847 ERROR result = handle_locally()
2023-03-20 11:30:25,847 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:25,847 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:25,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:25,848 ERROR constraint_type_strict)
2023-03-20 11:30:25,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:25,849 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:25,849 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:25,849 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:25,850 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:25,928 INFO Welcome to the CDS
2023-03-20 11:30:25,928 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:26,014 INFO Request is queued
no data200006
2023-03-20 11:30:27,075 INFO Request is failed
2023-03-20 11:30:27,076 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:27,076 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:27,076 ERROR Traceback (most recent call last):
2023-03-20 11:30:27,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,077 ERROR result = handle_locally()
2023-03-20 11:30:27,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,078 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,078 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:27,079 ERROR raise exception
2023-03-20 11:30:27,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,079 ERROR result = handle_locally()
2023-03-20 11:30:27,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,080 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:27,081 ERROR raise exception
2023-03-20 11:30:27,081 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,081 ERROR result = handle_locally()
2023-03-20 11:30:27,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,082 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:27,083 ERROR raise exception
2023-03-20 11:30:27,083 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,083 ERROR result = handle_locally()
2023-03-20 11:30:27,084 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,084 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:27,085 ERROR raise exception
2023-03-20 11:30:27,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,086 ERROR result = handle_locally()
2023-03-20 11:30:27,086 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,086 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:27,087 ERROR raise exception
2023-03-20 11:30:27,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,088 ERROR result = handle_locally()
2023-03-20 11:30:27,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,088 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:27,089 ERROR raise exception
2023-03-20 11:30:27,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,090 ERROR result = handle_locally()
2023-03-20 11:30:27,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:27,090 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:27,091 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:27,091 ERROR raise exception
2023-03-20 11:30:27,092 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:27,092 ERROR result = handle_locally()
2023-03-20 11:30:27,092 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:27,093 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:27,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:27,093 ERROR constraint_type_strict)
2023-03-20 11:30:27,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:27,094 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:27,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:27,095 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:27,095 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:27,154 INFO Welcome to the CDS
2023-03-20 11:30:27,154 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:27,261 INFO Request is queued
no data200007
2023-03-20 11:30:28,325 INFO Request is failed
2023-03-20 11:30:28,326 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:28,326 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:28,327 ERROR Traceback (most recent call last):
2023-03-20 11:30:28,327 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,327 ERROR result = handle_locally()
2023-03-20 11:30:28,328 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,328 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:28,329 ERROR raise exception
2023-03-20 11:30:28,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,330 ERROR result = handle_locally()
2023-03-20 11:30:28,330 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,330 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:28,331 ERROR raise exception
2023-03-20 11:30:28,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,332 ERROR result = handle_locally()
2023-03-20 11:30:28,332 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,332 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,333 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:28,333 ERROR raise exception
2023-03-20 11:30:28,334 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,334 ERROR result = handle_locally()
2023-03-20 11:30:28,334 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,335 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,335 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:28,335 ERROR raise exception
2023-03-20 11:30:28,336 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,336 ERROR result = handle_locally()
2023-03-20 11:30:28,336 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,337 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,337 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:28,337 ERROR raise exception
2023-03-20 11:30:28,338 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,338 ERROR result = handle_locally()
2023-03-20 11:30:28,338 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,339 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,339 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:28,339 ERROR raise exception
2023-03-20 11:30:28,340 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,340 ERROR result = handle_locally()
2023-03-20 11:30:28,341 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:28,341 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:28,341 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:28,342 ERROR raise exception
2023-03-20 11:30:28,342 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:28,342 ERROR result = handle_locally()
2023-03-20 11:30:28,343 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:28,343 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:28,343 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:28,344 ERROR constraint_type_strict)
2023-03-20 11:30:28,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:28,344 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:28,345 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:28,345 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:28,345 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:28,401 INFO Welcome to the CDS
2023-03-20 11:30:28,402 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:28,500 INFO Request is queued
no data200008
2023-03-20 11:30:29,561 INFO Request is failed
2023-03-20 11:30:29,562 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:29,562 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:29,563 ERROR Traceback (most recent call last):
2023-03-20 11:30:29,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,564 ERROR result = handle_locally()
2023-03-20 11:30:29,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,564 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:29,565 ERROR raise exception
2023-03-20 11:30:29,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,566 ERROR result = handle_locally()
2023-03-20 11:30:29,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,566 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:29,567 ERROR raise exception
2023-03-20 11:30:29,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,568 ERROR result = handle_locally()
2023-03-20 11:30:29,568 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,569 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:29,569 ERROR raise exception
2023-03-20 11:30:29,570 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,570 ERROR result = handle_locally()
2023-03-20 11:30:29,570 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,571 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:29,571 ERROR raise exception
2023-03-20 11:30:29,572 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,572 ERROR result = handle_locally()
2023-03-20 11:30:29,572 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,573 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,573 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:29,573 ERROR raise exception
2023-03-20 11:30:29,574 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,574 ERROR result = handle_locally()
2023-03-20 11:30:29,574 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,575 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,575 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:29,575 ERROR raise exception
2023-03-20 11:30:29,576 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,576 ERROR result = handle_locally()
2023-03-20 11:30:29,577 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:29,577 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:29,577 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:29,578 ERROR raise exception
2023-03-20 11:30:29,578 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:29,578 ERROR result = handle_locally()
2023-03-20 11:30:29,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:29,579 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:29,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:29,580 ERROR constraint_type_strict)
2023-03-20 11:30:29,580 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:29,580 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:29,581 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:29,581 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:29,581 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:29,638 INFO Welcome to the CDS
2023-03-20 11:30:29,639 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:29,763 INFO Request is queued
no data200009
2023-03-20 11:30:30,822 INFO Request is failed
2023-03-20 11:30:30,823 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:30,823 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:30,824 ERROR Traceback (most recent call last):
2023-03-20 11:30:30,824 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,824 ERROR result = handle_locally()
2023-03-20 11:30:30,825 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,825 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,826 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:30,826 ERROR raise exception
2023-03-20 11:30:30,826 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,827 ERROR result = handle_locally()
2023-03-20 11:30:30,827 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,827 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,828 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:30,828 ERROR raise exception
2023-03-20 11:30:30,828 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,829 ERROR result = handle_locally()
2023-03-20 11:30:30,829 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,829 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,830 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:30,830 ERROR raise exception
2023-03-20 11:30:30,830 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,831 ERROR result = handle_locally()
2023-03-20 11:30:30,831 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,832 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,832 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:30,832 ERROR raise exception
2023-03-20 11:30:30,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,833 ERROR result = handle_locally()
2023-03-20 11:30:30,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,834 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:30,834 ERROR raise exception
2023-03-20 11:30:30,835 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,835 ERROR result = handle_locally()
2023-03-20 11:30:30,835 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,836 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:30,836 ERROR raise exception
2023-03-20 11:30:30,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,837 ERROR result = handle_locally()
2023-03-20 11:30:30,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:30,838 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:30,838 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:30,838 ERROR raise exception
2023-03-20 11:30:30,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:30,839 ERROR result = handle_locally()
2023-03-20 11:30:30,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:30,840 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:30,840 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:30,841 ERROR constraint_type_strict)
2023-03-20 11:30:30,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:30,841 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:30,842 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:30,842 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:30,842 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:30,900 INFO Welcome to the CDS
2023-03-20 11:30:30,900 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200010
2023-03-20 11:30:31,046 INFO Request is queued
2023-03-20 11:30:32,114 INFO Request is failed
2023-03-20 11:30:32,114 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:32,115 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:32,115 ERROR Traceback (most recent call last):
2023-03-20 11:30:32,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,116 ERROR result = handle_locally()
2023-03-20 11:30:32,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,117 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:32,117 ERROR raise exception
2023-03-20 11:30:32,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,118 ERROR result = handle_locally()
2023-03-20 11:30:32,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,119 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:32,119 ERROR raise exception
2023-03-20 11:30:32,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,120 ERROR result = handle_locally()
2023-03-20 11:30:32,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,121 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:32,122 ERROR raise exception
2023-03-20 11:30:32,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,122 ERROR result = handle_locally()
2023-03-20 11:30:32,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,123 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:32,124 ERROR raise exception
2023-03-20 11:30:32,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,124 ERROR result = handle_locally()
2023-03-20 11:30:32,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,125 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:32,126 ERROR raise exception
2023-03-20 11:30:32,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,127 ERROR result = handle_locally()
2023-03-20 11:30:32,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,127 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:32,128 ERROR raise exception
2023-03-20 11:30:32,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,129 ERROR result = handle_locally()
2023-03-20 11:30:32,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:32,129 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:32,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:32,130 ERROR raise exception
2023-03-20 11:30:32,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:32,131 ERROR result = handle_locally()
2023-03-20 11:30:32,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:32,131 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:32,132 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:32,132 ERROR constraint_type_strict)
2023-03-20 11:30:32,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:32,133 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:32,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:32,134 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:32,134 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:32,200 INFO Welcome to the CDS
2023-03-20 11:30:32,200 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:32,296 INFO Request is queued
no data200011
2023-03-20 11:30:33,377 INFO Request is failed
2023-03-20 11:30:33,378 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:33,378 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:33,378 ERROR Traceback (most recent call last):
2023-03-20 11:30:33,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,379 ERROR result = handle_locally()
2023-03-20 11:30:33,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:33,381 ERROR raise exception
2023-03-20 11:30:33,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,381 ERROR result = handle_locally()
2023-03-20 11:30:33,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:33,383 ERROR raise exception
2023-03-20 11:30:33,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,383 ERROR result = handle_locally()
2023-03-20 11:30:33,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,384 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:33,385 ERROR raise exception
2023-03-20 11:30:33,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,386 ERROR result = handle_locally()
2023-03-20 11:30:33,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,386 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:33,387 ERROR raise exception
2023-03-20 11:30:33,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,388 ERROR result = handle_locally()
2023-03-20 11:30:33,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,388 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,389 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:33,389 ERROR raise exception
2023-03-20 11:30:33,390 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,390 ERROR result = handle_locally()
2023-03-20 11:30:33,390 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,391 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,391 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:33,391 ERROR raise exception
2023-03-20 11:30:33,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,392 ERROR result = handle_locally()
2023-03-20 11:30:33,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:33,393 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:33,393 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:33,393 ERROR raise exception
2023-03-20 11:30:33,394 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:33,394 ERROR result = handle_locally()
2023-03-20 11:30:33,394 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:33,395 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:33,395 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:33,395 ERROR constraint_type_strict)
2023-03-20 11:30:33,396 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:33,396 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:33,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:33,397 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:33,397 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:33,460 INFO Welcome to the CDS
2023-03-20 11:30:33,461 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:33,599 INFO Request is queued
no data200012
2023-03-20 11:30:34,686 INFO Request is failed
2023-03-20 11:30:34,687 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:34,687 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:34,688 ERROR Traceback (most recent call last):
2023-03-20 11:30:34,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,689 ERROR result = handle_locally()
2023-03-20 11:30:34,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,689 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:34,690 ERROR raise exception
2023-03-20 11:30:34,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,691 ERROR result = handle_locally()
2023-03-20 11:30:34,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,692 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:34,693 ERROR raise exception
2023-03-20 11:30:34,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,693 ERROR result = handle_locally()
2023-03-20 11:30:34,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,694 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:34,695 ERROR raise exception
2023-03-20 11:30:34,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,696 ERROR result = handle_locally()
2023-03-20 11:30:34,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,696 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:34,697 ERROR raise exception
2023-03-20 11:30:34,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,698 ERROR result = handle_locally()
2023-03-20 11:30:34,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,699 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:34,699 ERROR raise exception
2023-03-20 11:30:34,700 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,700 ERROR result = handle_locally()
2023-03-20 11:30:34,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,701 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:34,702 ERROR raise exception
2023-03-20 11:30:34,702 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,702 ERROR result = handle_locally()
2023-03-20 11:30:34,703 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:34,703 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:34,704 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:34,704 ERROR raise exception
2023-03-20 11:30:34,704 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:34,705 ERROR result = handle_locally()
2023-03-20 11:30:34,705 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:34,706 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:34,706 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:34,706 ERROR constraint_type_strict)
2023-03-20 11:30:34,707 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:34,707 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:34,708 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:34,708 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:34,708 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:34,780 INFO Welcome to the CDS
2023-03-20 11:30:34,781 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:34,909 INFO Request is queued
no data200101
2023-03-20 11:30:35,986 INFO Request is failed
2023-03-20 11:30:35,987 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:35,987 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:35,988 ERROR Traceback (most recent call last):
2023-03-20 11:30:35,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:35,989 ERROR result = handle_locally()
2023-03-20 11:30:35,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:35,989 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:35,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:35,990 ERROR raise exception
2023-03-20 11:30:35,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:35,991 ERROR result = handle_locally()
2023-03-20 11:30:35,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:35,992 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:35,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:35,993 ERROR raise exception
2023-03-20 11:30:35,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:35,993 ERROR result = handle_locally()
2023-03-20 11:30:35,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:35,994 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:35,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:35,995 ERROR raise exception
2023-03-20 11:30:35,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:35,996 ERROR result = handle_locally()
2023-03-20 11:30:35,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:35,996 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:35,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:35,997 ERROR raise exception
2023-03-20 11:30:35,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:35,998 ERROR result = handle_locally()
2023-03-20 11:30:35,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:35,999 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:35,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:35,999 ERROR raise exception
2023-03-20 11:30:36,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:36,000 ERROR result = handle_locally()
2023-03-20 11:30:36,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:36,001 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:36,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:36,002 ERROR raise exception
2023-03-20 11:30:36,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:36,003 ERROR result = handle_locally()
2023-03-20 11:30:36,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:36,003 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:36,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:36,004 ERROR raise exception
2023-03-20 11:30:36,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:36,005 ERROR result = handle_locally()
2023-03-20 11:30:36,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:36,006 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:36,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:36,007 ERROR constraint_type_strict)
2023-03-20 11:30:36,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:36,007 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:36,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:36,008 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:36,008 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:36,087 INFO Welcome to the CDS
2023-03-20 11:30:36,087 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200102
2023-03-20 11:30:36,216 INFO Request is queued
2023-03-20 11:30:37,276 INFO Request is failed
2023-03-20 11:30:37,277 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:37,278 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:37,278 ERROR Traceback (most recent call last):
2023-03-20 11:30:37,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,279 ERROR result = handle_locally()
2023-03-20 11:30:37,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,280 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:37,281 ERROR raise exception
2023-03-20 11:30:37,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,281 ERROR result = handle_locally()
2023-03-20 11:30:37,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,282 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:37,283 ERROR raise exception
2023-03-20 11:30:37,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,284 ERROR result = handle_locally()
2023-03-20 11:30:37,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,284 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:37,285 ERROR raise exception
2023-03-20 11:30:37,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,286 ERROR result = handle_locally()
2023-03-20 11:30:37,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:37,288 ERROR raise exception
2023-03-20 11:30:37,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,288 ERROR result = handle_locally()
2023-03-20 11:30:37,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,289 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:37,290 ERROR raise exception
2023-03-20 11:30:37,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,291 ERROR result = handle_locally()
2023-03-20 11:30:37,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,291 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:37,292 ERROR raise exception
2023-03-20 11:30:37,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,293 ERROR result = handle_locally()
2023-03-20 11:30:37,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:37,294 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:37,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:37,294 ERROR raise exception
2023-03-20 11:30:37,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:37,295 ERROR result = handle_locally()
2023-03-20 11:30:37,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:37,296 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:37,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:37,297 ERROR constraint_type_strict)
2023-03-20 11:30:37,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:37,298 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:37,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:37,298 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:37,299 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:37,355 INFO Welcome to the CDS
2023-03-20 11:30:37,356 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200103
2023-03-20 11:30:37,521 INFO Request is queued
2023-03-20 11:30:38,603 INFO Request is failed
2023-03-20 11:30:38,603 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:38,604 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:38,604 ERROR Traceback (most recent call last):
2023-03-20 11:30:38,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,605 ERROR result = handle_locally()
2023-03-20 11:30:38,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,606 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:38,607 ERROR raise exception
2023-03-20 11:30:38,607 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,608 ERROR result = handle_locally()
2023-03-20 11:30:38,608 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,608 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:38,609 ERROR raise exception
2023-03-20 11:30:38,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,610 ERROR result = handle_locally()
2023-03-20 11:30:38,610 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,611 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,611 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:38,611 ERROR raise exception
2023-03-20 11:30:38,612 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,612 ERROR result = handle_locally()
2023-03-20 11:30:38,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,613 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:38,614 ERROR raise exception
2023-03-20 11:30:38,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,614 ERROR result = handle_locally()
2023-03-20 11:30:38,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,615 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:38,616 ERROR raise exception
2023-03-20 11:30:38,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,617 ERROR result = handle_locally()
2023-03-20 11:30:38,617 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,618 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,618 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:38,618 ERROR raise exception
2023-03-20 11:30:38,619 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,619 ERROR result = handle_locally()
2023-03-20 11:30:38,619 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:38,620 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:38,620 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:38,621 ERROR raise exception
2023-03-20 11:30:38,621 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:38,621 ERROR result = handle_locally()
2023-03-20 11:30:38,622 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:38,622 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:38,622 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:38,623 ERROR constraint_type_strict)
2023-03-20 11:30:38,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:38,624 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:38,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:38,624 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:38,625 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:38,685 INFO Welcome to the CDS
2023-03-20 11:30:38,685 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200104
2023-03-20 11:30:38,862 INFO Request is queued
2023-03-20 11:30:39,939 INFO Request is failed
2023-03-20 11:30:39,940 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:39,940 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:39,941 ERROR Traceback (most recent call last):
2023-03-20 11:30:39,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,942 ERROR result = handle_locally()
2023-03-20 11:30:39,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,942 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:39,943 ERROR raise exception
2023-03-20 11:30:39,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,944 ERROR result = handle_locally()
2023-03-20 11:30:39,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,945 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:39,945 ERROR raise exception
2023-03-20 11:30:39,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,946 ERROR result = handle_locally()
2023-03-20 11:30:39,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,947 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:39,947 ERROR raise exception
2023-03-20 11:30:39,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,948 ERROR result = handle_locally()
2023-03-20 11:30:39,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,949 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:39,949 ERROR raise exception
2023-03-20 11:30:39,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,950 ERROR result = handle_locally()
2023-03-20 11:30:39,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,951 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:39,951 ERROR raise exception
2023-03-20 11:30:39,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,952 ERROR result = handle_locally()
2023-03-20 11:30:39,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,953 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:39,954 ERROR raise exception
2023-03-20 11:30:39,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,954 ERROR result = handle_locally()
2023-03-20 11:30:39,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:39,955 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:39,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:39,956 ERROR raise exception
2023-03-20 11:30:39,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:39,956 ERROR result = handle_locally()
2023-03-20 11:30:39,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:39,957 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:39,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:39,958 ERROR constraint_type_strict)
2023-03-20 11:30:39,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:39,959 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:39,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:39,959 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:39,960 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:40,021 INFO Welcome to the CDS
2023-03-20 11:30:40,021 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:40,125 INFO Request is queued
no data200105
2023-03-20 11:30:41,206 INFO Request is failed
2023-03-20 11:30:41,207 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:41,208 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:41,208 ERROR Traceback (most recent call last):
2023-03-20 11:30:41,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,209 ERROR result = handle_locally()
2023-03-20 11:30:41,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,209 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:41,210 ERROR raise exception
2023-03-20 11:30:41,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,211 ERROR result = handle_locally()
2023-03-20 11:30:41,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,212 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:41,212 ERROR raise exception
2023-03-20 11:30:41,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,213 ERROR result = handle_locally()
2023-03-20 11:30:41,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,214 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:41,214 ERROR raise exception
2023-03-20 11:30:41,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,215 ERROR result = handle_locally()
2023-03-20 11:30:41,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,216 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:41,216 ERROR raise exception
2023-03-20 11:30:41,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,219 ERROR result = handle_locally()
2023-03-20 11:30:41,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,220 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:41,221 ERROR raise exception
2023-03-20 11:30:41,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,221 ERROR result = handle_locally()
2023-03-20 11:30:41,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,222 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:41,223 ERROR raise exception
2023-03-20 11:30:41,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,223 ERROR result = handle_locally()
2023-03-20 11:30:41,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:41,224 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:41,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:41,225 ERROR raise exception
2023-03-20 11:30:41,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:41,226 ERROR result = handle_locally()
2023-03-20 11:30:41,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:41,226 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:41,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:41,227 ERROR constraint_type_strict)
2023-03-20 11:30:41,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:41,228 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:41,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:41,228 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:41,229 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:41,307 INFO Welcome to the CDS
2023-03-20 11:30:41,308 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200106
2023-03-20 11:30:41,451 INFO Request is queued
2023-03-20 11:30:42,511 INFO Request is failed
2023-03-20 11:30:42,512 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:42,512 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:42,512 ERROR Traceback (most recent call last):
2023-03-20 11:30:42,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,513 ERROR result = handle_locally()
2023-03-20 11:30:42,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,514 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:42,515 ERROR raise exception
2023-03-20 11:30:42,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,515 ERROR result = handle_locally()
2023-03-20 11:30:42,516 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,516 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,516 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:42,517 ERROR raise exception
2023-03-20 11:30:42,517 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,517 ERROR result = handle_locally()
2023-03-20 11:30:42,518 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,518 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,518 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:42,519 ERROR raise exception
2023-03-20 11:30:42,519 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,519 ERROR result = handle_locally()
2023-03-20 11:30:42,520 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,520 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,521 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:42,521 ERROR raise exception
2023-03-20 11:30:42,521 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,522 ERROR result = handle_locally()
2023-03-20 11:30:42,522 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,522 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:42,523 ERROR raise exception
2023-03-20 11:30:42,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,524 ERROR result = handle_locally()
2023-03-20 11:30:42,524 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,524 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:42,525 ERROR raise exception
2023-03-20 11:30:42,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,526 ERROR result = handle_locally()
2023-03-20 11:30:42,526 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:42,526 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:42,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:42,527 ERROR raise exception
2023-03-20 11:30:42,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:42,528 ERROR result = handle_locally()
2023-03-20 11:30:42,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:42,529 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:42,529 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:42,529 ERROR constraint_type_strict)
2023-03-20 11:30:42,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:42,530 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:42,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:42,531 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:42,531 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:42,586 INFO Welcome to the CDS
2023-03-20 11:30:42,587 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:42,698 INFO Request is queued
no data200107
2023-03-20 11:30:43,772 INFO Request is failed
2023-03-20 11:30:43,772 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:43,773 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:43,773 ERROR Traceback (most recent call last):
2023-03-20 11:30:43,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,774 ERROR result = handle_locally()
2023-03-20 11:30:43,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,775 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:43,775 ERROR raise exception
2023-03-20 11:30:43,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,776 ERROR result = handle_locally()
2023-03-20 11:30:43,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,777 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:43,777 ERROR raise exception
2023-03-20 11:30:43,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,778 ERROR result = handle_locally()
2023-03-20 11:30:43,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:43,780 ERROR raise exception
2023-03-20 11:30:43,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,780 ERROR result = handle_locally()
2023-03-20 11:30:43,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,781 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:43,782 ERROR raise exception
2023-03-20 11:30:43,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,782 ERROR result = handle_locally()
2023-03-20 11:30:43,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,783 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:43,784 ERROR raise exception
2023-03-20 11:30:43,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,785 ERROR result = handle_locally()
2023-03-20 11:30:43,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,785 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:43,786 ERROR raise exception
2023-03-20 11:30:43,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,787 ERROR result = handle_locally()
2023-03-20 11:30:43,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:43,787 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:43,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:43,788 ERROR raise exception
2023-03-20 11:30:43,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:43,789 ERROR result = handle_locally()
2023-03-20 11:30:43,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:43,789 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:43,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:43,790 ERROR constraint_type_strict)
2023-03-20 11:30:43,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:43,795 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:43,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:43,795 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:43,796 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:43,858 INFO Welcome to the CDS
2023-03-20 11:30:43,858 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:43,955 INFO Request is queued
no data200108
2023-03-20 11:30:45,015 INFO Request is failed
2023-03-20 11:30:45,016 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:45,016 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:45,017 ERROR Traceback (most recent call last):
2023-03-20 11:30:45,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,017 ERROR result = handle_locally()
2023-03-20 11:30:45,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,018 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:45,019 ERROR raise exception
2023-03-20 11:30:45,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,020 ERROR result = handle_locally()
2023-03-20 11:30:45,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,020 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:45,021 ERROR raise exception
2023-03-20 11:30:45,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,022 ERROR result = handle_locally()
2023-03-20 11:30:45,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,022 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:45,023 ERROR raise exception
2023-03-20 11:30:45,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,024 ERROR result = handle_locally()
2023-03-20 11:30:45,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,025 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:45,025 ERROR raise exception
2023-03-20 11:30:45,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,026 ERROR result = handle_locally()
2023-03-20 11:30:45,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,027 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:45,027 ERROR raise exception
2023-03-20 11:30:45,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,028 ERROR result = handle_locally()
2023-03-20 11:30:45,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,029 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:45,029 ERROR raise exception
2023-03-20 11:30:45,030 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,030 ERROR result = handle_locally()
2023-03-20 11:30:45,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:45,031 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:45,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:45,032 ERROR raise exception
2023-03-20 11:30:45,032 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:45,032 ERROR result = handle_locally()
2023-03-20 11:30:45,033 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:45,033 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:45,033 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:45,034 ERROR constraint_type_strict)
2023-03-20 11:30:45,034 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:45,034 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:45,035 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:45,035 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:45,035 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:45,096 INFO Welcome to the CDS
2023-03-20 11:30:45,097 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200109
2023-03-20 11:30:45,426 INFO Request is queued
2023-03-20 11:30:46,486 INFO Request is failed
2023-03-20 11:30:46,487 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:46,487 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:46,487 ERROR Traceback (most recent call last):
2023-03-20 11:30:46,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,488 ERROR result = handle_locally()
2023-03-20 11:30:46,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,489 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:46,490 ERROR raise exception
2023-03-20 11:30:46,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,490 ERROR result = handle_locally()
2023-03-20 11:30:46,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,491 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:46,492 ERROR raise exception
2023-03-20 11:30:46,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,493 ERROR result = handle_locally()
2023-03-20 11:30:46,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,493 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:46,494 ERROR raise exception
2023-03-20 11:30:46,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,495 ERROR result = handle_locally()
2023-03-20 11:30:46,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,495 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:46,496 ERROR raise exception
2023-03-20 11:30:46,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,497 ERROR result = handle_locally()
2023-03-20 11:30:46,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,497 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:46,498 ERROR raise exception
2023-03-20 11:30:46,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,499 ERROR result = handle_locally()
2023-03-20 11:30:46,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,499 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:46,500 ERROR raise exception
2023-03-20 11:30:46,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,501 ERROR result = handle_locally()
2023-03-20 11:30:46,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:46,502 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:46,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:46,502 ERROR raise exception
2023-03-20 11:30:46,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:46,503 ERROR result = handle_locally()
2023-03-20 11:30:46,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:46,504 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:46,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:46,504 ERROR constraint_type_strict)
2023-03-20 11:30:46,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:46,505 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:46,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:46,506 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:46,506 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:46,562 INFO Welcome to the CDS
2023-03-20 11:30:46,563 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:46,670 INFO Request is queued
no data200110
2023-03-20 11:30:47,731 INFO Request is failed
2023-03-20 11:30:47,731 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:47,732 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:47,732 ERROR Traceback (most recent call last):
2023-03-20 11:30:47,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,733 ERROR result = handle_locally()
2023-03-20 11:30:47,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,734 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:47,734 ERROR raise exception
2023-03-20 11:30:47,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,735 ERROR result = handle_locally()
2023-03-20 11:30:47,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,736 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:47,737 ERROR raise exception
2023-03-20 11:30:47,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,737 ERROR result = handle_locally()
2023-03-20 11:30:47,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,738 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:47,739 ERROR raise exception
2023-03-20 11:30:47,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,739 ERROR result = handle_locally()
2023-03-20 11:30:47,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,740 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:47,741 ERROR raise exception
2023-03-20 11:30:47,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,742 ERROR result = handle_locally()
2023-03-20 11:30:47,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,742 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:47,743 ERROR raise exception
2023-03-20 11:30:47,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,744 ERROR result = handle_locally()
2023-03-20 11:30:47,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,744 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:47,745 ERROR raise exception
2023-03-20 11:30:47,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,746 ERROR result = handle_locally()
2023-03-20 11:30:47,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:47,746 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:47,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:47,747 ERROR raise exception
2023-03-20 11:30:47,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:47,748 ERROR result = handle_locally()
2023-03-20 11:30:47,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:47,749 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:47,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:47,749 ERROR constraint_type_strict)
2023-03-20 11:30:47,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:47,750 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:47,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:47,751 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:47,751 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:47,810 INFO Welcome to the CDS
2023-03-20 11:30:47,811 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:47,916 INFO Request is queued
no data200111
2023-03-20 11:30:48,977 INFO Request is failed
2023-03-20 11:30:48,977 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:48,978 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:48,978 ERROR Traceback (most recent call last):
2023-03-20 11:30:48,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,979 ERROR result = handle_locally()
2023-03-20 11:30:48,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,980 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:48,981 ERROR raise exception
2023-03-20 11:30:48,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,981 ERROR result = handle_locally()
2023-03-20 11:30:48,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,982 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:48,983 ERROR raise exception
2023-03-20 11:30:48,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,983 ERROR result = handle_locally()
2023-03-20 11:30:48,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,984 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:48,985 ERROR raise exception
2023-03-20 11:30:48,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,986 ERROR result = handle_locally()
2023-03-20 11:30:48,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,986 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:48,987 ERROR raise exception
2023-03-20 11:30:48,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,988 ERROR result = handle_locally()
2023-03-20 11:30:48,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,988 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:48,989 ERROR raise exception
2023-03-20 11:30:48,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,990 ERROR result = handle_locally()
2023-03-20 11:30:48,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,990 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:48,991 ERROR raise exception
2023-03-20 11:30:48,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,992 ERROR result = handle_locally()
2023-03-20 11:30:48,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:48,993 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:48,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:48,993 ERROR raise exception
2023-03-20 11:30:48,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:48,994 ERROR result = handle_locally()
2023-03-20 11:30:48,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:48,995 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:48,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:48,995 ERROR constraint_type_strict)
2023-03-20 11:30:48,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:48,996 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:48,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:48,997 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:48,997 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:49,068 INFO Welcome to the CDS
2023-03-20 11:30:49,069 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:49,172 INFO Request is queued
no data200112
2023-03-20 11:30:50,232 INFO Request is failed
2023-03-20 11:30:50,233 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:50,233 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:50,234 ERROR Traceback (most recent call last):
2023-03-20 11:30:50,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,234 ERROR result = handle_locally()
2023-03-20 11:30:50,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,235 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:50,236 ERROR raise exception
2023-03-20 11:30:50,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,236 ERROR result = handle_locally()
2023-03-20 11:30:50,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,237 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:50,238 ERROR raise exception
2023-03-20 11:30:50,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,239 ERROR result = handle_locally()
2023-03-20 11:30:50,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,239 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:50,240 ERROR raise exception
2023-03-20 11:30:50,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,241 ERROR result = handle_locally()
2023-03-20 11:30:50,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,241 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:50,242 ERROR raise exception
2023-03-20 11:30:50,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,243 ERROR result = handle_locally()
2023-03-20 11:30:50,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,244 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,244 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:50,244 ERROR raise exception
2023-03-20 11:30:50,245 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,245 ERROR result = handle_locally()
2023-03-20 11:30:50,245 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,246 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,246 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:50,246 ERROR raise exception
2023-03-20 11:30:50,247 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,247 ERROR result = handle_locally()
2023-03-20 11:30:50,247 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:50,248 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:50,248 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:50,248 ERROR raise exception
2023-03-20 11:30:50,249 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:50,249 ERROR result = handle_locally()
2023-03-20 11:30:50,249 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:50,250 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:50,250 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:50,250 ERROR constraint_type_strict)
2023-03-20 11:30:50,251 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:50,251 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:50,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:50,252 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:50,252 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:50,308 INFO Welcome to the CDS
2023-03-20 11:30:50,308 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:50,389 INFO Request is queued
no data200201
2023-03-20 11:30:51,458 INFO Request is failed
2023-03-20 11:30:51,459 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:51,459 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:51,460 ERROR Traceback (most recent call last):
2023-03-20 11:30:51,460 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,461 ERROR result = handle_locally()
2023-03-20 11:30:51,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,461 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:51,462 ERROR raise exception
2023-03-20 11:30:51,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,463 ERROR result = handle_locally()
2023-03-20 11:30:51,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,463 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:51,464 ERROR raise exception
2023-03-20 11:30:51,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,465 ERROR result = handle_locally()
2023-03-20 11:30:51,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,465 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:51,466 ERROR raise exception
2023-03-20 11:30:51,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,467 ERROR result = handle_locally()
2023-03-20 11:30:51,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,468 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:51,468 ERROR raise exception
2023-03-20 11:30:51,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,469 ERROR result = handle_locally()
2023-03-20 11:30:51,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,470 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:51,470 ERROR raise exception
2023-03-20 11:30:51,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,471 ERROR result = handle_locally()
2023-03-20 11:30:51,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,472 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:51,473 ERROR raise exception
2023-03-20 11:30:51,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,473 ERROR result = handle_locally()
2023-03-20 11:30:51,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:51,474 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:51,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:51,475 ERROR raise exception
2023-03-20 11:30:51,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:51,475 ERROR result = handle_locally()
2023-03-20 11:30:51,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:51,476 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:51,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:51,477 ERROR constraint_type_strict)
2023-03-20 11:30:51,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:51,477 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:51,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:51,478 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:51,479 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:51,542 INFO Welcome to the CDS
2023-03-20 11:30:51,543 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:51,645 INFO Request is queued
no data200202
2023-03-20 11:30:52,731 INFO Request is failed
2023-03-20 11:30:52,732 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:52,732 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:52,733 ERROR Traceback (most recent call last):
2023-03-20 11:30:52,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,734 ERROR result = handle_locally()
2023-03-20 11:30:52,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,734 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:52,735 ERROR raise exception
2023-03-20 11:30:52,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,736 ERROR result = handle_locally()
2023-03-20 11:30:52,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,737 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:52,737 ERROR raise exception
2023-03-20 11:30:52,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,738 ERROR result = handle_locally()
2023-03-20 11:30:52,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,739 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:52,739 ERROR raise exception
2023-03-20 11:30:52,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,740 ERROR result = handle_locally()
2023-03-20 11:30:52,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,741 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:52,741 ERROR raise exception
2023-03-20 11:30:52,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,742 ERROR result = handle_locally()
2023-03-20 11:30:52,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,743 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:52,744 ERROR raise exception
2023-03-20 11:30:52,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,747 ERROR result = handle_locally()
2023-03-20 11:30:52,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,747 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:52,748 ERROR raise exception
2023-03-20 11:30:52,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,749 ERROR result = handle_locally()
2023-03-20 11:30:52,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:52,749 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:52,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:52,750 ERROR raise exception
2023-03-20 11:30:52,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:52,751 ERROR result = handle_locally()
2023-03-20 11:30:52,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:52,752 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:52,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:52,752 ERROR constraint_type_strict)
2023-03-20 11:30:52,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:52,753 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:52,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:52,754 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:52,754 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:52,822 INFO Welcome to the CDS
2023-03-20 11:30:52,823 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:52,939 INFO Request is queued
no data200203
2023-03-20 11:30:54,013 INFO Request is failed
2023-03-20 11:30:54,014 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:54,014 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:54,015 ERROR Traceback (most recent call last):
2023-03-20 11:30:54,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,015 ERROR result = handle_locally()
2023-03-20 11:30:54,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,016 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:54,017 ERROR raise exception
2023-03-20 11:30:54,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,017 ERROR result = handle_locally()
2023-03-20 11:30:54,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,018 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:54,019 ERROR raise exception
2023-03-20 11:30:54,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,019 ERROR result = handle_locally()
2023-03-20 11:30:54,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,020 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:54,021 ERROR raise exception
2023-03-20 11:30:54,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,021 ERROR result = handle_locally()
2023-03-20 11:30:54,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,022 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:54,023 ERROR raise exception
2023-03-20 11:30:54,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,023 ERROR result = handle_locally()
2023-03-20 11:30:54,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,024 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:54,025 ERROR raise exception
2023-03-20 11:30:54,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,025 ERROR result = handle_locally()
2023-03-20 11:30:54,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,026 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:54,027 ERROR raise exception
2023-03-20 11:30:54,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,028 ERROR result = handle_locally()
2023-03-20 11:30:54,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:54,028 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:54,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:54,029 ERROR raise exception
2023-03-20 11:30:54,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:54,030 ERROR result = handle_locally()
2023-03-20 11:30:54,030 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:54,030 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:54,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:54,031 ERROR constraint_type_strict)
2023-03-20 11:30:54,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:54,032 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:54,032 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:54,032 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:54,033 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:54,112 INFO Welcome to the CDS
2023-03-20 11:30:54,112 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:54,218 INFO Request is queued
no data200204
2023-03-20 11:30:55,278 INFO Request is failed
2023-03-20 11:30:55,279 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:55,279 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:55,280 ERROR Traceback (most recent call last):
2023-03-20 11:30:55,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,280 ERROR result = handle_locally()
2023-03-20 11:30:55,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,281 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:55,282 ERROR raise exception
2023-03-20 11:30:55,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,283 ERROR result = handle_locally()
2023-03-20 11:30:55,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:55,284 ERROR raise exception
2023-03-20 11:30:55,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,285 ERROR result = handle_locally()
2023-03-20 11:30:55,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:55,286 ERROR raise exception
2023-03-20 11:30:55,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,287 ERROR result = handle_locally()
2023-03-20 11:30:55,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:55,288 ERROR raise exception
2023-03-20 11:30:55,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,289 ERROR result = handle_locally()
2023-03-20 11:30:55,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,290 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:55,290 ERROR raise exception
2023-03-20 11:30:55,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,291 ERROR result = handle_locally()
2023-03-20 11:30:55,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,292 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:55,295 ERROR raise exception
2023-03-20 11:30:55,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,296 ERROR result = handle_locally()
2023-03-20 11:30:55,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:55,296 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:55,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:55,297 ERROR raise exception
2023-03-20 11:30:55,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:55,298 ERROR result = handle_locally()
2023-03-20 11:30:55,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:55,299 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:55,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:55,299 ERROR constraint_type_strict)
2023-03-20 11:30:55,300 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:55,300 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:55,300 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:55,301 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:55,301 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:55,357 INFO Welcome to the CDS
2023-03-20 11:30:55,358 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200205
2023-03-20 11:30:55,579 INFO Request is queued
2023-03-20 11:30:56,639 INFO Request is failed
2023-03-20 11:30:56,640 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:56,640 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:56,641 ERROR Traceback (most recent call last):
2023-03-20 11:30:56,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,641 ERROR result = handle_locally()
2023-03-20 11:30:56,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,642 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:56,643 ERROR raise exception
2023-03-20 11:30:56,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,643 ERROR result = handle_locally()
2023-03-20 11:30:56,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,644 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:56,645 ERROR raise exception
2023-03-20 11:30:56,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,646 ERROR result = handle_locally()
2023-03-20 11:30:56,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,646 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:56,647 ERROR raise exception
2023-03-20 11:30:56,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,648 ERROR result = handle_locally()
2023-03-20 11:30:56,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,648 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:56,649 ERROR raise exception
2023-03-20 11:30:56,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,650 ERROR result = handle_locally()
2023-03-20 11:30:56,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,650 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:56,651 ERROR raise exception
2023-03-20 11:30:56,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,652 ERROR result = handle_locally()
2023-03-20 11:30:56,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,653 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:56,653 ERROR raise exception
2023-03-20 11:30:56,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,654 ERROR result = handle_locally()
2023-03-20 11:30:56,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:56,655 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:56,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:56,655 ERROR raise exception
2023-03-20 11:30:56,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:56,656 ERROR result = handle_locally()
2023-03-20 11:30:56,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:56,657 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:56,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:56,657 ERROR constraint_type_strict)
2023-03-20 11:30:56,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:56,658 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:56,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:56,659 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:56,659 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:56,716 INFO Welcome to the CDS
2023-03-20 11:30:56,717 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:56,830 INFO Request is queued
no data200206
2023-03-20 11:30:57,900 INFO Request is failed
2023-03-20 11:30:57,900 ERROR Message: the request you have submitted is not valid
2023-03-20 11:30:57,901 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:57,901 ERROR Traceback (most recent call last):
2023-03-20 11:30:57,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,902 ERROR result = handle_locally()
2023-03-20 11:30:57,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,903 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:30:57,903 ERROR raise exception
2023-03-20 11:30:57,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,904 ERROR result = handle_locally()
2023-03-20 11:30:57,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,905 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:30:57,905 ERROR raise exception
2023-03-20 11:30:57,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,906 ERROR result = handle_locally()
2023-03-20 11:30:57,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,907 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:30:57,908 ERROR raise exception
2023-03-20 11:30:57,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,908 ERROR result = handle_locally()
2023-03-20 11:30:57,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,909 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:57,910 ERROR raise exception
2023-03-20 11:30:57,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,910 ERROR result = handle_locally()
2023-03-20 11:30:57,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,911 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:57,912 ERROR raise exception
2023-03-20 11:30:57,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,912 ERROR result = handle_locally()
2023-03-20 11:30:57,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,913 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:57,914 ERROR raise exception
2023-03-20 11:30:57,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,915 ERROR result = handle_locally()
2023-03-20 11:30:57,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:30:57,915 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:30:57,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:30:57,916 ERROR raise exception
2023-03-20 11:30:57,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:30:57,917 ERROR result = handle_locally()
2023-03-20 11:30:57,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:30:57,917 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:30:57,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:30:57,918 ERROR constraint_type_strict)
2023-03-20 11:30:57,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:30:57,919 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:30:57,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:30:57,919 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:30:57,920 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:30:57,984 INFO Welcome to the CDS
2023-03-20 11:30:57,985 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:30:58,109 INFO Request is queued
no data200207
2023-03-20 11:30:59,173 INFO Request is running
2023-03-20 11:31:00,755 INFO Request is failed
2023-03-20 11:31:00,755 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:00,756 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:00,756 ERROR Traceback (most recent call last):
2023-03-20 11:31:00,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,757 ERROR result = handle_locally()
2023-03-20 11:31:00,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,758 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:00,758 ERROR raise exception
2023-03-20 11:31:00,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,759 ERROR result = handle_locally()
2023-03-20 11:31:00,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,761 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:00,761 ERROR raise exception
2023-03-20 11:31:00,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,762 ERROR result = handle_locally()
2023-03-20 11:31:00,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,763 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:00,764 ERROR raise exception
2023-03-20 11:31:00,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,764 ERROR result = handle_locally()
2023-03-20 11:31:00,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,765 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:00,766 ERROR raise exception
2023-03-20 11:31:00,766 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,766 ERROR result = handle_locally()
2023-03-20 11:31:00,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,767 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:00,768 ERROR raise exception
2023-03-20 11:31:00,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,768 ERROR result = handle_locally()
2023-03-20 11:31:00,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,769 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:00,770 ERROR raise exception
2023-03-20 11:31:00,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,770 ERROR result = handle_locally()
2023-03-20 11:31:00,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:00,771 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:00,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:00,772 ERROR raise exception
2023-03-20 11:31:00,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:00,773 ERROR result = handle_locally()
2023-03-20 11:31:00,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:00,773 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:00,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:00,774 ERROR constraint_type_strict)
2023-03-20 11:31:00,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:00,775 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:00,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:00,775 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:00,776 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:00,859 INFO Welcome to the CDS
2023-03-20 11:31:00,859 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200208
2023-03-20 11:31:01,017 INFO Request is queued
2023-03-20 11:31:02,108 INFO Request is failed
2023-03-20 11:31:02,108 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:02,109 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:02,109 ERROR Traceback (most recent call last):
2023-03-20 11:31:02,109 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,110 ERROR result = handle_locally()
2023-03-20 11:31:02,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,110 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,111 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:02,111 ERROR raise exception
2023-03-20 11:31:02,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,112 ERROR result = handle_locally()
2023-03-20 11:31:02,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,113 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:02,113 ERROR raise exception
2023-03-20 11:31:02,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,114 ERROR result = handle_locally()
2023-03-20 11:31:02,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,115 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:02,115 ERROR raise exception
2023-03-20 11:31:02,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,116 ERROR result = handle_locally()
2023-03-20 11:31:02,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,117 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:02,117 ERROR raise exception
2023-03-20 11:31:02,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,118 ERROR result = handle_locally()
2023-03-20 11:31:02,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,119 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:02,120 ERROR raise exception
2023-03-20 11:31:02,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,120 ERROR result = handle_locally()
2023-03-20 11:31:02,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,121 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:02,122 ERROR raise exception
2023-03-20 11:31:02,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,122 ERROR result = handle_locally()
2023-03-20 11:31:02,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:02,123 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:02,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:02,124 ERROR raise exception
2023-03-20 11:31:02,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:02,124 ERROR result = handle_locally()
2023-03-20 11:31:02,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:02,125 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:02,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:02,126 ERROR constraint_type_strict)
2023-03-20 11:31:02,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:02,126 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:02,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:02,127 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:02,127 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:02,217 INFO Welcome to the CDS
2023-03-20 11:31:02,218 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200209
2023-03-20 11:31:02,331 INFO Request is queued
2023-03-20 11:31:03,396 INFO Request is failed
2023-03-20 11:31:03,397 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:03,397 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:03,397 ERROR Traceback (most recent call last):
2023-03-20 11:31:03,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,398 ERROR result = handle_locally()
2023-03-20 11:31:03,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,399 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:03,399 ERROR raise exception
2023-03-20 11:31:03,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,400 ERROR result = handle_locally()
2023-03-20 11:31:03,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,401 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:03,402 ERROR raise exception
2023-03-20 11:31:03,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,402 ERROR result = handle_locally()
2023-03-20 11:31:03,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,403 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:03,404 ERROR raise exception
2023-03-20 11:31:03,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,404 ERROR result = handle_locally()
2023-03-20 11:31:03,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,405 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:03,406 ERROR raise exception
2023-03-20 11:31:03,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,406 ERROR result = handle_locally()
2023-03-20 11:31:03,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,407 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:03,408 ERROR raise exception
2023-03-20 11:31:03,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,408 ERROR result = handle_locally()
2023-03-20 11:31:03,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,409 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:03,410 ERROR raise exception
2023-03-20 11:31:03,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,410 ERROR result = handle_locally()
2023-03-20 11:31:03,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:03,411 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:03,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:03,412 ERROR raise exception
2023-03-20 11:31:03,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:03,413 ERROR result = handle_locally()
2023-03-20 11:31:03,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:03,413 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:03,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:03,414 ERROR constraint_type_strict)
2023-03-20 11:31:03,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:03,415 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:03,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:03,415 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:03,416 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:03,481 INFO Welcome to the CDS
2023-03-20 11:31:03,481 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200210
2023-03-20 11:31:03,626 INFO Request is queued
2023-03-20 11:31:04,712 INFO Request is failed
2023-03-20 11:31:04,712 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:04,713 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:04,713 ERROR Traceback (most recent call last):
2023-03-20 11:31:04,713 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,714 ERROR result = handle_locally()
2023-03-20 11:31:04,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,714 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:04,715 ERROR raise exception
2023-03-20 11:31:04,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,716 ERROR result = handle_locally()
2023-03-20 11:31:04,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,717 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:04,717 ERROR raise exception
2023-03-20 11:31:04,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,718 ERROR result = handle_locally()
2023-03-20 11:31:04,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,719 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:04,719 ERROR raise exception
2023-03-20 11:31:04,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,720 ERROR result = handle_locally()
2023-03-20 11:31:04,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,721 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:04,722 ERROR raise exception
2023-03-20 11:31:04,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,722 ERROR result = handle_locally()
2023-03-20 11:31:04,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,723 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:04,724 ERROR raise exception
2023-03-20 11:31:04,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,724 ERROR result = handle_locally()
2023-03-20 11:31:04,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,725 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:04,726 ERROR raise exception
2023-03-20 11:31:04,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,726 ERROR result = handle_locally()
2023-03-20 11:31:04,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:04,727 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:04,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:04,728 ERROR raise exception
2023-03-20 11:31:04,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:04,729 ERROR result = handle_locally()
2023-03-20 11:31:04,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:04,729 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:04,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:04,730 ERROR constraint_type_strict)
2023-03-20 11:31:04,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:04,731 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:04,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:04,731 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:04,732 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:04,804 INFO Welcome to the CDS
2023-03-20 11:31:04,805 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200211
2023-03-20 11:31:04,961 INFO Request is queued
2023-03-20 11:31:06,039 INFO Request is failed
2023-03-20 11:31:06,039 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:06,040 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:06,040 ERROR Traceback (most recent call last):
2023-03-20 11:31:06,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,041 ERROR result = handle_locally()
2023-03-20 11:31:06,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,042 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:06,042 ERROR raise exception
2023-03-20 11:31:06,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,043 ERROR result = handle_locally()
2023-03-20 11:31:06,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,044 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:06,044 ERROR raise exception
2023-03-20 11:31:06,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,045 ERROR result = handle_locally()
2023-03-20 11:31:06,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,046 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:06,046 ERROR raise exception
2023-03-20 11:31:06,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,047 ERROR result = handle_locally()
2023-03-20 11:31:06,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,048 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:06,048 ERROR raise exception
2023-03-20 11:31:06,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,049 ERROR result = handle_locally()
2023-03-20 11:31:06,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,050 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:06,051 ERROR raise exception
2023-03-20 11:31:06,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,051 ERROR result = handle_locally()
2023-03-20 11:31:06,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,052 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:06,053 ERROR raise exception
2023-03-20 11:31:06,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,053 ERROR result = handle_locally()
2023-03-20 11:31:06,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:06,054 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:06,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:06,055 ERROR raise exception
2023-03-20 11:31:06,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:06,055 ERROR result = handle_locally()
2023-03-20 11:31:06,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:06,056 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:06,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:06,057 ERROR constraint_type_strict)
2023-03-20 11:31:06,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:06,058 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:06,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:06,058 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:06,059 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:06,121 INFO Welcome to the CDS
2023-03-20 11:31:06,121 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200212
2023-03-20 11:31:06,262 INFO Request is queued
2023-03-20 11:31:07,329 INFO Request is running
2023-03-20 11:31:08,909 INFO Request is failed
2023-03-20 11:31:08,909 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:08,910 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:08,910 ERROR Traceback (most recent call last):
2023-03-20 11:31:08,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,911 ERROR result = handle_locally()
2023-03-20 11:31:08,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,911 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:08,912 ERROR raise exception
2023-03-20 11:31:08,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,913 ERROR result = handle_locally()
2023-03-20 11:31:08,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,914 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:08,914 ERROR raise exception
2023-03-20 11:31:08,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,915 ERROR result = handle_locally()
2023-03-20 11:31:08,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,916 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:08,916 ERROR raise exception
2023-03-20 11:31:08,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,917 ERROR result = handle_locally()
2023-03-20 11:31:08,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,918 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:08,918 ERROR raise exception
2023-03-20 11:31:08,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,919 ERROR result = handle_locally()
2023-03-20 11:31:08,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,920 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,920 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:08,920 ERROR raise exception
2023-03-20 11:31:08,921 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,921 ERROR result = handle_locally()
2023-03-20 11:31:08,921 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,922 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,922 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:08,922 ERROR raise exception
2023-03-20 11:31:08,923 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,923 ERROR result = handle_locally()
2023-03-20 11:31:08,923 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:08,924 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:08,924 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:08,924 ERROR raise exception
2023-03-20 11:31:08,925 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:08,925 ERROR result = handle_locally()
2023-03-20 11:31:08,925 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:08,926 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:08,926 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:08,926 ERROR constraint_type_strict)
2023-03-20 11:31:08,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:08,927 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:08,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:08,928 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:08,928 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:09,002 INFO Welcome to the CDS
2023-03-20 11:31:09,003 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:09,121 INFO Request is queued
no data200301
2023-03-20 11:31:10,183 INFO Request is failed
2023-03-20 11:31:10,184 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:10,184 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:10,184 ERROR Traceback (most recent call last):
2023-03-20 11:31:10,185 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,185 ERROR result = handle_locally()
2023-03-20 11:31:10,185 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,186 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,186 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:10,186 ERROR raise exception
2023-03-20 11:31:10,187 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,187 ERROR result = handle_locally()
2023-03-20 11:31:10,187 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,188 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,188 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:10,188 ERROR raise exception
2023-03-20 11:31:10,189 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,189 ERROR result = handle_locally()
2023-03-20 11:31:10,189 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,190 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,190 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:10,190 ERROR raise exception
2023-03-20 11:31:10,191 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,191 ERROR result = handle_locally()
2023-03-20 11:31:10,191 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,192 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,192 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:10,193 ERROR raise exception
2023-03-20 11:31:10,193 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,193 ERROR result = handle_locally()
2023-03-20 11:31:10,194 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,194 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,194 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:10,195 ERROR raise exception
2023-03-20 11:31:10,195 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,195 ERROR result = handle_locally()
2023-03-20 11:31:10,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,196 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:10,197 ERROR raise exception
2023-03-20 11:31:10,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,197 ERROR result = handle_locally()
2023-03-20 11:31:10,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:10,198 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:10,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:10,199 ERROR raise exception
2023-03-20 11:31:10,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:10,199 ERROR result = handle_locally()
2023-03-20 11:31:10,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:10,200 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:10,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:10,201 ERROR constraint_type_strict)
2023-03-20 11:31:10,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:10,201 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:10,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:10,202 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:10,202 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
no data200302
2023-03-20 11:31:10,487 INFO Welcome to the CDS
2023-03-20 11:31:10,487 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:10,563 INFO Request is queued
2023-03-20 11:31:11,636 INFO Request is failed
2023-03-20 11:31:11,637 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:11,637 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:11,638 ERROR Traceback (most recent call last):
2023-03-20 11:31:11,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,638 ERROR result = handle_locally()
2023-03-20 11:31:11,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,639 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:11,640 ERROR raise exception
2023-03-20 11:31:11,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,640 ERROR result = handle_locally()
2023-03-20 11:31:11,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,641 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:11,642 ERROR raise exception
2023-03-20 11:31:11,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,642 ERROR result = handle_locally()
2023-03-20 11:31:11,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,643 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:11,644 ERROR raise exception
2023-03-20 11:31:11,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,645 ERROR result = handle_locally()
2023-03-20 11:31:11,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,645 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:11,646 ERROR raise exception
2023-03-20 11:31:11,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,647 ERROR result = handle_locally()
2023-03-20 11:31:11,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,647 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:11,648 ERROR raise exception
2023-03-20 11:31:11,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,649 ERROR result = handle_locally()
2023-03-20 11:31:11,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,649 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:11,650 ERROR raise exception
2023-03-20 11:31:11,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,651 ERROR result = handle_locally()
2023-03-20 11:31:11,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:11,651 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:11,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:11,652 ERROR raise exception
2023-03-20 11:31:11,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:11,653 ERROR result = handle_locally()
2023-03-20 11:31:11,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:11,653 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:11,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:11,654 ERROR constraint_type_strict)
2023-03-20 11:31:11,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:11,655 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:11,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:11,655 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:11,656 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:11,720 INFO Welcome to the CDS
2023-03-20 11:31:11,720 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:11,802 INFO Request is queued
no data200303
2023-03-20 11:31:12,885 INFO Request is failed
2023-03-20 11:31:12,885 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:12,886 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:12,886 ERROR Traceback (most recent call last):
2023-03-20 11:31:12,886 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,887 ERROR result = handle_locally()
2023-03-20 11:31:12,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,888 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,888 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:12,888 ERROR raise exception
2023-03-20 11:31:12,889 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,889 ERROR result = handle_locally()
2023-03-20 11:31:12,889 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,890 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,890 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:12,890 ERROR raise exception
2023-03-20 11:31:12,891 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,891 ERROR result = handle_locally()
2023-03-20 11:31:12,891 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,892 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,892 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:12,892 ERROR raise exception
2023-03-20 11:31:12,893 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,893 ERROR result = handle_locally()
2023-03-20 11:31:12,893 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,894 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,894 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:12,894 ERROR raise exception
2023-03-20 11:31:12,895 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,895 ERROR result = handle_locally()
2023-03-20 11:31:12,895 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,896 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,896 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:12,896 ERROR raise exception
2023-03-20 11:31:12,897 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,897 ERROR result = handle_locally()
2023-03-20 11:31:12,897 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,898 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,898 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:12,898 ERROR raise exception
2023-03-20 11:31:12,899 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,899 ERROR result = handle_locally()
2023-03-20 11:31:12,899 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:12,900 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:12,900 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:12,900 ERROR raise exception
2023-03-20 11:31:12,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:12,901 ERROR result = handle_locally()
2023-03-20 11:31:12,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:12,902 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:12,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:12,902 ERROR constraint_type_strict)
2023-03-20 11:31:12,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:12,903 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:12,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:12,904 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:12,904 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:12,975 INFO Welcome to the CDS
2023-03-20 11:31:12,975 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:13,080 INFO Request is queued
no data200304
2023-03-20 11:31:14,142 INFO Request is failed
2023-03-20 11:31:14,142 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:14,143 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:14,143 ERROR Traceback (most recent call last):
2023-03-20 11:31:14,143 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,144 ERROR result = handle_locally()
2023-03-20 11:31:14,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,144 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:14,145 ERROR raise exception
2023-03-20 11:31:14,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,146 ERROR result = handle_locally()
2023-03-20 11:31:14,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,147 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:14,147 ERROR raise exception
2023-03-20 11:31:14,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,148 ERROR result = handle_locally()
2023-03-20 11:31:14,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,149 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:14,149 ERROR raise exception
2023-03-20 11:31:14,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,150 ERROR result = handle_locally()
2023-03-20 11:31:14,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,151 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:14,151 ERROR raise exception
2023-03-20 11:31:14,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,152 ERROR result = handle_locally()
2023-03-20 11:31:14,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,153 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:14,153 ERROR raise exception
2023-03-20 11:31:14,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,154 ERROR result = handle_locally()
2023-03-20 11:31:14,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,155 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:14,155 ERROR raise exception
2023-03-20 11:31:14,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,156 ERROR result = handle_locally()
2023-03-20 11:31:14,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:14,157 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:14,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:14,157 ERROR raise exception
2023-03-20 11:31:14,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:14,158 ERROR result = handle_locally()
2023-03-20 11:31:14,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:14,159 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:14,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:14,159 ERROR constraint_type_strict)
2023-03-20 11:31:14,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:14,160 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:14,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:14,161 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:14,161 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:14,227 INFO Welcome to the CDS
2023-03-20 11:31:14,227 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:14,335 INFO Request is queued
no data200305
2023-03-20 11:31:15,420 INFO Request is failed
2023-03-20 11:31:15,420 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:15,421 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:15,421 ERROR Traceback (most recent call last):
2023-03-20 11:31:15,421 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,422 ERROR result = handle_locally()
2023-03-20 11:31:15,422 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,422 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,423 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:15,423 ERROR raise exception
2023-03-20 11:31:15,423 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,424 ERROR result = handle_locally()
2023-03-20 11:31:15,424 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,424 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:15,425 ERROR raise exception
2023-03-20 11:31:15,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,426 ERROR result = handle_locally()
2023-03-20 11:31:15,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,426 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:15,427 ERROR raise exception
2023-03-20 11:31:15,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,428 ERROR result = handle_locally()
2023-03-20 11:31:15,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,428 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:15,429 ERROR raise exception
2023-03-20 11:31:15,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,430 ERROR result = handle_locally()
2023-03-20 11:31:15,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,430 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:15,431 ERROR raise exception
2023-03-20 11:31:15,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,432 ERROR result = handle_locally()
2023-03-20 11:31:15,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,432 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:15,433 ERROR raise exception
2023-03-20 11:31:15,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,434 ERROR result = handle_locally()
2023-03-20 11:31:15,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:15,435 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:15,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:15,435 ERROR raise exception
2023-03-20 11:31:15,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:15,436 ERROR result = handle_locally()
2023-03-20 11:31:15,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:15,437 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:15,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:15,437 ERROR constraint_type_strict)
2023-03-20 11:31:15,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:15,438 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:15,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:15,439 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:15,439 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:15,513 INFO Welcome to the CDS
2023-03-20 11:31:15,513 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200306
2023-03-20 11:31:15,651 INFO Request is queued
2023-03-20 11:31:16,712 INFO Request is failed
2023-03-20 11:31:16,713 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:16,713 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:16,713 ERROR Traceback (most recent call last):
2023-03-20 11:31:16,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,714 ERROR result = handle_locally()
2023-03-20 11:31:16,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,715 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:16,715 ERROR raise exception
2023-03-20 11:31:16,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,716 ERROR result = handle_locally()
2023-03-20 11:31:16,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,717 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:16,717 ERROR raise exception
2023-03-20 11:31:16,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,718 ERROR result = handle_locally()
2023-03-20 11:31:16,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,719 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:16,719 ERROR raise exception
2023-03-20 11:31:16,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,720 ERROR result = handle_locally()
2023-03-20 11:31:16,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,721 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:16,721 ERROR raise exception
2023-03-20 11:31:16,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,722 ERROR result = handle_locally()
2023-03-20 11:31:16,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,723 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:16,724 ERROR raise exception
2023-03-20 11:31:16,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,724 ERROR result = handle_locally()
2023-03-20 11:31:16,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,725 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:16,726 ERROR raise exception
2023-03-20 11:31:16,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,726 ERROR result = handle_locally()
2023-03-20 11:31:16,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:16,727 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:16,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:16,728 ERROR raise exception
2023-03-20 11:31:16,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:16,728 ERROR result = handle_locally()
2023-03-20 11:31:16,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:16,729 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:16,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:16,730 ERROR constraint_type_strict)
2023-03-20 11:31:16,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:16,730 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:16,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:16,731 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:16,731 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:16,780 INFO Welcome to the CDS
2023-03-20 11:31:16,780 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:16,883 INFO Request is queued
no data200307
2023-03-20 11:31:17,938 INFO Request is failed
2023-03-20 11:31:17,938 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:17,938 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:17,939 ERROR Traceback (most recent call last):
2023-03-20 11:31:17,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,940 ERROR result = handle_locally()
2023-03-20 11:31:17,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,940 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:17,941 ERROR raise exception
2023-03-20 11:31:17,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,942 ERROR result = handle_locally()
2023-03-20 11:31:17,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,942 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:17,943 ERROR raise exception
2023-03-20 11:31:17,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,944 ERROR result = handle_locally()
2023-03-20 11:31:17,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,944 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:17,945 ERROR raise exception
2023-03-20 11:31:17,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,946 ERROR result = handle_locally()
2023-03-20 11:31:17,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,946 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:17,947 ERROR raise exception
2023-03-20 11:31:17,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,948 ERROR result = handle_locally()
2023-03-20 11:31:17,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,948 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:17,949 ERROR raise exception
2023-03-20 11:31:17,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,950 ERROR result = handle_locally()
2023-03-20 11:31:17,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,950 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:17,951 ERROR raise exception
2023-03-20 11:31:17,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,952 ERROR result = handle_locally()
2023-03-20 11:31:17,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:17,952 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:17,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:17,953 ERROR raise exception
2023-03-20 11:31:17,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:17,954 ERROR result = handle_locally()
2023-03-20 11:31:17,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:17,954 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:17,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:17,955 ERROR constraint_type_strict)
2023-03-20 11:31:17,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:17,956 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:17,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:17,956 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:17,957 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:18,009 INFO Welcome to the CDS
2023-03-20 11:31:18,011 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:18,143 INFO Request is queued
no data200308
2023-03-20 11:31:19,202 INFO Request is failed
2023-03-20 11:31:19,203 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:19,203 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:19,204 ERROR Traceback (most recent call last):
2023-03-20 11:31:19,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,205 ERROR result = handle_locally()
2023-03-20 11:31:19,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,206 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:19,206 ERROR raise exception
2023-03-20 11:31:19,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,207 ERROR result = handle_locally()
2023-03-20 11:31:19,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,208 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:19,208 ERROR raise exception
2023-03-20 11:31:19,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,209 ERROR result = handle_locally()
2023-03-20 11:31:19,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,210 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:19,211 ERROR raise exception
2023-03-20 11:31:19,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,211 ERROR result = handle_locally()
2023-03-20 11:31:19,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,212 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:19,213 ERROR raise exception
2023-03-20 11:31:19,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,213 ERROR result = handle_locally()
2023-03-20 11:31:19,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,214 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:19,215 ERROR raise exception
2023-03-20 11:31:19,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,215 ERROR result = handle_locally()
2023-03-20 11:31:19,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,216 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:19,217 ERROR raise exception
2023-03-20 11:31:19,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,218 ERROR result = handle_locally()
2023-03-20 11:31:19,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:19,218 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:19,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:19,219 ERROR raise exception
2023-03-20 11:31:19,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:19,220 ERROR result = handle_locally()
2023-03-20 11:31:19,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:19,220 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:19,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:19,221 ERROR constraint_type_strict)
2023-03-20 11:31:19,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:19,222 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:19,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:19,223 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:19,223 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:19,279 INFO Welcome to the CDS
2023-03-20 11:31:19,280 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:19,371 INFO Request is queued
no data200309
2023-03-20 11:31:20,441 INFO Request is running
2023-03-20 11:31:21,995 INFO Request is failed
2023-03-20 11:31:21,995 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:21,996 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:21,996 ERROR Traceback (most recent call last):
2023-03-20 11:31:21,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:21,997 ERROR result = handle_locally()
2023-03-20 11:31:21,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:21,998 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:21,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:21,998 ERROR raise exception
2023-03-20 11:31:21,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:21,999 ERROR result = handle_locally()
2023-03-20 11:31:21,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,000 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:22,002 ERROR raise exception
2023-03-20 11:31:22,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,002 ERROR result = handle_locally()
2023-03-20 11:31:22,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,003 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:22,004 ERROR raise exception
2023-03-20 11:31:22,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,005 ERROR result = handle_locally()
2023-03-20 11:31:22,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,005 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:22,006 ERROR raise exception
2023-03-20 11:31:22,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,007 ERROR result = handle_locally()
2023-03-20 11:31:22,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,008 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:22,008 ERROR raise exception
2023-03-20 11:31:22,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,009 ERROR result = handle_locally()
2023-03-20 11:31:22,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,010 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:22,010 ERROR raise exception
2023-03-20 11:31:22,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,011 ERROR result = handle_locally()
2023-03-20 11:31:22,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:22,012 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:22,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:22,013 ERROR raise exception
2023-03-20 11:31:22,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:22,013 ERROR result = handle_locally()
2023-03-20 11:31:22,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:22,014 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:22,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:22,015 ERROR constraint_type_strict)
2023-03-20 11:31:22,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:22,016 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:22,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:22,016 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:22,017 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:22,076 INFO Welcome to the CDS
2023-03-20 11:31:22,076 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:22,177 INFO Request is queued
no data200310
2023-03-20 11:31:23,230 INFO Request is failed
2023-03-20 11:31:23,231 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:23,232 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:23,232 ERROR Traceback (most recent call last):
2023-03-20 11:31:23,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,233 ERROR result = handle_locally()
2023-03-20 11:31:23,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,234 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:23,235 ERROR raise exception
2023-03-20 11:31:23,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,235 ERROR result = handle_locally()
2023-03-20 11:31:23,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,236 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:23,237 ERROR raise exception
2023-03-20 11:31:23,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,237 ERROR result = handle_locally()
2023-03-20 11:31:23,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,238 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:23,239 ERROR raise exception
2023-03-20 11:31:23,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,240 ERROR result = handle_locally()
2023-03-20 11:31:23,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,240 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:23,241 ERROR raise exception
2023-03-20 11:31:23,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,242 ERROR result = handle_locally()
2023-03-20 11:31:23,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,243 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:23,243 ERROR raise exception
2023-03-20 11:31:23,244 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,244 ERROR result = handle_locally()
2023-03-20 11:31:23,244 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,245 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,245 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:23,245 ERROR raise exception
2023-03-20 11:31:23,246 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,246 ERROR result = handle_locally()
2023-03-20 11:31:23,246 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:23,247 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:23,247 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:23,248 ERROR raise exception
2023-03-20 11:31:23,248 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:23,248 ERROR result = handle_locally()
2023-03-20 11:31:23,249 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:23,249 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:23,249 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:23,250 ERROR constraint_type_strict)
2023-03-20 11:31:23,250 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:23,250 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:23,251 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:23,251 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:23,252 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:23,308 INFO Welcome to the CDS
2023-03-20 11:31:23,308 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:23,415 INFO Request is queued
no data200311
2023-03-20 11:31:24,468 INFO Request is failed
2023-03-20 11:31:24,469 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:24,470 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:24,470 ERROR Traceback (most recent call last):
2023-03-20 11:31:24,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,471 ERROR result = handle_locally()
2023-03-20 11:31:24,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,471 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:24,472 ERROR raise exception
2023-03-20 11:31:24,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,473 ERROR result = handle_locally()
2023-03-20 11:31:24,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,474 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:24,474 ERROR raise exception
2023-03-20 11:31:24,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,475 ERROR result = handle_locally()
2023-03-20 11:31:24,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,476 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:24,477 ERROR raise exception
2023-03-20 11:31:24,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,477 ERROR result = handle_locally()
2023-03-20 11:31:24,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,478 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:24,479 ERROR raise exception
2023-03-20 11:31:24,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,479 ERROR result = handle_locally()
2023-03-20 11:31:24,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,480 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:24,481 ERROR raise exception
2023-03-20 11:31:24,481 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,482 ERROR result = handle_locally()
2023-03-20 11:31:24,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,482 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:24,483 ERROR raise exception
2023-03-20 11:31:24,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,484 ERROR result = handle_locally()
2023-03-20 11:31:24,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:24,485 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:24,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:24,485 ERROR raise exception
2023-03-20 11:31:24,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:24,486 ERROR result = handle_locally()
2023-03-20 11:31:24,486 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:24,487 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:24,487 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:24,487 ERROR constraint_type_strict)
2023-03-20 11:31:24,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:24,488 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:24,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:24,489 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:24,489 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:24,537 INFO Welcome to the CDS
2023-03-20 11:31:24,538 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:24,660 INFO Request is queued
no data200312
2023-03-20 11:31:25,712 INFO Request is failed
2023-03-20 11:31:25,713 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:25,713 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:25,714 ERROR Traceback (most recent call last):
2023-03-20 11:31:25,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,715 ERROR result = handle_locally()
2023-03-20 11:31:25,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,715 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:25,716 ERROR raise exception
2023-03-20 11:31:25,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,717 ERROR result = handle_locally()
2023-03-20 11:31:25,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,718 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:25,718 ERROR raise exception
2023-03-20 11:31:25,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,719 ERROR result = handle_locally()
2023-03-20 11:31:25,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,720 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:25,721 ERROR raise exception
2023-03-20 11:31:25,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,721 ERROR result = handle_locally()
2023-03-20 11:31:25,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,722 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:25,723 ERROR raise exception
2023-03-20 11:31:25,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,724 ERROR result = handle_locally()
2023-03-20 11:31:25,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,725 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:25,725 ERROR raise exception
2023-03-20 11:31:25,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,726 ERROR result = handle_locally()
2023-03-20 11:31:25,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,727 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:25,728 ERROR raise exception
2023-03-20 11:31:25,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,728 ERROR result = handle_locally()
2023-03-20 11:31:25,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:25,729 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:25,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:25,730 ERROR raise exception
2023-03-20 11:31:25,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:25,731 ERROR result = handle_locally()
2023-03-20 11:31:25,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:25,732 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:25,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:25,732 ERROR constraint_type_strict)
2023-03-20 11:31:25,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:25,733 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:25,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:25,734 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:25,734 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:25,789 INFO Welcome to the CDS
2023-03-20 11:31:25,789 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:25,901 INFO Request is queued
no data200401
2023-03-20 11:31:26,966 INFO Request is failed
2023-03-20 11:31:26,967 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:26,968 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:26,968 ERROR Traceback (most recent call last):
2023-03-20 11:31:26,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,969 ERROR result = handle_locally()
2023-03-20 11:31:26,970 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,970 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,970 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:26,971 ERROR raise exception
2023-03-20 11:31:26,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,972 ERROR result = handle_locally()
2023-03-20 11:31:26,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,972 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:26,973 ERROR raise exception
2023-03-20 11:31:26,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,974 ERROR result = handle_locally()
2023-03-20 11:31:26,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,975 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:26,976 ERROR raise exception
2023-03-20 11:31:26,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,976 ERROR result = handle_locally()
2023-03-20 11:31:26,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,977 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:26,978 ERROR raise exception
2023-03-20 11:31:26,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,979 ERROR result = handle_locally()
2023-03-20 11:31:26,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,980 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:26,980 ERROR raise exception
2023-03-20 11:31:26,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,981 ERROR result = handle_locally()
2023-03-20 11:31:26,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,982 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:26,983 ERROR raise exception
2023-03-20 11:31:26,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,984 ERROR result = handle_locally()
2023-03-20 11:31:26,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:26,984 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:26,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:26,985 ERROR raise exception
2023-03-20 11:31:26,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:26,986 ERROR result = handle_locally()
2023-03-20 11:31:26,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:26,987 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:26,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:26,987 ERROR constraint_type_strict)
2023-03-20 11:31:26,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:26,988 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:26,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:26,989 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:26,989 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:27,042 INFO Welcome to the CDS
2023-03-20 11:31:27,043 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:27,167 INFO Request is queued
no data200402
2023-03-20 11:31:28,254 INFO Request is failed
2023-03-20 11:31:28,254 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:28,255 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:28,255 ERROR Traceback (most recent call last):
2023-03-20 11:31:28,256 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,256 ERROR result = handle_locally()
2023-03-20 11:31:28,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,257 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:28,258 ERROR raise exception
2023-03-20 11:31:28,258 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,259 ERROR result = handle_locally()
2023-03-20 11:31:28,259 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,259 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:28,260 ERROR raise exception
2023-03-20 11:31:28,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,261 ERROR result = handle_locally()
2023-03-20 11:31:28,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,262 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:28,263 ERROR raise exception
2023-03-20 11:31:28,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,263 ERROR result = handle_locally()
2023-03-20 11:31:28,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,264 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:28,265 ERROR raise exception
2023-03-20 11:31:28,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,266 ERROR result = handle_locally()
2023-03-20 11:31:28,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,267 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:28,267 ERROR raise exception
2023-03-20 11:31:28,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,268 ERROR result = handle_locally()
2023-03-20 11:31:28,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,269 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:28,270 ERROR raise exception
2023-03-20 11:31:28,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,271 ERROR result = handle_locally()
2023-03-20 11:31:28,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:28,271 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:28,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:28,272 ERROR raise exception
2023-03-20 11:31:28,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:28,273 ERROR result = handle_locally()
2023-03-20 11:31:28,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:28,274 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:28,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:28,274 ERROR constraint_type_strict)
2023-03-20 11:31:28,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:28,275 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:28,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:28,276 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:28,276 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:28,346 INFO Welcome to the CDS
2023-03-20 11:31:28,347 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:28,464 INFO Request is queued
no data200403
2023-03-20 11:31:29,519 INFO Request is failed
2023-03-20 11:31:29,520 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:29,520 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:29,521 ERROR Traceback (most recent call last):
2023-03-20 11:31:29,521 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,522 ERROR result = handle_locally()
2023-03-20 11:31:29,522 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,523 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:29,523 ERROR raise exception
2023-03-20 11:31:29,524 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,524 ERROR result = handle_locally()
2023-03-20 11:31:29,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,525 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:29,526 ERROR raise exception
2023-03-20 11:31:29,526 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,526 ERROR result = handle_locally()
2023-03-20 11:31:29,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,527 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:29,528 ERROR raise exception
2023-03-20 11:31:29,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,529 ERROR result = handle_locally()
2023-03-20 11:31:29,529 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,530 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:29,530 ERROR raise exception
2023-03-20 11:31:29,531 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,531 ERROR result = handle_locally()
2023-03-20 11:31:29,532 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,532 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,532 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:29,533 ERROR raise exception
2023-03-20 11:31:29,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,534 ERROR result = handle_locally()
2023-03-20 11:31:29,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,534 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:29,535 ERROR raise exception
2023-03-20 11:31:29,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,536 ERROR result = handle_locally()
2023-03-20 11:31:29,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:29,537 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:29,537 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:29,537 ERROR raise exception
2023-03-20 11:31:29,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:29,538 ERROR result = handle_locally()
2023-03-20 11:31:29,539 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:29,539 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:29,539 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:29,540 ERROR constraint_type_strict)
2023-03-20 11:31:29,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:29,541 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:29,541 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:29,541 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:29,542 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:29,595 INFO Welcome to the CDS
2023-03-20 11:31:29,596 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:29,680 INFO Request is queued
no data200404
2023-03-20 11:31:30,739 INFO Request is failed
2023-03-20 11:31:30,740 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:30,740 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:30,740 ERROR Traceback (most recent call last):
2023-03-20 11:31:30,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,741 ERROR result = handle_locally()
2023-03-20 11:31:30,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,742 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:30,743 ERROR raise exception
2023-03-20 11:31:30,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,744 ERROR result = handle_locally()
2023-03-20 11:31:30,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,745 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:30,745 ERROR raise exception
2023-03-20 11:31:30,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,746 ERROR result = handle_locally()
2023-03-20 11:31:30,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,747 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:30,748 ERROR raise exception
2023-03-20 11:31:30,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,748 ERROR result = handle_locally()
2023-03-20 11:31:30,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,749 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:30,750 ERROR raise exception
2023-03-20 11:31:30,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,751 ERROR result = handle_locally()
2023-03-20 11:31:30,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,751 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:30,752 ERROR raise exception
2023-03-20 11:31:30,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,753 ERROR result = handle_locally()
2023-03-20 11:31:30,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,754 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:30,754 ERROR raise exception
2023-03-20 11:31:30,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,755 ERROR result = handle_locally()
2023-03-20 11:31:30,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:30,756 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:30,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:30,757 ERROR raise exception
2023-03-20 11:31:30,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:30,757 ERROR result = handle_locally()
2023-03-20 11:31:30,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:30,758 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:30,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:30,759 ERROR constraint_type_strict)
2023-03-20 11:31:30,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:30,760 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:30,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:30,761 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:30,761 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:30,817 INFO Welcome to the CDS
2023-03-20 11:31:30,818 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:30,916 INFO Request is queued
no data200405
2023-03-20 11:31:31,982 INFO Request is failed
2023-03-20 11:31:31,983 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:31,983 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:31,984 ERROR Traceback (most recent call last):
2023-03-20 11:31:31,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,985 ERROR result = handle_locally()
2023-03-20 11:31:31,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,985 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:31,986 ERROR raise exception
2023-03-20 11:31:31,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,987 ERROR result = handle_locally()
2023-03-20 11:31:31,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,988 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:31,988 ERROR raise exception
2023-03-20 11:31:31,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,989 ERROR result = handle_locally()
2023-03-20 11:31:31,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,990 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:31,991 ERROR raise exception
2023-03-20 11:31:31,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,991 ERROR result = handle_locally()
2023-03-20 11:31:31,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,992 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:31,993 ERROR raise exception
2023-03-20 11:31:31,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,994 ERROR result = handle_locally()
2023-03-20 11:31:31,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,994 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:31,995 ERROR raise exception
2023-03-20 11:31:31,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,996 ERROR result = handle_locally()
2023-03-20 11:31:31,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,997 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:31,998 ERROR raise exception
2023-03-20 11:31:31,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:31,998 ERROR result = handle_locally()
2023-03-20 11:31:31,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:31,999 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:31,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:32,000 ERROR raise exception
2023-03-20 11:31:32,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:32,001 ERROR result = handle_locally()
2023-03-20 11:31:32,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:32,001 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:32,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:32,002 ERROR constraint_type_strict)
2023-03-20 11:31:32,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:32,003 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:32,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:32,004 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:32,004 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:32,085 INFO Welcome to the CDS
2023-03-20 11:31:32,086 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:32,196 INFO Request is queued
no data200406
2023-03-20 11:31:33,264 INFO Request is failed
2023-03-20 11:31:33,265 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:33,266 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:33,266 ERROR Traceback (most recent call last):
2023-03-20 11:31:33,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,267 ERROR result = handle_locally()
2023-03-20 11:31:33,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,268 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:33,268 ERROR raise exception
2023-03-20 11:31:33,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,269 ERROR result = handle_locally()
2023-03-20 11:31:33,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,270 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:33,271 ERROR raise exception
2023-03-20 11:31:33,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,271 ERROR result = handle_locally()
2023-03-20 11:31:33,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,272 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:33,273 ERROR raise exception
2023-03-20 11:31:33,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,274 ERROR result = handle_locally()
2023-03-20 11:31:33,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,274 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:33,275 ERROR raise exception
2023-03-20 11:31:33,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,276 ERROR result = handle_locally()
2023-03-20 11:31:33,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,277 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:33,277 ERROR raise exception
2023-03-20 11:31:33,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,278 ERROR result = handle_locally()
2023-03-20 11:31:33,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:33,279 ERROR raise exception
2023-03-20 11:31:33,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,280 ERROR result = handle_locally()
2023-03-20 11:31:33,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:33,281 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:33,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:33,282 ERROR raise exception
2023-03-20 11:31:33,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:33,282 ERROR result = handle_locally()
2023-03-20 11:31:33,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:33,283 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:33,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:33,284 ERROR constraint_type_strict)
2023-03-20 11:31:33,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:33,285 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:33,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:33,286 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:33,286 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:33,342 INFO Welcome to the CDS
2023-03-20 11:31:33,342 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:33,444 INFO Request is queued
no data200407
2023-03-20 11:31:34,496 INFO Request is failed
2023-03-20 11:31:34,497 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:34,498 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:34,498 ERROR Traceback (most recent call last):
2023-03-20 11:31:34,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,499 ERROR result = handle_locally()
2023-03-20 11:31:34,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,500 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:34,501 ERROR raise exception
2023-03-20 11:31:34,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,501 ERROR result = handle_locally()
2023-03-20 11:31:34,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,502 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:34,503 ERROR raise exception
2023-03-20 11:31:34,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,504 ERROR result = handle_locally()
2023-03-20 11:31:34,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,504 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:34,505 ERROR raise exception
2023-03-20 11:31:34,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,506 ERROR result = handle_locally()
2023-03-20 11:31:34,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,507 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:34,507 ERROR raise exception
2023-03-20 11:31:34,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,508 ERROR result = handle_locally()
2023-03-20 11:31:34,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,509 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:34,509 ERROR raise exception
2023-03-20 11:31:34,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,510 ERROR result = handle_locally()
2023-03-20 11:31:34,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,511 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:34,512 ERROR raise exception
2023-03-20 11:31:34,512 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,512 ERROR result = handle_locally()
2023-03-20 11:31:34,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:34,513 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:34,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:34,514 ERROR raise exception
2023-03-20 11:31:34,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:34,514 ERROR result = handle_locally()
2023-03-20 11:31:34,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:34,515 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:34,516 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:34,516 ERROR constraint_type_strict)
2023-03-20 11:31:34,516 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:34,517 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:34,517 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:34,517 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:34,518 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:34,570 INFO Welcome to the CDS
2023-03-20 11:31:34,570 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200408
2023-03-20 11:31:34,720 INFO Request is queued
2023-03-20 11:31:35,772 INFO Request is failed
2023-03-20 11:31:35,773 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:35,773 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:35,774 ERROR Traceback (most recent call last):
2023-03-20 11:31:35,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,774 ERROR result = handle_locally()
2023-03-20 11:31:35,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,775 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:35,776 ERROR raise exception
2023-03-20 11:31:35,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,777 ERROR result = handle_locally()
2023-03-20 11:31:35,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,777 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:35,778 ERROR raise exception
2023-03-20 11:31:35,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,779 ERROR result = handle_locally()
2023-03-20 11:31:35,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:35,780 ERROR raise exception
2023-03-20 11:31:35,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,781 ERROR result = handle_locally()
2023-03-20 11:31:35,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,782 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:35,782 ERROR raise exception
2023-03-20 11:31:35,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,783 ERROR result = handle_locally()
2023-03-20 11:31:35,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,784 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:35,785 ERROR raise exception
2023-03-20 11:31:35,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,785 ERROR result = handle_locally()
2023-03-20 11:31:35,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,786 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:35,787 ERROR raise exception
2023-03-20 11:31:35,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,787 ERROR result = handle_locally()
2023-03-20 11:31:35,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:35,788 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:35,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:35,789 ERROR raise exception
2023-03-20 11:31:35,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:35,790 ERROR result = handle_locally()
2023-03-20 11:31:35,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:35,790 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:35,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:35,791 ERROR constraint_type_strict)
2023-03-20 11:31:35,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:35,792 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:35,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:35,793 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:35,793 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:35,842 INFO Welcome to the CDS
2023-03-20 11:31:35,843 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:35,978 INFO Request is queued
no data200409
2023-03-20 11:31:37,036 INFO Request is failed
2023-03-20 11:31:37,037 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:37,037 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:37,037 ERROR Traceback (most recent call last):
2023-03-20 11:31:37,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,038 ERROR result = handle_locally()
2023-03-20 11:31:37,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,039 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:37,040 ERROR raise exception
2023-03-20 11:31:37,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,040 ERROR result = handle_locally()
2023-03-20 11:31:37,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,041 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:37,042 ERROR raise exception
2023-03-20 11:31:37,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,043 ERROR result = handle_locally()
2023-03-20 11:31:37,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,043 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:37,044 ERROR raise exception
2023-03-20 11:31:37,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,045 ERROR result = handle_locally()
2023-03-20 11:31:37,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,045 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:37,046 ERROR raise exception
2023-03-20 11:31:37,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,047 ERROR result = handle_locally()
2023-03-20 11:31:37,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,048 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:37,048 ERROR raise exception
2023-03-20 11:31:37,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,049 ERROR result = handle_locally()
2023-03-20 11:31:37,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,050 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:37,050 ERROR raise exception
2023-03-20 11:31:37,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,051 ERROR result = handle_locally()
2023-03-20 11:31:37,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:37,052 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:37,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:37,053 ERROR raise exception
2023-03-20 11:31:37,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:37,053 ERROR result = handle_locally()
2023-03-20 11:31:37,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:37,054 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:37,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:37,055 ERROR constraint_type_strict)
2023-03-20 11:31:37,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:37,055 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:37,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:37,056 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:37,057 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:37,109 INFO Welcome to the CDS
2023-03-20 11:31:37,110 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:37,257 INFO Request is queued
no data200410
2023-03-20 11:31:38,311 INFO Request is failed
2023-03-20 11:31:38,312 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:38,313 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:38,313 ERROR Traceback (most recent call last):
2023-03-20 11:31:38,313 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,314 ERROR result = handle_locally()
2023-03-20 11:31:38,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,314 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,315 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:38,315 ERROR raise exception
2023-03-20 11:31:38,315 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,316 ERROR result = handle_locally()
2023-03-20 11:31:38,316 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,317 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,317 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:38,317 ERROR raise exception
2023-03-20 11:31:38,318 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,318 ERROR result = handle_locally()
2023-03-20 11:31:38,318 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,319 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,319 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:38,319 ERROR raise exception
2023-03-20 11:31:38,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,320 ERROR result = handle_locally()
2023-03-20 11:31:38,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,321 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,321 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:38,321 ERROR raise exception
2023-03-20 11:31:38,322 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,322 ERROR result = handle_locally()
2023-03-20 11:31:38,322 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,323 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,323 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:38,324 ERROR raise exception
2023-03-20 11:31:38,324 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,324 ERROR result = handle_locally()
2023-03-20 11:31:38,325 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,325 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,325 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:38,326 ERROR raise exception
2023-03-20 11:31:38,326 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,326 ERROR result = handle_locally()
2023-03-20 11:31:38,327 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:38,327 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:38,328 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:38,328 ERROR raise exception
2023-03-20 11:31:38,328 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:38,329 ERROR result = handle_locally()
2023-03-20 11:31:38,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:38,329 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:38,330 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:38,330 ERROR constraint_type_strict)
2023-03-20 11:31:38,330 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:38,331 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:38,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:38,332 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:38,332 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:38,385 INFO Welcome to the CDS
2023-03-20 11:31:38,386 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200411
2023-03-20 11:31:38,554 INFO Request is queued
2023-03-20 11:31:39,611 INFO Request is failed
2023-03-20 11:31:39,612 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:39,612 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:39,613 ERROR Traceback (most recent call last):
2023-03-20 11:31:39,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,614 ERROR result = handle_locally()
2023-03-20 11:31:39,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,614 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:39,615 ERROR raise exception
2023-03-20 11:31:39,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,616 ERROR result = handle_locally()
2023-03-20 11:31:39,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,617 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,617 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:39,617 ERROR raise exception
2023-03-20 11:31:39,618 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,618 ERROR result = handle_locally()
2023-03-20 11:31:39,618 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,619 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,619 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:39,620 ERROR raise exception
2023-03-20 11:31:39,620 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,620 ERROR result = handle_locally()
2023-03-20 11:31:39,621 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,621 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,621 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:39,622 ERROR raise exception
2023-03-20 11:31:39,622 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,622 ERROR result = handle_locally()
2023-03-20 11:31:39,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,623 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:39,624 ERROR raise exception
2023-03-20 11:31:39,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,625 ERROR result = handle_locally()
2023-03-20 11:31:39,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,625 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:39,626 ERROR raise exception
2023-03-20 11:31:39,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,627 ERROR result = handle_locally()
2023-03-20 11:31:39,627 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:39,627 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:39,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:39,628 ERROR raise exception
2023-03-20 11:31:39,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:39,629 ERROR result = handle_locally()
2023-03-20 11:31:39,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:39,630 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:39,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:39,630 ERROR constraint_type_strict)
2023-03-20 11:31:39,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:39,631 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:39,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:39,632 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:39,632 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:39,689 INFO Welcome to the CDS
2023-03-20 11:31:39,689 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:39,751 INFO Request is queued
no data200412
2023-03-20 11:31:40,804 INFO Request is failed
2023-03-20 11:31:40,805 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:40,805 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:40,806 ERROR Traceback (most recent call last):
2023-03-20 11:31:40,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,806 ERROR result = handle_locally()
2023-03-20 11:31:40,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,807 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:40,808 ERROR raise exception
2023-03-20 11:31:40,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,809 ERROR result = handle_locally()
2023-03-20 11:31:40,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,809 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:40,810 ERROR raise exception
2023-03-20 11:31:40,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,811 ERROR result = handle_locally()
2023-03-20 11:31:40,811 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,812 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,812 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:40,812 ERROR raise exception
2023-03-20 11:31:40,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,813 ERROR result = handle_locally()
2023-03-20 11:31:40,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,814 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:40,814 ERROR raise exception
2023-03-20 11:31:40,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,815 ERROR result = handle_locally()
2023-03-20 11:31:40,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,816 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:40,817 ERROR raise exception
2023-03-20 11:31:40,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,817 ERROR result = handle_locally()
2023-03-20 11:31:40,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,818 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:40,819 ERROR raise exception
2023-03-20 11:31:40,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,819 ERROR result = handle_locally()
2023-03-20 11:31:40,820 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:40,820 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:40,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:40,821 ERROR raise exception
2023-03-20 11:31:40,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:40,822 ERROR result = handle_locally()
2023-03-20 11:31:40,822 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:40,822 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:40,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:40,823 ERROR constraint_type_strict)
2023-03-20 11:31:40,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:40,824 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:40,824 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:40,825 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:40,825 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:40,874 INFO Welcome to the CDS
2023-03-20 11:31:40,874 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:40,982 INFO Request is queued
no data200501
2023-03-20 11:31:42,035 INFO Request is failed
2023-03-20 11:31:42,035 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:42,036 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:42,036 ERROR Traceback (most recent call last):
2023-03-20 11:31:42,037 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,037 ERROR result = handle_locally()
2023-03-20 11:31:42,037 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,038 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:42,038 ERROR raise exception
2023-03-20 11:31:42,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,039 ERROR result = handle_locally()
2023-03-20 11:31:42,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,040 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:42,040 ERROR raise exception
2023-03-20 11:31:42,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,041 ERROR result = handle_locally()
2023-03-20 11:31:42,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,042 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:42,042 ERROR raise exception
2023-03-20 11:31:42,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,043 ERROR result = handle_locally()
2023-03-20 11:31:42,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,044 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:42,044 ERROR raise exception
2023-03-20 11:31:42,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,045 ERROR result = handle_locally()
2023-03-20 11:31:42,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,046 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:42,047 ERROR raise exception
2023-03-20 11:31:42,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,047 ERROR result = handle_locally()
2023-03-20 11:31:42,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,048 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:42,049 ERROR raise exception
2023-03-20 11:31:42,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,049 ERROR result = handle_locally()
2023-03-20 11:31:42,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:42,050 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:42,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:42,051 ERROR raise exception
2023-03-20 11:31:42,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:42,051 ERROR result = handle_locally()
2023-03-20 11:31:42,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:42,052 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:42,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:42,053 ERROR constraint_type_strict)
2023-03-20 11:31:42,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:42,053 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:42,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:42,054 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:42,054 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:42,110 INFO Welcome to the CDS
2023-03-20 11:31:42,110 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:42,178 INFO Request is queued
no data200502
2023-03-20 11:31:43,233 INFO Request is failed
2023-03-20 11:31:43,234 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:43,234 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:43,235 ERROR Traceback (most recent call last):
2023-03-20 11:31:43,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,235 ERROR result = handle_locally()
2023-03-20 11:31:43,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,236 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:43,237 ERROR raise exception
2023-03-20 11:31:43,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,238 ERROR result = handle_locally()
2023-03-20 11:31:43,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,238 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:43,239 ERROR raise exception
2023-03-20 11:31:43,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,240 ERROR result = handle_locally()
2023-03-20 11:31:43,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,241 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:43,241 ERROR raise exception
2023-03-20 11:31:43,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,242 ERROR result = handle_locally()
2023-03-20 11:31:43,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,243 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:43,243 ERROR raise exception
2023-03-20 11:31:43,244 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,244 ERROR result = handle_locally()
2023-03-20 11:31:43,245 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,245 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,245 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:43,246 ERROR raise exception
2023-03-20 11:31:43,246 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,246 ERROR result = handle_locally()
2023-03-20 11:31:43,247 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,247 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,247 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:43,248 ERROR raise exception
2023-03-20 11:31:43,248 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,248 ERROR result = handle_locally()
2023-03-20 11:31:43,249 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:43,249 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:43,250 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:43,250 ERROR raise exception
2023-03-20 11:31:43,250 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:43,251 ERROR result = handle_locally()
2023-03-20 11:31:43,251 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:43,251 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:43,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:43,252 ERROR constraint_type_strict)
2023-03-20 11:31:43,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:43,253 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:43,253 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:43,253 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:43,254 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:43,310 INFO Welcome to the CDS
2023-03-20 11:31:43,311 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200503
2023-03-20 11:31:43,543 INFO Request is queued
2023-03-20 11:31:44,596 INFO Request is failed
2023-03-20 11:31:44,597 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:44,598 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:44,598 ERROR Traceback (most recent call last):
2023-03-20 11:31:44,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,599 ERROR result = handle_locally()
2023-03-20 11:31:44,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,600 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:44,600 ERROR raise exception
2023-03-20 11:31:44,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,601 ERROR result = handle_locally()
2023-03-20 11:31:44,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,602 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:44,603 ERROR raise exception
2023-03-20 11:31:44,603 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,603 ERROR result = handle_locally()
2023-03-20 11:31:44,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,604 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:44,605 ERROR raise exception
2023-03-20 11:31:44,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,605 ERROR result = handle_locally()
2023-03-20 11:31:44,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,606 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,607 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:44,607 ERROR raise exception
2023-03-20 11:31:44,607 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,608 ERROR result = handle_locally()
2023-03-20 11:31:44,608 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,608 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:44,609 ERROR raise exception
2023-03-20 11:31:44,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,610 ERROR result = handle_locally()
2023-03-20 11:31:44,610 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,610 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,611 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:44,611 ERROR raise exception
2023-03-20 11:31:44,612 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,612 ERROR result = handle_locally()
2023-03-20 11:31:44,612 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:44,613 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:44,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:44,613 ERROR raise exception
2023-03-20 11:31:44,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:44,614 ERROR result = handle_locally()
2023-03-20 11:31:44,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:44,615 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:44,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:44,615 ERROR constraint_type_strict)
2023-03-20 11:31:44,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:44,616 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:44,617 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:44,617 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:44,617 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:44,668 INFO Welcome to the CDS
2023-03-20 11:31:44,669 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:44,786 INFO Request is queued
no data200504
2023-03-20 11:31:45,858 INFO Request is failed
2023-03-20 11:31:45,859 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:45,859 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:45,860 ERROR Traceback (most recent call last):
2023-03-20 11:31:45,860 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,861 ERROR result = handle_locally()
2023-03-20 11:31:45,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,861 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,862 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:45,862 ERROR raise exception
2023-03-20 11:31:45,862 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,863 ERROR result = handle_locally()
2023-03-20 11:31:45,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,863 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,864 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:45,864 ERROR raise exception
2023-03-20 11:31:45,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,865 ERROR result = handle_locally()
2023-03-20 11:31:45,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,866 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:45,866 ERROR raise exception
2023-03-20 11:31:45,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,867 ERROR result = handle_locally()
2023-03-20 11:31:45,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,868 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:45,868 ERROR raise exception
2023-03-20 11:31:45,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,869 ERROR result = handle_locally()
2023-03-20 11:31:45,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,870 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:45,871 ERROR raise exception
2023-03-20 11:31:45,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,871 ERROR result = handle_locally()
2023-03-20 11:31:45,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,872 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:45,873 ERROR raise exception
2023-03-20 11:31:45,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,873 ERROR result = handle_locally()
2023-03-20 11:31:45,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:45,874 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:45,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:45,875 ERROR raise exception
2023-03-20 11:31:45,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:45,876 ERROR result = handle_locally()
2023-03-20 11:31:45,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:45,876 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:45,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:45,877 ERROR constraint_type_strict)
2023-03-20 11:31:45,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:45,878 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:45,878 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:45,879 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:45,879 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:45,930 INFO Welcome to the CDS
2023-03-20 11:31:45,930 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200505
2023-03-20 11:31:46,148 INFO Request is queued
2023-03-20 11:31:47,204 INFO Request is failed
2023-03-20 11:31:47,205 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:47,205 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:47,206 ERROR Traceback (most recent call last):
2023-03-20 11:31:47,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,206 ERROR result = handle_locally()
2023-03-20 11:31:47,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,207 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:47,208 ERROR raise exception
2023-03-20 11:31:47,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,209 ERROR result = handle_locally()
2023-03-20 11:31:47,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,209 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:47,210 ERROR raise exception
2023-03-20 11:31:47,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,211 ERROR result = handle_locally()
2023-03-20 11:31:47,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,211 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:47,212 ERROR raise exception
2023-03-20 11:31:47,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,213 ERROR result = handle_locally()
2023-03-20 11:31:47,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,213 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:47,214 ERROR raise exception
2023-03-20 11:31:47,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,215 ERROR result = handle_locally()
2023-03-20 11:31:47,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,216 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:47,216 ERROR raise exception
2023-03-20 11:31:47,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,217 ERROR result = handle_locally()
2023-03-20 11:31:47,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,218 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:47,218 ERROR raise exception
2023-03-20 11:31:47,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,219 ERROR result = handle_locally()
2023-03-20 11:31:47,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:47,220 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:47,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:47,220 ERROR raise exception
2023-03-20 11:31:47,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:47,221 ERROR result = handle_locally()
2023-03-20 11:31:47,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:47,222 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:47,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:47,222 ERROR constraint_type_strict)
2023-03-20 11:31:47,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:47,223 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:47,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:47,224 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:47,224 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:47,278 INFO Welcome to the CDS
2023-03-20 11:31:47,278 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:47,374 INFO Request is queued
no data200506
2023-03-20 11:31:48,427 INFO Request is failed
2023-03-20 11:31:48,428 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:48,429 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:48,429 ERROR Traceback (most recent call last):
2023-03-20 11:31:48,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,430 ERROR result = handle_locally()
2023-03-20 11:31:48,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,431 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:48,432 ERROR raise exception
2023-03-20 11:31:48,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,432 ERROR result = handle_locally()
2023-03-20 11:31:48,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,433 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:48,434 ERROR raise exception
2023-03-20 11:31:48,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,434 ERROR result = handle_locally()
2023-03-20 11:31:48,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,435 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:48,436 ERROR raise exception
2023-03-20 11:31:48,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,437 ERROR result = handle_locally()
2023-03-20 11:31:48,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,437 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:48,438 ERROR raise exception
2023-03-20 11:31:48,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,439 ERROR result = handle_locally()
2023-03-20 11:31:48,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,441 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:48,442 ERROR raise exception
2023-03-20 11:31:48,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,443 ERROR result = handle_locally()
2023-03-20 11:31:48,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,443 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,444 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:48,444 ERROR raise exception
2023-03-20 11:31:48,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,445 ERROR result = handle_locally()
2023-03-20 11:31:48,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:48,446 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:48,446 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:48,446 ERROR raise exception
2023-03-20 11:31:48,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:48,447 ERROR result = handle_locally()
2023-03-20 11:31:48,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:48,448 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:48,448 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:48,448 ERROR constraint_type_strict)
2023-03-20 11:31:48,449 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:48,449 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:48,450 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:48,450 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:48,450 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:48,498 INFO Welcome to the CDS
2023-03-20 11:31:48,499 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:48,567 INFO Request is queued
no data200507
2023-03-20 11:31:49,619 INFO Request is failed
2023-03-20 11:31:49,620 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:49,621 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:49,621 ERROR Traceback (most recent call last):
2023-03-20 11:31:49,621 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,622 ERROR result = handle_locally()
2023-03-20 11:31:49,622 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,622 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:49,623 ERROR raise exception
2023-03-20 11:31:49,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,624 ERROR result = handle_locally()
2023-03-20 11:31:49,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,625 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:49,625 ERROR raise exception
2023-03-20 11:31:49,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,626 ERROR result = handle_locally()
2023-03-20 11:31:49,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,627 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,627 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:49,628 ERROR raise exception
2023-03-20 11:31:49,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,628 ERROR result = handle_locally()
2023-03-20 11:31:49,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,629 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:49,630 ERROR raise exception
2023-03-20 11:31:49,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,630 ERROR result = handle_locally()
2023-03-20 11:31:49,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,631 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,632 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:49,632 ERROR raise exception
2023-03-20 11:31:49,632 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,633 ERROR result = handle_locally()
2023-03-20 11:31:49,633 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,633 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:49,634 ERROR raise exception
2023-03-20 11:31:49,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,635 ERROR result = handle_locally()
2023-03-20 11:31:49,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:49,635 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:49,636 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:49,636 ERROR raise exception
2023-03-20 11:31:49,636 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:49,637 ERROR result = handle_locally()
2023-03-20 11:31:49,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:49,638 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:49,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:49,638 ERROR constraint_type_strict)
2023-03-20 11:31:49,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:49,639 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:49,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:49,640 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:49,640 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:49,693 INFO Welcome to the CDS
2023-03-20 11:31:49,694 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200508
2023-03-20 11:31:49,871 INFO Request is queued
2023-03-20 11:31:50,924 INFO Request is failed
2023-03-20 11:31:50,925 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:50,925 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:50,926 ERROR Traceback (most recent call last):
2023-03-20 11:31:50,926 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,926 ERROR result = handle_locally()
2023-03-20 11:31:50,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,927 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,927 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:50,928 ERROR raise exception
2023-03-20 11:31:50,928 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,928 ERROR result = handle_locally()
2023-03-20 11:31:50,929 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,929 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,929 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:50,930 ERROR raise exception
2023-03-20 11:31:50,930 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,931 ERROR result = handle_locally()
2023-03-20 11:31:50,931 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,931 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:50,935 ERROR raise exception
2023-03-20 11:31:50,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,936 ERROR result = handle_locally()
2023-03-20 11:31:50,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,936 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:50,937 ERROR raise exception
2023-03-20 11:31:50,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,938 ERROR result = handle_locally()
2023-03-20 11:31:50,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,939 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:50,939 ERROR raise exception
2023-03-20 11:31:50,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,940 ERROR result = handle_locally()
2023-03-20 11:31:50,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,941 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:50,942 ERROR raise exception
2023-03-20 11:31:50,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,942 ERROR result = handle_locally()
2023-03-20 11:31:50,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:50,943 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:50,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:50,944 ERROR raise exception
2023-03-20 11:31:50,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:50,944 ERROR result = handle_locally()
2023-03-20 11:31:50,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:50,945 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:50,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:50,946 ERROR constraint_type_strict)
2023-03-20 11:31:50,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:50,947 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:50,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:50,947 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:50,948 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:50,997 INFO Welcome to the CDS
2023-03-20 11:31:50,998 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:51,089 INFO Request is queued
no data200509
2023-03-20 11:31:52,142 INFO Request is failed
2023-03-20 11:31:52,143 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:52,143 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:52,143 ERROR Traceback (most recent call last):
2023-03-20 11:31:52,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,144 ERROR result = handle_locally()
2023-03-20 11:31:52,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,145 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:52,146 ERROR raise exception
2023-03-20 11:31:52,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,146 ERROR result = handle_locally()
2023-03-20 11:31:52,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,147 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:52,148 ERROR raise exception
2023-03-20 11:31:52,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,148 ERROR result = handle_locally()
2023-03-20 11:31:52,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,149 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:52,150 ERROR raise exception
2023-03-20 11:31:52,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,151 ERROR result = handle_locally()
2023-03-20 11:31:52,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,151 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:52,152 ERROR raise exception
2023-03-20 11:31:52,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,153 ERROR result = handle_locally()
2023-03-20 11:31:52,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,153 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:52,154 ERROR raise exception
2023-03-20 11:31:52,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,155 ERROR result = handle_locally()
2023-03-20 11:31:52,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,155 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:52,156 ERROR raise exception
2023-03-20 11:31:52,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,157 ERROR result = handle_locally()
2023-03-20 11:31:52,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:52,158 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:52,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:52,158 ERROR raise exception
2023-03-20 11:31:52,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:52,159 ERROR result = handle_locally()
2023-03-20 11:31:52,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:52,160 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:52,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:52,160 ERROR constraint_type_strict)
2023-03-20 11:31:52,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:52,161 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:52,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:52,162 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:52,162 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:52,217 INFO Welcome to the CDS
2023-03-20 11:31:52,218 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200510
2023-03-20 11:31:52,777 INFO Request is queued
2023-03-20 11:31:53,830 INFO Request is failed
2023-03-20 11:31:53,831 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:53,831 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:53,832 ERROR Traceback (most recent call last):
2023-03-20 11:31:53,832 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,833 ERROR result = handle_locally()
2023-03-20 11:31:53,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,833 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:53,834 ERROR raise exception
2023-03-20 11:31:53,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,835 ERROR result = handle_locally()
2023-03-20 11:31:53,835 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,835 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:53,836 ERROR raise exception
2023-03-20 11:31:53,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,837 ERROR result = handle_locally()
2023-03-20 11:31:53,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,838 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,838 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:53,838 ERROR raise exception
2023-03-20 11:31:53,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,839 ERROR result = handle_locally()
2023-03-20 11:31:53,839 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,840 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,840 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:53,840 ERROR raise exception
2023-03-20 11:31:53,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,841 ERROR result = handle_locally()
2023-03-20 11:31:53,841 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,842 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,842 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:53,843 ERROR raise exception
2023-03-20 11:31:53,843 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,843 ERROR result = handle_locally()
2023-03-20 11:31:53,844 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,844 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,844 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:53,845 ERROR raise exception
2023-03-20 11:31:53,845 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,845 ERROR result = handle_locally()
2023-03-20 11:31:53,846 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:53,846 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:53,846 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:53,847 ERROR raise exception
2023-03-20 11:31:53,847 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:53,847 ERROR result = handle_locally()
2023-03-20 11:31:53,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:53,848 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:53,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:53,849 ERROR constraint_type_strict)
2023-03-20 11:31:53,849 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:53,849 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:53,850 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:53,850 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:53,851 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
no data200511
2023-03-20 11:31:54,233 INFO Welcome to the CDS
2023-03-20 11:31:54,234 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:54,326 INFO Request is queued
2023-03-20 11:31:55,418 INFO Request is failed
2023-03-20 11:31:55,419 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:55,419 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:55,420 ERROR Traceback (most recent call last):
2023-03-20 11:31:55,420 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,421 ERROR result = handle_locally()
2023-03-20 11:31:55,421 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,421 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,422 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:55,422 ERROR raise exception
2023-03-20 11:31:55,422 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,423 ERROR result = handle_locally()
2023-03-20 11:31:55,423 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,423 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,424 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:55,424 ERROR raise exception
2023-03-20 11:31:55,424 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,425 ERROR result = handle_locally()
2023-03-20 11:31:55,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,425 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:55,426 ERROR raise exception
2023-03-20 11:31:55,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,427 ERROR result = handle_locally()
2023-03-20 11:31:55,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,428 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:55,428 ERROR raise exception
2023-03-20 11:31:55,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,429 ERROR result = handle_locally()
2023-03-20 11:31:55,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,430 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:55,430 ERROR raise exception
2023-03-20 11:31:55,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,431 ERROR result = handle_locally()
2023-03-20 11:31:55,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,432 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:55,432 ERROR raise exception
2023-03-20 11:31:55,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,433 ERROR result = handle_locally()
2023-03-20 11:31:55,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:55,434 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:55,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:55,435 ERROR raise exception
2023-03-20 11:31:55,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:55,435 ERROR result = handle_locally()
2023-03-20 11:31:55,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:55,436 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:55,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:55,437 ERROR constraint_type_strict)
2023-03-20 11:31:55,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:55,437 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:55,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:55,438 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:55,438 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:55,501 INFO Welcome to the CDS
2023-03-20 11:31:55,502 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200512
2023-03-20 11:31:55,860 INFO Request is queued
2023-03-20 11:31:56,931 INFO Request is failed
2023-03-20 11:31:56,932 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:56,932 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:56,933 ERROR Traceback (most recent call last):
2023-03-20 11:31:56,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,934 ERROR result = handle_locally()
2023-03-20 11:31:56,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,934 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:56,935 ERROR raise exception
2023-03-20 11:31:56,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,936 ERROR result = handle_locally()
2023-03-20 11:31:56,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,936 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:56,937 ERROR raise exception
2023-03-20 11:31:56,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,938 ERROR result = handle_locally()
2023-03-20 11:31:56,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,939 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:56,939 ERROR raise exception
2023-03-20 11:31:56,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,940 ERROR result = handle_locally()
2023-03-20 11:31:56,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,941 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:56,941 ERROR raise exception
2023-03-20 11:31:56,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,942 ERROR result = handle_locally()
2023-03-20 11:31:56,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,943 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:56,943 ERROR raise exception
2023-03-20 11:31:56,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,944 ERROR result = handle_locally()
2023-03-20 11:31:56,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,945 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:56,946 ERROR raise exception
2023-03-20 11:31:56,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,946 ERROR result = handle_locally()
2023-03-20 11:31:56,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:56,947 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:56,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:56,948 ERROR raise exception
2023-03-20 11:31:56,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:56,949 ERROR result = handle_locally()
2023-03-20 11:31:56,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:56,949 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:56,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:56,950 ERROR constraint_type_strict)
2023-03-20 11:31:56,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:56,951 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:56,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:56,951 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:56,952 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:57,016 INFO Welcome to the CDS
2023-03-20 11:31:57,017 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:31:57,127 INFO Request is queued
no data200601
2023-03-20 11:31:58,222 INFO Request is failed
2023-03-20 11:31:58,223 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:58,223 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:58,223 ERROR Traceback (most recent call last):
2023-03-20 11:31:58,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,224 ERROR result = handle_locally()
2023-03-20 11:31:58,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,225 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:58,226 ERROR raise exception
2023-03-20 11:31:58,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,226 ERROR result = handle_locally()
2023-03-20 11:31:58,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,227 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:58,228 ERROR raise exception
2023-03-20 11:31:58,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,228 ERROR result = handle_locally()
2023-03-20 11:31:58,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,229 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:58,230 ERROR raise exception
2023-03-20 11:31:58,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,230 ERROR result = handle_locally()
2023-03-20 11:31:58,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,231 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:58,232 ERROR raise exception
2023-03-20 11:31:58,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,233 ERROR result = handle_locally()
2023-03-20 11:31:58,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,233 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:58,236 ERROR raise exception
2023-03-20 11:31:58,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,237 ERROR result = handle_locally()
2023-03-20 11:31:58,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,238 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:58,238 ERROR raise exception
2023-03-20 11:31:58,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,239 ERROR result = handle_locally()
2023-03-20 11:31:58,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:58,240 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:58,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:58,241 ERROR raise exception
2023-03-20 11:31:58,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:58,241 ERROR result = handle_locally()
2023-03-20 11:31:58,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:58,242 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:58,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:58,243 ERROR constraint_type_strict)
2023-03-20 11:31:58,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:58,243 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:58,244 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:58,244 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:58,244 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:58,341 INFO Welcome to the CDS
2023-03-20 11:31:58,342 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200602
2023-03-20 11:31:58,507 INFO Request is queued
2023-03-20 11:31:59,596 INFO Request is failed
2023-03-20 11:31:59,597 ERROR Message: the request you have submitted is not valid
2023-03-20 11:31:59,597 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:59,597 ERROR Traceback (most recent call last):
2023-03-20 11:31:59,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,598 ERROR result = handle_locally()
2023-03-20 11:31:59,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,599 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:31:59,600 ERROR raise exception
2023-03-20 11:31:59,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,600 ERROR result = handle_locally()
2023-03-20 11:31:59,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,601 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:31:59,602 ERROR raise exception
2023-03-20 11:31:59,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,602 ERROR result = handle_locally()
2023-03-20 11:31:59,603 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,603 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,603 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:31:59,604 ERROR raise exception
2023-03-20 11:31:59,604 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,604 ERROR result = handle_locally()
2023-03-20 11:31:59,605 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,605 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:59,606 ERROR raise exception
2023-03-20 11:31:59,606 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,607 ERROR result = handle_locally()
2023-03-20 11:31:59,607 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,607 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,608 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:59,608 ERROR raise exception
2023-03-20 11:31:59,608 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,609 ERROR result = handle_locally()
2023-03-20 11:31:59,609 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,609 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,610 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:59,610 ERROR raise exception
2023-03-20 11:31:59,610 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,611 ERROR result = handle_locally()
2023-03-20 11:31:59,611 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:31:59,612 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:31:59,612 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:31:59,612 ERROR raise exception
2023-03-20 11:31:59,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:31:59,613 ERROR result = handle_locally()
2023-03-20 11:31:59,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:31:59,614 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:31:59,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:31:59,614 ERROR constraint_type_strict)
2023-03-20 11:31:59,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:31:59,615 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:31:59,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:31:59,616 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:31:59,616 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:31:59,722 INFO Welcome to the CDS
2023-03-20 11:31:59,723 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200603
2023-03-20 11:31:59,845 INFO Request is queued
2023-03-20 11:32:00,931 INFO Request is failed
2023-03-20 11:32:00,932 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:00,932 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:00,933 ERROR Traceback (most recent call last):
2023-03-20 11:32:00,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,933 ERROR result = handle_locally()
2023-03-20 11:32:00,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,934 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:00,935 ERROR raise exception
2023-03-20 11:32:00,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,935 ERROR result = handle_locally()
2023-03-20 11:32:00,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,937 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:00,938 ERROR raise exception
2023-03-20 11:32:00,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,939 ERROR result = handle_locally()
2023-03-20 11:32:00,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,939 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:00,940 ERROR raise exception
2023-03-20 11:32:00,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,941 ERROR result = handle_locally()
2023-03-20 11:32:00,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,941 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:00,942 ERROR raise exception
2023-03-20 11:32:00,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,943 ERROR result = handle_locally()
2023-03-20 11:32:00,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,944 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:00,944 ERROR raise exception
2023-03-20 11:32:00,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,945 ERROR result = handle_locally()
2023-03-20 11:32:00,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,946 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:00,946 ERROR raise exception
2023-03-20 11:32:00,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,947 ERROR result = handle_locally()
2023-03-20 11:32:00,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:00,948 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:00,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:00,948 ERROR raise exception
2023-03-20 11:32:00,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:00,949 ERROR result = handle_locally()
2023-03-20 11:32:00,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:00,950 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:00,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:00,951 ERROR constraint_type_strict)
2023-03-20 11:32:00,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:00,951 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:00,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:00,952 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:00,952 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:01,053 INFO Welcome to the CDS
2023-03-20 11:32:01,054 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200604
2023-03-20 11:32:01,176 INFO Request is queued
2023-03-20 11:32:02,250 INFO Request is failed
2023-03-20 11:32:02,251 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:02,252 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:02,252 ERROR Traceback (most recent call last):
2023-03-20 11:32:02,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,253 ERROR result = handle_locally()
2023-03-20 11:32:02,253 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,253 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,254 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:02,254 ERROR raise exception
2023-03-20 11:32:02,255 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,255 ERROR result = handle_locally()
2023-03-20 11:32:02,255 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,256 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,256 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:02,256 ERROR raise exception
2023-03-20 11:32:02,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,257 ERROR result = handle_locally()
2023-03-20 11:32:02,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,258 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,258 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:02,258 ERROR raise exception
2023-03-20 11:32:02,259 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,259 ERROR result = handle_locally()
2023-03-20 11:32:02,259 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,260 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:02,260 ERROR raise exception
2023-03-20 11:32:02,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,261 ERROR result = handle_locally()
2023-03-20 11:32:02,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,262 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:02,263 ERROR raise exception
2023-03-20 11:32:02,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,263 ERROR result = handle_locally()
2023-03-20 11:32:02,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,264 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:02,265 ERROR raise exception
2023-03-20 11:32:02,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,265 ERROR result = handle_locally()
2023-03-20 11:32:02,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:02,266 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:02,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:02,267 ERROR raise exception
2023-03-20 11:32:02,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:02,268 ERROR result = handle_locally()
2023-03-20 11:32:02,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:02,268 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:02,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:02,269 ERROR constraint_type_strict)
2023-03-20 11:32:02,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:02,270 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:02,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:02,270 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:02,271 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:02,333 INFO Welcome to the CDS
2023-03-20 11:32:02,333 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:02,429 INFO Request is queued
no data200605
2023-03-20 11:32:03,496 INFO Request is failed
2023-03-20 11:32:03,497 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:03,497 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:03,498 ERROR Traceback (most recent call last):
2023-03-20 11:32:03,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,498 ERROR result = handle_locally()
2023-03-20 11:32:03,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,499 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:03,500 ERROR raise exception
2023-03-20 11:32:03,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,500 ERROR result = handle_locally()
2023-03-20 11:32:03,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,501 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:03,502 ERROR raise exception
2023-03-20 11:32:03,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,503 ERROR result = handle_locally()
2023-03-20 11:32:03,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,503 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:03,504 ERROR raise exception
2023-03-20 11:32:03,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,505 ERROR result = handle_locally()
2023-03-20 11:32:03,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,505 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:03,506 ERROR raise exception
2023-03-20 11:32:03,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,507 ERROR result = handle_locally()
2023-03-20 11:32:03,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,507 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:03,508 ERROR raise exception
2023-03-20 11:32:03,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,509 ERROR result = handle_locally()
2023-03-20 11:32:03,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,510 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:03,510 ERROR raise exception
2023-03-20 11:32:03,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,511 ERROR result = handle_locally()
2023-03-20 11:32:03,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:03,512 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:03,512 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:03,512 ERROR raise exception
2023-03-20 11:32:03,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:03,513 ERROR result = handle_locally()
2023-03-20 11:32:03,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:03,514 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:03,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:03,514 ERROR constraint_type_strict)
2023-03-20 11:32:03,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:03,515 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:03,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:03,516 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:03,516 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:03,578 INFO Welcome to the CDS
2023-03-20 11:32:03,578 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:03,686 INFO Request is queued
no data200606
2023-03-20 11:32:04,783 INFO Request is failed
2023-03-20 11:32:04,784 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:04,784 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:04,785 ERROR Traceback (most recent call last):
2023-03-20 11:32:04,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,785 ERROR result = handle_locally()
2023-03-20 11:32:04,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,786 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:04,787 ERROR raise exception
2023-03-20 11:32:04,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,788 ERROR result = handle_locally()
2023-03-20 11:32:04,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,788 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:04,789 ERROR raise exception
2023-03-20 11:32:04,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,790 ERROR result = handle_locally()
2023-03-20 11:32:04,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,790 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:04,791 ERROR raise exception
2023-03-20 11:32:04,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,792 ERROR result = handle_locally()
2023-03-20 11:32:04,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,792 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:04,793 ERROR raise exception
2023-03-20 11:32:04,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,794 ERROR result = handle_locally()
2023-03-20 11:32:04,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,795 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:04,795 ERROR raise exception
2023-03-20 11:32:04,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,796 ERROR result = handle_locally()
2023-03-20 11:32:04,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,797 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:04,797 ERROR raise exception
2023-03-20 11:32:04,798 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,798 ERROR result = handle_locally()
2023-03-20 11:32:04,798 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:04,799 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:04,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:04,799 ERROR raise exception
2023-03-20 11:32:04,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:04,800 ERROR result = handle_locally()
2023-03-20 11:32:04,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:04,801 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:04,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:04,802 ERROR constraint_type_strict)
2023-03-20 11:32:04,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:04,802 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:04,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:04,803 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:04,803 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:04,893 INFO Welcome to the CDS
2023-03-20 11:32:04,894 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200607
2023-03-20 11:32:05,035 INFO Request is queued
2023-03-20 11:32:06,102 INFO Request is running
2023-03-20 11:32:07,668 INFO Request is failed
2023-03-20 11:32:07,669 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:07,669 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:07,669 ERROR Traceback (most recent call last):
2023-03-20 11:32:07,670 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,670 ERROR result = handle_locally()
2023-03-20 11:32:07,671 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,671 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,671 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:07,672 ERROR raise exception
2023-03-20 11:32:07,672 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,672 ERROR result = handle_locally()
2023-03-20 11:32:07,673 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,673 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,673 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:07,674 ERROR raise exception
2023-03-20 11:32:07,674 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,674 ERROR result = handle_locally()
2023-03-20 11:32:07,676 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,676 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,677 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:07,677 ERROR raise exception
2023-03-20 11:32:07,678 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,678 ERROR result = handle_locally()
2023-03-20 11:32:07,678 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,679 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,679 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:07,679 ERROR raise exception
2023-03-20 11:32:07,680 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,680 ERROR result = handle_locally()
2023-03-20 11:32:07,680 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,681 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:07,682 ERROR raise exception
2023-03-20 11:32:07,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,682 ERROR result = handle_locally()
2023-03-20 11:32:07,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,683 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:07,684 ERROR raise exception
2023-03-20 11:32:07,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,684 ERROR result = handle_locally()
2023-03-20 11:32:07,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:07,685 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:07,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:07,686 ERROR raise exception
2023-03-20 11:32:07,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:07,686 ERROR result = handle_locally()
2023-03-20 11:32:07,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:07,687 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:07,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:07,688 ERROR constraint_type_strict)
2023-03-20 11:32:07,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:07,691 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:07,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:07,692 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:07,692 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:07,755 INFO Welcome to the CDS
2023-03-20 11:32:07,755 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:07,862 INFO Request is queued
no data200608
2023-03-20 11:32:08,928 INFO Request is failed
2023-03-20 11:32:08,929 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:08,929 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:08,929 ERROR Traceback (most recent call last):
2023-03-20 11:32:08,930 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,930 ERROR result = handle_locally()
2023-03-20 11:32:08,931 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,931 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,931 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:08,932 ERROR raise exception
2023-03-20 11:32:08,932 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,932 ERROR result = handle_locally()
2023-03-20 11:32:08,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,933 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,933 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:08,934 ERROR raise exception
2023-03-20 11:32:08,934 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,935 ERROR result = handle_locally()
2023-03-20 11:32:08,935 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,935 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:08,936 ERROR raise exception
2023-03-20 11:32:08,936 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,937 ERROR result = handle_locally()
2023-03-20 11:32:08,937 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,937 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:08,938 ERROR raise exception
2023-03-20 11:32:08,938 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,939 ERROR result = handle_locally()
2023-03-20 11:32:08,939 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,939 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,940 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:08,940 ERROR raise exception
2023-03-20 11:32:08,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,941 ERROR result = handle_locally()
2023-03-20 11:32:08,941 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,942 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,942 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:08,942 ERROR raise exception
2023-03-20 11:32:08,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,943 ERROR result = handle_locally()
2023-03-20 11:32:08,943 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:08,944 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:08,944 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:08,944 ERROR raise exception
2023-03-20 11:32:08,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:08,945 ERROR result = handle_locally()
2023-03-20 11:32:08,945 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:08,946 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:08,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:08,946 ERROR constraint_type_strict)
2023-03-20 11:32:08,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:08,947 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:08,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:08,948 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:08,948 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:09,010 INFO Welcome to the CDS
2023-03-20 11:32:09,011 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:09,128 INFO Request is queued
no data200609
2023-03-20 11:32:10,196 INFO Request is failed
2023-03-20 11:32:10,197 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:10,197 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:10,198 ERROR Traceback (most recent call last):
2023-03-20 11:32:10,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,198 ERROR result = handle_locally()
2023-03-20 11:32:10,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,199 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:10,200 ERROR raise exception
2023-03-20 11:32:10,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,201 ERROR result = handle_locally()
2023-03-20 11:32:10,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,201 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:10,202 ERROR raise exception
2023-03-20 11:32:10,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,203 ERROR result = handle_locally()
2023-03-20 11:32:10,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,203 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:10,204 ERROR raise exception
2023-03-20 11:32:10,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,205 ERROR result = handle_locally()
2023-03-20 11:32:10,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,205 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:10,206 ERROR raise exception
2023-03-20 11:32:10,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,207 ERROR result = handle_locally()
2023-03-20 11:32:10,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,208 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:10,208 ERROR raise exception
2023-03-20 11:32:10,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,209 ERROR result = handle_locally()
2023-03-20 11:32:10,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,210 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:10,210 ERROR raise exception
2023-03-20 11:32:10,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,211 ERROR result = handle_locally()
2023-03-20 11:32:10,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:10,212 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:10,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:10,212 ERROR raise exception
2023-03-20 11:32:10,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:10,213 ERROR result = handle_locally()
2023-03-20 11:32:10,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:10,214 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:10,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:10,215 ERROR constraint_type_strict)
2023-03-20 11:32:10,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:10,215 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:10,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:10,216 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:10,216 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:10,280 INFO Welcome to the CDS
2023-03-20 11:32:10,281 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200610
2023-03-20 11:32:10,563 INFO Request is queued
2023-03-20 11:32:11,638 INFO Request is failed
2023-03-20 11:32:11,638 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:11,639 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:11,639 ERROR Traceback (most recent call last):
2023-03-20 11:32:11,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,640 ERROR result = handle_locally()
2023-03-20 11:32:11,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,641 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:11,641 ERROR raise exception
2023-03-20 11:32:11,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,642 ERROR result = handle_locally()
2023-03-20 11:32:11,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,643 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:11,643 ERROR raise exception
2023-03-20 11:32:11,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,644 ERROR result = handle_locally()
2023-03-20 11:32:11,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,645 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:11,646 ERROR raise exception
2023-03-20 11:32:11,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,646 ERROR result = handle_locally()
2023-03-20 11:32:11,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,647 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:11,648 ERROR raise exception
2023-03-20 11:32:11,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,648 ERROR result = handle_locally()
2023-03-20 11:32:11,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,649 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:11,650 ERROR raise exception
2023-03-20 11:32:11,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,650 ERROR result = handle_locally()
2023-03-20 11:32:11,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,651 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:11,652 ERROR raise exception
2023-03-20 11:32:11,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,653 ERROR result = handle_locally()
2023-03-20 11:32:11,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:11,653 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:11,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:11,654 ERROR raise exception
2023-03-20 11:32:11,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:11,655 ERROR result = handle_locally()
2023-03-20 11:32:11,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:11,655 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:11,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:11,656 ERROR constraint_type_strict)
2023-03-20 11:32:11,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:11,657 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:11,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:11,657 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:11,658 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:11,740 INFO Welcome to the CDS
2023-03-20 11:32:11,740 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:11,835 INFO Request is queued
no data200611
2023-03-20 11:32:12,901 INFO Request is failed
2023-03-20 11:32:12,902 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:12,902 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:12,903 ERROR Traceback (most recent call last):
2023-03-20 11:32:12,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,903 ERROR result = handle_locally()
2023-03-20 11:32:12,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,904 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:12,905 ERROR raise exception
2023-03-20 11:32:12,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,905 ERROR result = handle_locally()
2023-03-20 11:32:12,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,906 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:12,907 ERROR raise exception
2023-03-20 11:32:12,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,908 ERROR result = handle_locally()
2023-03-20 11:32:12,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,908 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:12,909 ERROR raise exception
2023-03-20 11:32:12,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,910 ERROR result = handle_locally()
2023-03-20 11:32:12,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,910 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:12,911 ERROR raise exception
2023-03-20 11:32:12,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,912 ERROR result = handle_locally()
2023-03-20 11:32:12,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,912 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:12,913 ERROR raise exception
2023-03-20 11:32:12,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,914 ERROR result = handle_locally()
2023-03-20 11:32:12,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,914 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:12,915 ERROR raise exception
2023-03-20 11:32:12,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,916 ERROR result = handle_locally()
2023-03-20 11:32:12,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:12,916 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:12,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:12,917 ERROR raise exception
2023-03-20 11:32:12,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:12,918 ERROR result = handle_locally()
2023-03-20 11:32:12,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:12,918 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:12,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:12,919 ERROR constraint_type_strict)
2023-03-20 11:32:12,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:12,920 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:12,920 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:12,921 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:12,921 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:12,983 INFO Welcome to the CDS
2023-03-20 11:32:12,984 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:13,070 INFO Request is queued
no data200612
2023-03-20 11:32:14,143 INFO Request is failed
2023-03-20 11:32:14,143 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:14,144 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:14,144 ERROR Traceback (most recent call last):
2023-03-20 11:32:14,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,145 ERROR result = handle_locally()
2023-03-20 11:32:14,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,146 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:14,146 ERROR raise exception
2023-03-20 11:32:14,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,147 ERROR result = handle_locally()
2023-03-20 11:32:14,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,148 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:14,148 ERROR raise exception
2023-03-20 11:32:14,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,149 ERROR result = handle_locally()
2023-03-20 11:32:14,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,150 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:14,150 ERROR raise exception
2023-03-20 11:32:14,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,151 ERROR result = handle_locally()
2023-03-20 11:32:14,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,152 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:14,152 ERROR raise exception
2023-03-20 11:32:14,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,153 ERROR result = handle_locally()
2023-03-20 11:32:14,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,154 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:14,154 ERROR raise exception
2023-03-20 11:32:14,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,155 ERROR result = handle_locally()
2023-03-20 11:32:14,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,156 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:14,157 ERROR raise exception
2023-03-20 11:32:14,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,157 ERROR result = handle_locally()
2023-03-20 11:32:14,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:14,158 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:14,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:14,159 ERROR raise exception
2023-03-20 11:32:14,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:14,159 ERROR result = handle_locally()
2023-03-20 11:32:14,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:14,160 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:14,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:14,161 ERROR constraint_type_strict)
2023-03-20 11:32:14,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:14,161 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:14,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:14,162 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:14,162 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:14,225 INFO Welcome to the CDS
2023-03-20 11:32:14,225 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200701
2023-03-20 11:32:15,730 INFO Request is queued
2023-03-20 11:32:16,801 INFO Request is failed
2023-03-20 11:32:16,801 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:16,802 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:16,802 ERROR Traceback (most recent call last):
2023-03-20 11:32:16,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,803 ERROR result = handle_locally()
2023-03-20 11:32:16,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,803 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:16,804 ERROR raise exception
2023-03-20 11:32:16,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,805 ERROR result = handle_locally()
2023-03-20 11:32:16,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,806 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:16,806 ERROR raise exception
2023-03-20 11:32:16,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,807 ERROR result = handle_locally()
2023-03-20 11:32:16,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,808 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:16,809 ERROR raise exception
2023-03-20 11:32:16,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,809 ERROR result = handle_locally()
2023-03-20 11:32:16,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,810 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:16,811 ERROR raise exception
2023-03-20 11:32:16,811 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,811 ERROR result = handle_locally()
2023-03-20 11:32:16,812 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,812 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:16,813 ERROR raise exception
2023-03-20 11:32:16,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,814 ERROR result = handle_locally()
2023-03-20 11:32:16,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,814 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:16,815 ERROR raise exception
2023-03-20 11:32:16,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,816 ERROR result = handle_locally()
2023-03-20 11:32:16,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:16,817 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:16,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:16,817 ERROR raise exception
2023-03-20 11:32:16,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:16,818 ERROR result = handle_locally()
2023-03-20 11:32:16,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:16,819 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:16,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:16,819 ERROR constraint_type_strict)
2023-03-20 11:32:16,820 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:16,820 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:16,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:16,821 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:16,821 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:16,897 INFO Welcome to the CDS
2023-03-20 11:32:16,898 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:17,005 INFO Request is queued
no data200702
2023-03-20 11:32:18,102 INFO Request is failed
2023-03-20 11:32:18,103 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:18,103 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:18,103 ERROR Traceback (most recent call last):
2023-03-20 11:32:18,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,104 ERROR result = handle_locally()
2023-03-20 11:32:18,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,105 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,105 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:18,106 ERROR raise exception
2023-03-20 11:32:18,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,106 ERROR result = handle_locally()
2023-03-20 11:32:18,107 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,108 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,108 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:18,109 ERROR raise exception
2023-03-20 11:32:18,109 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,109 ERROR result = handle_locally()
2023-03-20 11:32:18,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,110 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:18,111 ERROR raise exception
2023-03-20 11:32:18,111 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,111 ERROR result = handle_locally()
2023-03-20 11:32:18,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,112 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,112 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:18,113 ERROR raise exception
2023-03-20 11:32:18,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,113 ERROR result = handle_locally()
2023-03-20 11:32:18,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,114 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:18,115 ERROR raise exception
2023-03-20 11:32:18,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,116 ERROR result = handle_locally()
2023-03-20 11:32:18,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,116 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:18,117 ERROR raise exception
2023-03-20 11:32:18,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,118 ERROR result = handle_locally()
2023-03-20 11:32:18,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:18,119 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:18,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:18,120 ERROR raise exception
2023-03-20 11:32:18,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:18,120 ERROR result = handle_locally()
2023-03-20 11:32:18,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:18,121 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:18,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:18,122 ERROR constraint_type_strict)
2023-03-20 11:32:18,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:18,123 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:18,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:18,123 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:18,124 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:18,206 INFO Welcome to the CDS
2023-03-20 11:32:18,207 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200703
2023-03-20 11:32:18,333 INFO Request is queued
2023-03-20 11:32:19,398 INFO Request is failed
2023-03-20 11:32:19,399 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:19,400 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:19,400 ERROR Traceback (most recent call last):
2023-03-20 11:32:19,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,401 ERROR result = handle_locally()
2023-03-20 11:32:19,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,401 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:19,402 ERROR raise exception
2023-03-20 11:32:19,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,403 ERROR result = handle_locally()
2023-03-20 11:32:19,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,404 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:19,404 ERROR raise exception
2023-03-20 11:32:19,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,405 ERROR result = handle_locally()
2023-03-20 11:32:19,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,406 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:19,407 ERROR raise exception
2023-03-20 11:32:19,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,407 ERROR result = handle_locally()
2023-03-20 11:32:19,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,408 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:19,409 ERROR raise exception
2023-03-20 11:32:19,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,409 ERROR result = handle_locally()
2023-03-20 11:32:19,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,410 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:19,411 ERROR raise exception
2023-03-20 11:32:19,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,412 ERROR result = handle_locally()
2023-03-20 11:32:19,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,412 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:19,413 ERROR raise exception
2023-03-20 11:32:19,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,414 ERROR result = handle_locally()
2023-03-20 11:32:19,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:19,415 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:19,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:19,415 ERROR raise exception
2023-03-20 11:32:19,416 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:19,416 ERROR result = handle_locally()
2023-03-20 11:32:19,416 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:19,417 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:19,417 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:19,417 ERROR constraint_type_strict)
2023-03-20 11:32:19,418 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:19,418 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:19,418 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:19,419 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:19,419 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:19,482 INFO Welcome to the CDS
2023-03-20 11:32:19,482 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200704
2023-03-20 11:32:19,659 INFO Request is queued
2023-03-20 11:32:20,731 INFO Request is failed
2023-03-20 11:32:20,732 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:20,733 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:20,733 ERROR Traceback (most recent call last):
2023-03-20 11:32:20,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,734 ERROR result = handle_locally()
2023-03-20 11:32:20,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,735 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:20,735 ERROR raise exception
2023-03-20 11:32:20,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,736 ERROR result = handle_locally()
2023-03-20 11:32:20,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,737 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:20,738 ERROR raise exception
2023-03-20 11:32:20,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,738 ERROR result = handle_locally()
2023-03-20 11:32:20,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,739 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:20,740 ERROR raise exception
2023-03-20 11:32:20,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,740 ERROR result = handle_locally()
2023-03-20 11:32:20,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,741 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:20,742 ERROR raise exception
2023-03-20 11:32:20,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,743 ERROR result = handle_locally()
2023-03-20 11:32:20,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,743 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:20,744 ERROR raise exception
2023-03-20 11:32:20,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,745 ERROR result = handle_locally()
2023-03-20 11:32:20,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,746 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:20,746 ERROR raise exception
2023-03-20 11:32:20,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,747 ERROR result = handle_locally()
2023-03-20 11:32:20,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:20,748 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:20,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:20,748 ERROR raise exception
2023-03-20 11:32:20,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:20,749 ERROR result = handle_locally()
2023-03-20 11:32:20,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:20,750 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:20,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:20,751 ERROR constraint_type_strict)
2023-03-20 11:32:20,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:20,751 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:20,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:20,752 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:20,752 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:20,830 INFO Welcome to the CDS
2023-03-20 11:32:20,830 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200705
2023-03-20 11:32:21,007 INFO Request is queued
2023-03-20 11:32:22,091 INFO Request is failed
2023-03-20 11:32:22,092 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:22,092 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:22,092 ERROR Traceback (most recent call last):
2023-03-20 11:32:22,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,093 ERROR result = handle_locally()
2023-03-20 11:32:22,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,094 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:22,095 ERROR raise exception
2023-03-20 11:32:22,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,095 ERROR result = handle_locally()
2023-03-20 11:32:22,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,096 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:22,097 ERROR raise exception
2023-03-20 11:32:22,097 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,097 ERROR result = handle_locally()
2023-03-20 11:32:22,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,098 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:22,099 ERROR raise exception
2023-03-20 11:32:22,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,100 ERROR result = handle_locally()
2023-03-20 11:32:22,100 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,100 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:22,101 ERROR raise exception
2023-03-20 11:32:22,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,102 ERROR result = handle_locally()
2023-03-20 11:32:22,102 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,102 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,103 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:22,103 ERROR raise exception
2023-03-20 11:32:22,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,104 ERROR result = handle_locally()
2023-03-20 11:32:22,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,105 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,105 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:22,105 ERROR raise exception
2023-03-20 11:32:22,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,106 ERROR result = handle_locally()
2023-03-20 11:32:22,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:22,107 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:22,107 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:22,108 ERROR raise exception
2023-03-20 11:32:22,108 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:22,108 ERROR result = handle_locally()
2023-03-20 11:32:22,109 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:22,109 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:22,109 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:22,110 ERROR constraint_type_strict)
2023-03-20 11:32:22,110 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:22,110 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:22,111 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:22,111 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:22,112 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:22,194 INFO Welcome to the CDS
2023-03-20 11:32:22,195 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200706
2023-03-20 11:32:22,346 INFO Request is queued
2023-03-20 11:32:23,421 INFO Request is failed
2023-03-20 11:32:23,422 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:23,422 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:23,423 ERROR Traceback (most recent call last):
2023-03-20 11:32:23,423 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,424 ERROR result = handle_locally()
2023-03-20 11:32:23,424 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,424 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:23,425 ERROR raise exception
2023-03-20 11:32:23,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,426 ERROR result = handle_locally()
2023-03-20 11:32:23,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,427 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:23,427 ERROR raise exception
2023-03-20 11:32:23,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,428 ERROR result = handle_locally()
2023-03-20 11:32:23,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,429 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:23,429 ERROR raise exception
2023-03-20 11:32:23,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,430 ERROR result = handle_locally()
2023-03-20 11:32:23,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,431 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:23,432 ERROR raise exception
2023-03-20 11:32:23,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,432 ERROR result = handle_locally()
2023-03-20 11:32:23,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,433 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:23,434 ERROR raise exception
2023-03-20 11:32:23,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,434 ERROR result = handle_locally()
2023-03-20 11:32:23,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,435 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:23,436 ERROR raise exception
2023-03-20 11:32:23,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,437 ERROR result = handle_locally()
2023-03-20 11:32:23,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:23,437 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:23,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:23,438 ERROR raise exception
2023-03-20 11:32:23,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:23,439 ERROR result = handle_locally()
2023-03-20 11:32:23,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:23,440 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:23,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:23,440 ERROR constraint_type_strict)
2023-03-20 11:32:23,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:23,441 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:23,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:23,442 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:23,442 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:23,516 INFO Welcome to the CDS
2023-03-20 11:32:23,517 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:23,638 INFO Request is queued
no data200707
2023-03-20 11:32:24,727 INFO Request is failed
2023-03-20 11:32:24,728 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:24,728 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:24,728 ERROR Traceback (most recent call last):
2023-03-20 11:32:24,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,729 ERROR result = handle_locally()
2023-03-20 11:32:24,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,730 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:24,731 ERROR raise exception
2023-03-20 11:32:24,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,731 ERROR result = handle_locally()
2023-03-20 11:32:24,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,732 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:24,733 ERROR raise exception
2023-03-20 11:32:24,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,734 ERROR result = handle_locally()
2023-03-20 11:32:24,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,735 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:24,735 ERROR raise exception
2023-03-20 11:32:24,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,736 ERROR result = handle_locally()
2023-03-20 11:32:24,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,737 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:24,737 ERROR raise exception
2023-03-20 11:32:24,738 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,738 ERROR result = handle_locally()
2023-03-20 11:32:24,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,739 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,739 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:24,740 ERROR raise exception
2023-03-20 11:32:24,740 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,740 ERROR result = handle_locally()
2023-03-20 11:32:24,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,741 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,741 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:24,742 ERROR raise exception
2023-03-20 11:32:24,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,742 ERROR result = handle_locally()
2023-03-20 11:32:24,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:24,743 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:24,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:24,744 ERROR raise exception
2023-03-20 11:32:24,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:24,745 ERROR result = handle_locally()
2023-03-20 11:32:24,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:24,745 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:24,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:24,746 ERROR constraint_type_strict)
2023-03-20 11:32:24,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:24,747 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:24,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:24,748 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:24,748 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:24,819 INFO Welcome to the CDS
2023-03-20 11:32:24,819 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:24,921 INFO Request is queued
no data200708
2023-03-20 11:32:25,991 INFO Request is failed
2023-03-20 11:32:25,992 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:25,992 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:25,993 ERROR Traceback (most recent call last):
2023-03-20 11:32:25,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:25,993 ERROR result = handle_locally()
2023-03-20 11:32:25,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:25,994 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:25,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:25,995 ERROR raise exception
2023-03-20 11:32:25,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:25,995 ERROR result = handle_locally()
2023-03-20 11:32:25,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:25,996 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:25,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:25,997 ERROR raise exception
2023-03-20 11:32:25,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:25,998 ERROR result = handle_locally()
2023-03-20 11:32:25,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:25,998 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:25,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:25,999 ERROR raise exception
2023-03-20 11:32:25,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:26,000 ERROR result = handle_locally()
2023-03-20 11:32:26,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:26,000 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:26,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:26,001 ERROR raise exception
2023-03-20 11:32:26,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:26,002 ERROR result = handle_locally()
2023-03-20 11:32:26,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:26,002 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:26,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:26,003 ERROR raise exception
2023-03-20 11:32:26,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:26,004 ERROR result = handle_locally()
2023-03-20 11:32:26,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:26,005 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:26,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:26,005 ERROR raise exception
2023-03-20 11:32:26,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:26,006 ERROR result = handle_locally()
2023-03-20 11:32:26,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:26,007 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:26,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:26,007 ERROR raise exception
2023-03-20 11:32:26,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:26,008 ERROR result = handle_locally()
2023-03-20 11:32:26,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:26,009 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:26,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:26,009 ERROR constraint_type_strict)
2023-03-20 11:32:26,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:26,010 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:26,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:26,011 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:26,011 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:26,079 INFO Welcome to the CDS
2023-03-20 11:32:26,080 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:26,209 INFO Request is queued
no data200709
2023-03-20 11:32:27,276 INFO Request is failed
2023-03-20 11:32:27,276 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:27,277 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:27,277 ERROR Traceback (most recent call last):
2023-03-20 11:32:27,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,278 ERROR result = handle_locally()
2023-03-20 11:32:27,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:27,279 ERROR raise exception
2023-03-20 11:32:27,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,280 ERROR result = handle_locally()
2023-03-20 11:32:27,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,281 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:27,281 ERROR raise exception
2023-03-20 11:32:27,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,282 ERROR result = handle_locally()
2023-03-20 11:32:27,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:27,283 ERROR raise exception
2023-03-20 11:32:27,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,284 ERROR result = handle_locally()
2023-03-20 11:32:27,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:27,285 ERROR raise exception
2023-03-20 11:32:27,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,286 ERROR result = handle_locally()
2023-03-20 11:32:27,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:27,287 ERROR raise exception
2023-03-20 11:32:27,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,288 ERROR result = handle_locally()
2023-03-20 11:32:27,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,289 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:27,289 ERROR raise exception
2023-03-20 11:32:27,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,290 ERROR result = handle_locally()
2023-03-20 11:32:27,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:27,291 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:27,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:27,291 ERROR raise exception
2023-03-20 11:32:27,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:27,292 ERROR result = handle_locally()
2023-03-20 11:32:27,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:27,293 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:27,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:27,293 ERROR constraint_type_strict)
2023-03-20 11:32:27,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:27,294 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:27,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:27,295 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:27,295 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:27,357 INFO Welcome to the CDS
2023-03-20 11:32:27,358 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:27,484 INFO Request is queued
no data200710
2023-03-20 11:32:28,552 INFO Request is failed
2023-03-20 11:32:28,553 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:28,553 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:28,554 ERROR Traceback (most recent call last):
2023-03-20 11:32:28,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,554 ERROR result = handle_locally()
2023-03-20 11:32:28,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,555 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:28,556 ERROR raise exception
2023-03-20 11:32:28,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,557 ERROR result = handle_locally()
2023-03-20 11:32:28,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,557 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:28,558 ERROR raise exception
2023-03-20 11:32:28,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,559 ERROR result = handle_locally()
2023-03-20 11:32:28,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,559 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:28,560 ERROR raise exception
2023-03-20 11:32:28,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,561 ERROR result = handle_locally()
2023-03-20 11:32:28,561 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,561 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:28,562 ERROR raise exception
2023-03-20 11:32:28,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,563 ERROR result = handle_locally()
2023-03-20 11:32:28,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,563 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:28,564 ERROR raise exception
2023-03-20 11:32:28,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,565 ERROR result = handle_locally()
2023-03-20 11:32:28,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,565 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:28,566 ERROR raise exception
2023-03-20 11:32:28,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,567 ERROR result = handle_locally()
2023-03-20 11:32:28,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:28,568 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:28,568 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:28,568 ERROR raise exception
2023-03-20 11:32:28,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:28,569 ERROR result = handle_locally()
2023-03-20 11:32:28,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:28,570 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:28,570 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:28,570 ERROR constraint_type_strict)
2023-03-20 11:32:28,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:28,571 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:28,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:28,572 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:28,572 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:28,641 INFO Welcome to the CDS
2023-03-20 11:32:28,641 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:28,741 INFO Request is queued
no data200711
2023-03-20 11:32:29,812 INFO Request is failed
2023-03-20 11:32:29,813 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:29,813 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:29,814 ERROR Traceback (most recent call last):
2023-03-20 11:32:29,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,814 ERROR result = handle_locally()
2023-03-20 11:32:29,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,815 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:29,816 ERROR raise exception
2023-03-20 11:32:29,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,816 ERROR result = handle_locally()
2023-03-20 11:32:29,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,817 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:29,818 ERROR raise exception
2023-03-20 11:32:29,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,818 ERROR result = handle_locally()
2023-03-20 11:32:29,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,819 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:29,820 ERROR raise exception
2023-03-20 11:32:29,820 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,820 ERROR result = handle_locally()
2023-03-20 11:32:29,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,821 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:29,822 ERROR raise exception
2023-03-20 11:32:29,822 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,822 ERROR result = handle_locally()
2023-03-20 11:32:29,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,823 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:29,824 ERROR raise exception
2023-03-20 11:32:29,824 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,824 ERROR result = handle_locally()
2023-03-20 11:32:29,825 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,825 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,825 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:29,826 ERROR raise exception
2023-03-20 11:32:29,826 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,826 ERROR result = handle_locally()
2023-03-20 11:32:29,827 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:29,827 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:29,827 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:29,828 ERROR raise exception
2023-03-20 11:32:29,828 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:29,828 ERROR result = handle_locally()
2023-03-20 11:32:29,829 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:29,829 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:29,830 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:29,830 ERROR constraint_type_strict)
2023-03-20 11:32:29,830 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:29,831 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:29,831 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:29,831 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:29,832 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:29,899 INFO Welcome to the CDS
2023-03-20 11:32:29,900 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200712
2023-03-20 11:32:30,042 INFO Request is queued
2023-03-20 11:32:31,111 INFO Request is failed
2023-03-20 11:32:31,111 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:31,112 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:31,112 ERROR Traceback (most recent call last):
2023-03-20 11:32:31,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,113 ERROR result = handle_locally()
2023-03-20 11:32:31,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,114 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:31,114 ERROR raise exception
2023-03-20 11:32:31,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,115 ERROR result = handle_locally()
2023-03-20 11:32:31,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,116 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:31,116 ERROR raise exception
2023-03-20 11:32:31,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,117 ERROR result = handle_locally()
2023-03-20 11:32:31,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,118 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:31,119 ERROR raise exception
2023-03-20 11:32:31,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,119 ERROR result = handle_locally()
2023-03-20 11:32:31,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,120 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:31,121 ERROR raise exception
2023-03-20 11:32:31,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,121 ERROR result = handle_locally()
2023-03-20 11:32:31,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,122 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:31,123 ERROR raise exception
2023-03-20 11:32:31,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,123 ERROR result = handle_locally()
2023-03-20 11:32:31,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,124 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:31,125 ERROR raise exception
2023-03-20 11:32:31,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,126 ERROR result = handle_locally()
2023-03-20 11:32:31,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:31,126 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:31,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:31,127 ERROR raise exception
2023-03-20 11:32:31,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:31,128 ERROR result = handle_locally()
2023-03-20 11:32:31,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:31,128 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:31,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:31,129 ERROR constraint_type_strict)
2023-03-20 11:32:31,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:31,130 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:31,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:31,130 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:31,131 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:31,194 INFO Welcome to the CDS
2023-03-20 11:32:31,195 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:31,289 INFO Request is queued
no data200801
2023-03-20 11:32:32,369 INFO Request is failed
2023-03-20 11:32:32,369 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:32,370 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:32,370 ERROR Traceback (most recent call last):
2023-03-20 11:32:32,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,371 ERROR result = handle_locally()
2023-03-20 11:32:32,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,372 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:32,372 ERROR raise exception
2023-03-20 11:32:32,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,373 ERROR result = handle_locally()
2023-03-20 11:32:32,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,374 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:32,374 ERROR raise exception
2023-03-20 11:32:32,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,375 ERROR result = handle_locally()
2023-03-20 11:32:32,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,376 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:32,376 ERROR raise exception
2023-03-20 11:32:32,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,377 ERROR result = handle_locally()
2023-03-20 11:32:32,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,378 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:32,379 ERROR raise exception
2023-03-20 11:32:32,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,379 ERROR result = handle_locally()
2023-03-20 11:32:32,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:32,381 ERROR raise exception
2023-03-20 11:32:32,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,381 ERROR result = handle_locally()
2023-03-20 11:32:32,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:32,383 ERROR raise exception
2023-03-20 11:32:32,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,383 ERROR result = handle_locally()
2023-03-20 11:32:32,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:32,384 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:32,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:32,385 ERROR raise exception
2023-03-20 11:32:32,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:32,385 ERROR result = handle_locally()
2023-03-20 11:32:32,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:32,386 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:32,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:32,387 ERROR constraint_type_strict)
2023-03-20 11:32:32,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:32,387 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:32,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:32,388 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:32,389 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:32,451 INFO Welcome to the CDS
2023-03-20 11:32:32,451 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:32,564 INFO Request is queued
no data200802
2023-03-20 11:32:33,647 INFO Request is failed
2023-03-20 11:32:33,647 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:33,648 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:33,648 ERROR Traceback (most recent call last):
2023-03-20 11:32:33,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,649 ERROR result = handle_locally()
2023-03-20 11:32:33,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,650 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:33,651 ERROR raise exception
2023-03-20 11:32:33,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,651 ERROR result = handle_locally()
2023-03-20 11:32:33,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,652 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:33,653 ERROR raise exception
2023-03-20 11:32:33,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,654 ERROR result = handle_locally()
2023-03-20 11:32:33,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,654 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:33,655 ERROR raise exception
2023-03-20 11:32:33,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,656 ERROR result = handle_locally()
2023-03-20 11:32:33,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,656 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:33,657 ERROR raise exception
2023-03-20 11:32:33,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,658 ERROR result = handle_locally()
2023-03-20 11:32:33,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,659 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,659 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:33,659 ERROR raise exception
2023-03-20 11:32:33,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,660 ERROR result = handle_locally()
2023-03-20 11:32:33,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,661 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,661 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:33,661 ERROR raise exception
2023-03-20 11:32:33,662 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,662 ERROR result = handle_locally()
2023-03-20 11:32:33,663 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:33,663 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:33,663 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:33,664 ERROR raise exception
2023-03-20 11:32:33,664 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:33,664 ERROR result = handle_locally()
2023-03-20 11:32:33,665 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:33,665 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:33,665 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:33,666 ERROR constraint_type_strict)
2023-03-20 11:32:33,667 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:33,670 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:33,671 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:33,671 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:33,671 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:33,736 INFO Welcome to the CDS
2023-03-20 11:32:33,736 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200803
2023-03-20 11:32:34,018 INFO Request is queued
2023-03-20 11:32:35,088 INFO Request is failed
2023-03-20 11:32:35,088 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:35,089 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:35,089 ERROR Traceback (most recent call last):
2023-03-20 11:32:35,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,090 ERROR result = handle_locally()
2023-03-20 11:32:35,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,091 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,091 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:35,092 ERROR raise exception
2023-03-20 11:32:35,092 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,092 ERROR result = handle_locally()
2023-03-20 11:32:35,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,093 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:35,094 ERROR raise exception
2023-03-20 11:32:35,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,094 ERROR result = handle_locally()
2023-03-20 11:32:35,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,095 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:35,096 ERROR raise exception
2023-03-20 11:32:35,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,097 ERROR result = handle_locally()
2023-03-20 11:32:35,097 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,097 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:35,098 ERROR raise exception
2023-03-20 11:32:35,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,099 ERROR result = handle_locally()
2023-03-20 11:32:35,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,100 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,100 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:35,100 ERROR raise exception
2023-03-20 11:32:35,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,101 ERROR result = handle_locally()
2023-03-20 11:32:35,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,102 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,102 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:35,103 ERROR raise exception
2023-03-20 11:32:35,103 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,103 ERROR result = handle_locally()
2023-03-20 11:32:35,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:35,104 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:35,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:35,105 ERROR raise exception
2023-03-20 11:32:35,105 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:35,106 ERROR result = handle_locally()
2023-03-20 11:32:35,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:35,106 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:35,107 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:35,107 ERROR constraint_type_strict)
2023-03-20 11:32:35,107 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:35,108 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:35,108 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:35,108 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:35,109 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:35,174 INFO Welcome to the CDS
2023-03-20 11:32:35,174 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:35,305 INFO Request is queued
no data200804
2023-03-20 11:32:36,372 INFO Request is failed
2023-03-20 11:32:36,373 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:36,373 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:36,374 ERROR Traceback (most recent call last):
2023-03-20 11:32:36,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,374 ERROR result = handle_locally()
2023-03-20 11:32:36,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,375 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:36,376 ERROR raise exception
2023-03-20 11:32:36,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,377 ERROR result = handle_locally()
2023-03-20 11:32:36,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,377 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:36,378 ERROR raise exception
2023-03-20 11:32:36,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,379 ERROR result = handle_locally()
2023-03-20 11:32:36,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:36,380 ERROR raise exception
2023-03-20 11:32:36,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,381 ERROR result = handle_locally()
2023-03-20 11:32:36,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:36,382 ERROR raise exception
2023-03-20 11:32:36,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,383 ERROR result = handle_locally()
2023-03-20 11:32:36,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,384 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:36,385 ERROR raise exception
2023-03-20 11:32:36,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,385 ERROR result = handle_locally()
2023-03-20 11:32:36,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,386 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:36,387 ERROR raise exception
2023-03-20 11:32:36,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,388 ERROR result = handle_locally()
2023-03-20 11:32:36,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:36,388 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:36,389 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:36,389 ERROR raise exception
2023-03-20 11:32:36,389 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:36,390 ERROR result = handle_locally()
2023-03-20 11:32:36,390 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:36,390 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:36,391 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:36,391 ERROR constraint_type_strict)
2023-03-20 11:32:36,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:36,392 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:36,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:36,393 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:36,393 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:36,459 INFO Welcome to the CDS
2023-03-20 11:32:36,460 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200805
2023-03-20 11:32:36,598 INFO Request is queued
2023-03-20 11:32:37,680 INFO Request is failed
2023-03-20 11:32:37,681 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:37,681 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:37,681 ERROR Traceback (most recent call last):
2023-03-20 11:32:37,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,682 ERROR result = handle_locally()
2023-03-20 11:32:37,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,683 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:37,684 ERROR raise exception
2023-03-20 11:32:37,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,684 ERROR result = handle_locally()
2023-03-20 11:32:37,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,685 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:37,686 ERROR raise exception
2023-03-20 11:32:37,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,687 ERROR result = handle_locally()
2023-03-20 11:32:37,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,687 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:37,688 ERROR raise exception
2023-03-20 11:32:37,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,689 ERROR result = handle_locally()
2023-03-20 11:32:37,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,690 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:37,690 ERROR raise exception
2023-03-20 11:32:37,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,691 ERROR result = handle_locally()
2023-03-20 11:32:37,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,692 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:37,693 ERROR raise exception
2023-03-20 11:32:37,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,693 ERROR result = handle_locally()
2023-03-20 11:32:37,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,694 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:37,695 ERROR raise exception
2023-03-20 11:32:37,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,696 ERROR result = handle_locally()
2023-03-20 11:32:37,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:37,697 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:37,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:37,697 ERROR raise exception
2023-03-20 11:32:37,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:37,698 ERROR result = handle_locally()
2023-03-20 11:32:37,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:37,699 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:37,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:37,700 ERROR constraint_type_strict)
2023-03-20 11:32:37,700 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:37,701 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:37,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:37,701 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:37,702 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:37,779 INFO Welcome to the CDS
2023-03-20 11:32:37,779 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200806
2023-03-20 11:32:37,924 INFO Request is queued
2023-03-20 11:32:39,016 INFO Request is failed
2023-03-20 11:32:39,016 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:39,017 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:39,017 ERROR Traceback (most recent call last):
2023-03-20 11:32:39,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,018 ERROR result = handle_locally()
2023-03-20 11:32:39,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,019 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:39,020 ERROR raise exception
2023-03-20 11:32:39,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,020 ERROR result = handle_locally()
2023-03-20 11:32:39,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,021 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:39,022 ERROR raise exception
2023-03-20 11:32:39,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,023 ERROR result = handle_locally()
2023-03-20 11:32:39,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,024 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:39,024 ERROR raise exception
2023-03-20 11:32:39,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,025 ERROR result = handle_locally()
2023-03-20 11:32:39,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,026 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:39,027 ERROR raise exception
2023-03-20 11:32:39,027 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,027 ERROR result = handle_locally()
2023-03-20 11:32:39,028 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,028 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:39,029 ERROR raise exception
2023-03-20 11:32:39,029 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,030 ERROR result = handle_locally()
2023-03-20 11:32:39,030 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,031 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,031 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:39,031 ERROR raise exception
2023-03-20 11:32:39,032 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,032 ERROR result = handle_locally()
2023-03-20 11:32:39,033 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:39,033 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:39,033 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:39,034 ERROR raise exception
2023-03-20 11:32:39,034 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:39,035 ERROR result = handle_locally()
2023-03-20 11:32:39,035 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:39,037 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:39,037 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:39,038 ERROR constraint_type_strict)
2023-03-20 11:32:39,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:39,039 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:39,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:39,039 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:39,040 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:39,130 INFO Welcome to the CDS
2023-03-20 11:32:39,131 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200807
2023-03-20 11:32:39,276 INFO Request is queued
2023-03-20 11:32:40,357 INFO Request is failed
2023-03-20 11:32:40,358 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:40,358 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:40,358 ERROR Traceback (most recent call last):
2023-03-20 11:32:40,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,359 ERROR result = handle_locally()
2023-03-20 11:32:40,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,360 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:40,361 ERROR raise exception
2023-03-20 11:32:40,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,362 ERROR result = handle_locally()
2023-03-20 11:32:40,362 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,362 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:40,363 ERROR raise exception
2023-03-20 11:32:40,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,364 ERROR result = handle_locally()
2023-03-20 11:32:40,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,365 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,365 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:40,366 ERROR raise exception
2023-03-20 11:32:40,366 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,366 ERROR result = handle_locally()
2023-03-20 11:32:40,367 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,367 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:40,368 ERROR raise exception
2023-03-20 11:32:40,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,369 ERROR result = handle_locally()
2023-03-20 11:32:40,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,370 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:40,370 ERROR raise exception
2023-03-20 11:32:40,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,371 ERROR result = handle_locally()
2023-03-20 11:32:40,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,372 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:40,373 ERROR raise exception
2023-03-20 11:32:40,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,373 ERROR result = handle_locally()
2023-03-20 11:32:40,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:40,374 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:40,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:40,375 ERROR raise exception
2023-03-20 11:32:40,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:40,376 ERROR result = handle_locally()
2023-03-20 11:32:40,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:40,377 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:40,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:40,378 ERROR constraint_type_strict)
2023-03-20 11:32:40,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:40,378 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:40,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:40,379 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:40,380 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
no data200808
2023-03-20 11:32:40,794 INFO Welcome to the CDS
2023-03-20 11:32:40,794 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:40,975 INFO Request is queued
2023-03-20 11:32:42,044 INFO Request is failed
2023-03-20 11:32:42,044 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:42,045 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:42,045 ERROR Traceback (most recent call last):
2023-03-20 11:32:42,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,046 ERROR result = handle_locally()
2023-03-20 11:32:42,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,047 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:42,047 ERROR raise exception
2023-03-20 11:32:42,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,048 ERROR result = handle_locally()
2023-03-20 11:32:42,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,049 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:42,050 ERROR raise exception
2023-03-20 11:32:42,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,050 ERROR result = handle_locally()
2023-03-20 11:32:42,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,051 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:42,052 ERROR raise exception
2023-03-20 11:32:42,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,053 ERROR result = handle_locally()
2023-03-20 11:32:42,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,053 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:42,054 ERROR raise exception
2023-03-20 11:32:42,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,055 ERROR result = handle_locally()
2023-03-20 11:32:42,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,056 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:42,056 ERROR raise exception
2023-03-20 11:32:42,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,057 ERROR result = handle_locally()
2023-03-20 11:32:42,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,058 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:42,059 ERROR raise exception
2023-03-20 11:32:42,059 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,059 ERROR result = handle_locally()
2023-03-20 11:32:42,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:42,060 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:42,061 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:42,061 ERROR raise exception
2023-03-20 11:32:42,061 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:42,062 ERROR result = handle_locally()
2023-03-20 11:32:42,062 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:42,062 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:42,063 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:42,063 ERROR constraint_type_strict)
2023-03-20 11:32:42,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:42,064 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:42,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:42,065 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:42,065 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:42,136 INFO Welcome to the CDS
2023-03-20 11:32:42,137 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200809
2023-03-20 11:32:42,276 INFO Request is queued
2023-03-20 11:32:43,355 INFO Request is failed
2023-03-20 11:32:43,355 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:43,356 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:43,356 ERROR Traceback (most recent call last):
2023-03-20 11:32:43,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,357 ERROR result = handle_locally()
2023-03-20 11:32:43,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,358 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:43,359 ERROR raise exception
2023-03-20 11:32:43,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,359 ERROR result = handle_locally()
2023-03-20 11:32:43,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,360 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:43,361 ERROR raise exception
2023-03-20 11:32:43,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,362 ERROR result = handle_locally()
2023-03-20 11:32:43,362 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,362 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:43,363 ERROR raise exception
2023-03-20 11:32:43,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,364 ERROR result = handle_locally()
2023-03-20 11:32:43,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,365 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,365 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:43,365 ERROR raise exception
2023-03-20 11:32:43,366 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,366 ERROR result = handle_locally()
2023-03-20 11:32:43,367 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,367 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,367 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:43,368 ERROR raise exception
2023-03-20 11:32:43,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,368 ERROR result = handle_locally()
2023-03-20 11:32:43,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,369 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:43,370 ERROR raise exception
2023-03-20 11:32:43,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,371 ERROR result = handle_locally()
2023-03-20 11:32:43,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:43,371 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:43,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:43,372 ERROR raise exception
2023-03-20 11:32:43,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:43,373 ERROR result = handle_locally()
2023-03-20 11:32:43,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:43,374 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:43,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:43,374 ERROR constraint_type_strict)
2023-03-20 11:32:43,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:43,375 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:43,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:43,376 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:43,376 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:43,442 INFO Welcome to the CDS
2023-03-20 11:32:43,442 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200810
2023-03-20 11:32:43,821 INFO Request is queued
2023-03-20 11:32:44,895 INFO Request is failed
2023-03-20 11:32:44,896 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:44,896 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:44,896 ERROR Traceback (most recent call last):
2023-03-20 11:32:44,897 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,897 ERROR result = handle_locally()
2023-03-20 11:32:44,898 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,898 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,898 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:44,899 ERROR raise exception
2023-03-20 11:32:44,899 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,899 ERROR result = handle_locally()
2023-03-20 11:32:44,900 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,900 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:44,901 ERROR raise exception
2023-03-20 11:32:44,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,902 ERROR result = handle_locally()
2023-03-20 11:32:44,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,902 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:44,903 ERROR raise exception
2023-03-20 11:32:44,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,904 ERROR result = handle_locally()
2023-03-20 11:32:44,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,905 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:44,906 ERROR raise exception
2023-03-20 11:32:44,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,906 ERROR result = handle_locally()
2023-03-20 11:32:44,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,907 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:44,908 ERROR raise exception
2023-03-20 11:32:44,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,908 ERROR result = handle_locally()
2023-03-20 11:32:44,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,909 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:44,910 ERROR raise exception
2023-03-20 11:32:44,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,911 ERROR result = handle_locally()
2023-03-20 11:32:44,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:44,911 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:44,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:44,912 ERROR raise exception
2023-03-20 11:32:44,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:44,913 ERROR result = handle_locally()
2023-03-20 11:32:44,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:44,914 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:44,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:44,914 ERROR constraint_type_strict)
2023-03-20 11:32:44,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:44,915 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:44,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:44,916 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:44,916 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:44,983 INFO Welcome to the CDS
2023-03-20 11:32:44,984 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:45,096 INFO Request is queued
no data200811
2023-03-20 11:32:46,166 INFO Request is failed
2023-03-20 11:32:46,167 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:46,167 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:46,168 ERROR Traceback (most recent call last):
2023-03-20 11:32:46,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,168 ERROR result = handle_locally()
2023-03-20 11:32:46,169 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,169 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:46,170 ERROR raise exception
2023-03-20 11:32:46,170 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,171 ERROR result = handle_locally()
2023-03-20 11:32:46,171 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,171 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,172 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:46,172 ERROR raise exception
2023-03-20 11:32:46,173 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,173 ERROR result = handle_locally()
2023-03-20 11:32:46,173 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,174 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,174 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:46,174 ERROR raise exception
2023-03-20 11:32:46,175 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,175 ERROR result = handle_locally()
2023-03-20 11:32:46,176 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,176 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,176 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:46,177 ERROR raise exception
2023-03-20 11:32:46,177 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,177 ERROR result = handle_locally()
2023-03-20 11:32:46,178 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,178 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,179 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:46,179 ERROR raise exception
2023-03-20 11:32:46,179 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,180 ERROR result = handle_locally()
2023-03-20 11:32:46,180 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,180 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,181 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:46,181 ERROR raise exception
2023-03-20 11:32:46,182 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,182 ERROR result = handle_locally()
2023-03-20 11:32:46,182 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:46,183 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:46,183 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:46,183 ERROR raise exception
2023-03-20 11:32:46,184 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:46,188 ERROR result = handle_locally()
2023-03-20 11:32:46,188 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:46,188 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:46,189 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:46,189 ERROR constraint_type_strict)
2023-03-20 11:32:46,190 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:46,190 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:46,190 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:46,191 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:46,191 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:46,264 INFO Welcome to the CDS
2023-03-20 11:32:46,264 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200812
2023-03-20 11:32:46,603 INFO Request is queued
2023-03-20 11:32:47,678 INFO Request is failed
2023-03-20 11:32:47,679 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:47,679 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:47,679 ERROR Traceback (most recent call last):
2023-03-20 11:32:47,680 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,680 ERROR result = handle_locally()
2023-03-20 11:32:47,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,681 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:47,682 ERROR raise exception
2023-03-20 11:32:47,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,682 ERROR result = handle_locally()
2023-03-20 11:32:47,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,683 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:47,684 ERROR raise exception
2023-03-20 11:32:47,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,685 ERROR result = handle_locally()
2023-03-20 11:32:47,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,686 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:47,686 ERROR raise exception
2023-03-20 11:32:47,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,687 ERROR result = handle_locally()
2023-03-20 11:32:47,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,688 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:47,689 ERROR raise exception
2023-03-20 11:32:47,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,689 ERROR result = handle_locally()
2023-03-20 11:32:47,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,690 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:47,691 ERROR raise exception
2023-03-20 11:32:47,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,692 ERROR result = handle_locally()
2023-03-20 11:32:47,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,692 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:47,693 ERROR raise exception
2023-03-20 11:32:47,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,694 ERROR result = handle_locally()
2023-03-20 11:32:47,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:47,694 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:47,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:47,695 ERROR raise exception
2023-03-20 11:32:47,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:47,696 ERROR result = handle_locally()
2023-03-20 11:32:47,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:47,697 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:47,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:47,697 ERROR constraint_type_strict)
2023-03-20 11:32:47,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:47,698 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:47,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:47,699 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:47,699 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:47,768 INFO Welcome to the CDS
2023-03-20 11:32:47,768 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:47,901 INFO Request is queued
no data200901
2023-03-20 11:32:48,994 INFO Request is failed
2023-03-20 11:32:48,995 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:48,995 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:48,995 ERROR Traceback (most recent call last):
2023-03-20 11:32:48,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:48,996 ERROR result = handle_locally()
2023-03-20 11:32:48,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:48,997 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:48,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:48,998 ERROR raise exception
2023-03-20 11:32:48,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:48,999 ERROR result = handle_locally()
2023-03-20 11:32:48,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:48,999 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:49,000 ERROR raise exception
2023-03-20 11:32:49,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,001 ERROR result = handle_locally()
2023-03-20 11:32:49,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:49,001 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:49,002 ERROR raise exception
2023-03-20 11:32:49,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,003 ERROR result = handle_locally()
2023-03-20 11:32:49,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:49,004 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:49,004 ERROR raise exception
2023-03-20 11:32:49,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,005 ERROR result = handle_locally()
2023-03-20 11:32:49,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:49,006 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:49,007 ERROR raise exception
2023-03-20 11:32:49,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,007 ERROR result = handle_locally()
2023-03-20 11:32:49,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:49,008 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:49,009 ERROR raise exception
2023-03-20 11:32:49,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,010 ERROR result = handle_locally()
2023-03-20 11:32:49,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:49,010 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:49,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:49,011 ERROR raise exception
2023-03-20 11:32:49,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:49,012 ERROR result = handle_locally()
2023-03-20 11:32:49,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:49,013 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:49,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:49,013 ERROR constraint_type_strict)
2023-03-20 11:32:49,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:49,014 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:49,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:49,015 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:49,015 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:49,089 INFO Welcome to the CDS
2023-03-20 11:32:49,090 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200902
2023-03-20 11:32:49,253 INFO Request is queued
2023-03-20 11:32:50,342 INFO Request is failed
2023-03-20 11:32:50,343 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:50,343 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:50,344 ERROR Traceback (most recent call last):
2023-03-20 11:32:50,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,345 ERROR result = handle_locally()
2023-03-20 11:32:50,345 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,346 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:50,346 ERROR raise exception
2023-03-20 11:32:50,348 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,348 ERROR result = handle_locally()
2023-03-20 11:32:50,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,349 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:50,350 ERROR raise exception
2023-03-20 11:32:50,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,351 ERROR result = handle_locally()
2023-03-20 11:32:50,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,351 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:50,352 ERROR raise exception
2023-03-20 11:32:50,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,353 ERROR result = handle_locally()
2023-03-20 11:32:50,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,354 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:50,355 ERROR raise exception
2023-03-20 11:32:50,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,355 ERROR result = handle_locally()
2023-03-20 11:32:50,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,356 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:50,357 ERROR raise exception
2023-03-20 11:32:50,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,358 ERROR result = handle_locally()
2023-03-20 11:32:50,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,358 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:50,359 ERROR raise exception
2023-03-20 11:32:50,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,360 ERROR result = handle_locally()
2023-03-20 11:32:50,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:50,361 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:50,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:50,362 ERROR raise exception
2023-03-20 11:32:50,362 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:50,362 ERROR result = handle_locally()
2023-03-20 11:32:50,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:50,363 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:50,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:50,364 ERROR constraint_type_strict)
2023-03-20 11:32:50,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:50,365 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:50,365 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:50,366 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:50,366 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:50,439 INFO Welcome to the CDS
2023-03-20 11:32:50,440 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200903
2023-03-20 11:32:50,639 INFO Request is queued
2023-03-20 11:32:51,709 INFO Request is failed
2023-03-20 11:32:51,709 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:51,710 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:51,710 ERROR Traceback (most recent call last):
2023-03-20 11:32:51,711 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,711 ERROR result = handle_locally()
2023-03-20 11:32:51,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,712 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:51,713 ERROR raise exception
2023-03-20 11:32:51,713 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,714 ERROR result = handle_locally()
2023-03-20 11:32:51,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,714 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:51,715 ERROR raise exception
2023-03-20 11:32:51,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,716 ERROR result = handle_locally()
2023-03-20 11:32:51,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,717 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:51,718 ERROR raise exception
2023-03-20 11:32:51,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,718 ERROR result = handle_locally()
2023-03-20 11:32:51,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,719 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:51,720 ERROR raise exception
2023-03-20 11:32:51,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,721 ERROR result = handle_locally()
2023-03-20 11:32:51,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,722 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:51,722 ERROR raise exception
2023-03-20 11:32:51,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,723 ERROR result = handle_locally()
2023-03-20 11:32:51,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,724 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:51,725 ERROR raise exception
2023-03-20 11:32:51,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,726 ERROR result = handle_locally()
2023-03-20 11:32:51,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:51,726 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:51,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:51,727 ERROR raise exception
2023-03-20 11:32:51,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:51,728 ERROR result = handle_locally()
2023-03-20 11:32:51,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:51,729 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:51,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:51,729 ERROR constraint_type_strict)
2023-03-20 11:32:51,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:51,730 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:51,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:51,731 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:51,732 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:51,794 INFO Welcome to the CDS
2023-03-20 11:32:51,795 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:51,896 INFO Request is queued
no data200904
2023-03-20 11:32:52,969 INFO Request is failed
2023-03-20 11:32:52,969 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:52,970 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:52,970 ERROR Traceback (most recent call last):
2023-03-20 11:32:52,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,971 ERROR result = handle_locally()
2023-03-20 11:32:52,971 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,972 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:52,972 ERROR raise exception
2023-03-20 11:32:52,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,973 ERROR result = handle_locally()
2023-03-20 11:32:52,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,974 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:52,975 ERROR raise exception
2023-03-20 11:32:52,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,975 ERROR result = handle_locally()
2023-03-20 11:32:52,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,976 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:52,977 ERROR raise exception
2023-03-20 11:32:52,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,977 ERROR result = handle_locally()
2023-03-20 11:32:52,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,978 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:52,979 ERROR raise exception
2023-03-20 11:32:52,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,979 ERROR result = handle_locally()
2023-03-20 11:32:52,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,980 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:52,981 ERROR raise exception
2023-03-20 11:32:52,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,982 ERROR result = handle_locally()
2023-03-20 11:32:52,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,982 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:52,983 ERROR raise exception
2023-03-20 11:32:52,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,984 ERROR result = handle_locally()
2023-03-20 11:32:52,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:52,984 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:52,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:52,985 ERROR raise exception
2023-03-20 11:32:52,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:52,986 ERROR result = handle_locally()
2023-03-20 11:32:52,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:52,986 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:52,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:52,987 ERROR constraint_type_strict)
2023-03-20 11:32:52,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:52,988 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:52,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:52,989 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:52,989 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:53,057 INFO Welcome to the CDS
2023-03-20 11:32:53,057 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200905
2023-03-20 11:32:53,226 INFO Request is queued
2023-03-20 11:32:54,293 INFO Request is running
2023-03-20 11:32:55,881 INFO Request is failed
2023-03-20 11:32:55,882 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:55,882 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:55,882 ERROR Traceback (most recent call last):
2023-03-20 11:32:55,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,883 ERROR result = handle_locally()
2023-03-20 11:32:55,884 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,884 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,884 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:55,885 ERROR raise exception
2023-03-20 11:32:55,885 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,885 ERROR result = handle_locally()
2023-03-20 11:32:55,886 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,886 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,886 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:55,887 ERROR raise exception
2023-03-20 11:32:55,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,887 ERROR result = handle_locally()
2023-03-20 11:32:55,888 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,888 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,889 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:55,889 ERROR raise exception
2023-03-20 11:32:55,889 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,890 ERROR result = handle_locally()
2023-03-20 11:32:55,890 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,890 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,891 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:55,891 ERROR raise exception
2023-03-20 11:32:55,891 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,892 ERROR result = handle_locally()
2023-03-20 11:32:55,892 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,892 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,893 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:55,893 ERROR raise exception
2023-03-20 11:32:55,893 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,894 ERROR result = handle_locally()
2023-03-20 11:32:55,894 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,895 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,895 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:55,895 ERROR raise exception
2023-03-20 11:32:55,896 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,896 ERROR result = handle_locally()
2023-03-20 11:32:55,896 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:55,897 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:55,897 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:55,897 ERROR raise exception
2023-03-20 11:32:55,898 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:55,898 ERROR result = handle_locally()
2023-03-20 11:32:55,898 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:55,899 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:55,899 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:55,899 ERROR constraint_type_strict)
2023-03-20 11:32:55,900 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:55,900 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:55,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:55,901 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:55,901 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:55,979 INFO Welcome to the CDS
2023-03-20 11:32:55,980 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:56,077 INFO Request is queued
no data200906
2023-03-20 11:32:57,143 INFO Request is failed
2023-03-20 11:32:57,144 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:57,145 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:57,145 ERROR Traceback (most recent call last):
2023-03-20 11:32:57,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,146 ERROR result = handle_locally()
2023-03-20 11:32:57,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,147 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:57,147 ERROR raise exception
2023-03-20 11:32:57,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,148 ERROR result = handle_locally()
2023-03-20 11:32:57,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,149 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:57,150 ERROR raise exception
2023-03-20 11:32:57,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,151 ERROR result = handle_locally()
2023-03-20 11:32:57,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,151 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:57,152 ERROR raise exception
2023-03-20 11:32:57,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,153 ERROR result = handle_locally()
2023-03-20 11:32:57,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,154 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:57,155 ERROR raise exception
2023-03-20 11:32:57,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,155 ERROR result = handle_locally()
2023-03-20 11:32:57,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,156 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:57,157 ERROR raise exception
2023-03-20 11:32:57,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,158 ERROR result = handle_locally()
2023-03-20 11:32:57,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,159 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:57,159 ERROR raise exception
2023-03-20 11:32:57,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,160 ERROR result = handle_locally()
2023-03-20 11:32:57,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:57,161 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:57,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:57,162 ERROR raise exception
2023-03-20 11:32:57,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:57,163 ERROR result = handle_locally()
2023-03-20 11:32:57,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:57,163 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:57,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:57,164 ERROR constraint_type_strict)
2023-03-20 11:32:57,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:57,165 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:57,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:57,166 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:57,166 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:57,237 INFO Welcome to the CDS
2023-03-20 11:32:57,237 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:57,312 INFO Request is queued
no data200907
2023-03-20 11:32:58,396 INFO Request is failed
2023-03-20 11:32:58,397 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:58,397 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:58,397 ERROR Traceback (most recent call last):
2023-03-20 11:32:58,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,398 ERROR result = handle_locally()
2023-03-20 11:32:58,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,399 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:58,400 ERROR raise exception
2023-03-20 11:32:58,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,401 ERROR result = handle_locally()
2023-03-20 11:32:58,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,401 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:58,402 ERROR raise exception
2023-03-20 11:32:58,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,403 ERROR result = handle_locally()
2023-03-20 11:32:58,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,404 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:58,406 ERROR raise exception
2023-03-20 11:32:58,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,407 ERROR result = handle_locally()
2023-03-20 11:32:58,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,408 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:58,408 ERROR raise exception
2023-03-20 11:32:58,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,409 ERROR result = handle_locally()
2023-03-20 11:32:58,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,410 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:58,411 ERROR raise exception
2023-03-20 11:32:58,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,411 ERROR result = handle_locally()
2023-03-20 11:32:58,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,412 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:58,413 ERROR raise exception
2023-03-20 11:32:58,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,414 ERROR result = handle_locally()
2023-03-20 11:32:58,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:58,414 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:58,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:58,415 ERROR raise exception
2023-03-20 11:32:58,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:58,416 ERROR result = handle_locally()
2023-03-20 11:32:58,416 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:58,417 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:58,417 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:58,417 ERROR constraint_type_strict)
2023-03-20 11:32:58,418 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:58,418 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:58,419 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:58,419 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:58,419 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:58,490 INFO Welcome to the CDS
2023-03-20 11:32:58,490 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200908
2023-03-20 11:32:58,630 INFO Request is queued
2023-03-20 11:32:59,703 INFO Request is failed
2023-03-20 11:32:59,704 ERROR Message: the request you have submitted is not valid
2023-03-20 11:32:59,704 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:59,705 ERROR Traceback (most recent call last):
2023-03-20 11:32:59,705 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,705 ERROR result = handle_locally()
2023-03-20 11:32:59,706 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,706 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,706 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:32:59,707 ERROR raise exception
2023-03-20 11:32:59,707 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,708 ERROR result = handle_locally()
2023-03-20 11:32:59,708 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,708 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,709 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:32:59,709 ERROR raise exception
2023-03-20 11:32:59,710 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,710 ERROR result = handle_locally()
2023-03-20 11:32:59,710 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,711 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,711 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:32:59,711 ERROR raise exception
2023-03-20 11:32:59,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,712 ERROR result = handle_locally()
2023-03-20 11:32:59,712 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,713 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,713 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:59,714 ERROR raise exception
2023-03-20 11:32:59,714 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,714 ERROR result = handle_locally()
2023-03-20 11:32:59,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,715 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,715 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:59,716 ERROR raise exception
2023-03-20 11:32:59,716 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,716 ERROR result = handle_locally()
2023-03-20 11:32:59,717 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,717 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:59,718 ERROR raise exception
2023-03-20 11:32:59,718 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,719 ERROR result = handle_locally()
2023-03-20 11:32:59,719 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:32:59,719 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:32:59,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:32:59,720 ERROR raise exception
2023-03-20 11:32:59,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:32:59,721 ERROR result = handle_locally()
2023-03-20 11:32:59,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:32:59,722 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:32:59,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:32:59,722 ERROR constraint_type_strict)
2023-03-20 11:32:59,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:32:59,723 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:32:59,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:32:59,724 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:32:59,724 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:32:59,796 INFO Welcome to the CDS
2023-03-20 11:32:59,796 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:32:59,902 INFO Request is queued
no data200909
2023-03-20 11:33:00,970 INFO Request is failed
2023-03-20 11:33:00,971 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:00,971 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:00,971 ERROR Traceback (most recent call last):
2023-03-20 11:33:00,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,972 ERROR result = handle_locally()
2023-03-20 11:33:00,972 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,973 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,973 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:00,974 ERROR raise exception
2023-03-20 11:33:00,974 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,974 ERROR result = handle_locally()
2023-03-20 11:33:00,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,975 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,975 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:00,976 ERROR raise exception
2023-03-20 11:33:00,976 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,976 ERROR result = handle_locally()
2023-03-20 11:33:00,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,977 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:00,978 ERROR raise exception
2023-03-20 11:33:00,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,978 ERROR result = handle_locally()
2023-03-20 11:33:00,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,979 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:00,980 ERROR raise exception
2023-03-20 11:33:00,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,980 ERROR result = handle_locally()
2023-03-20 11:33:00,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,981 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:00,982 ERROR raise exception
2023-03-20 11:33:00,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,982 ERROR result = handle_locally()
2023-03-20 11:33:00,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,983 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:00,984 ERROR raise exception
2023-03-20 11:33:00,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,984 ERROR result = handle_locally()
2023-03-20 11:33:00,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:00,985 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:00,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:00,986 ERROR raise exception
2023-03-20 11:33:00,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:00,986 ERROR result = handle_locally()
2023-03-20 11:33:00,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:00,987 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:00,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:00,988 ERROR constraint_type_strict)
2023-03-20 11:33:00,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:00,989 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:00,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:00,989 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:00,990 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:01,059 INFO Welcome to the CDS
2023-03-20 11:33:01,060 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200910
2023-03-20 11:33:01,204 INFO Request is queued
2023-03-20 11:33:02,277 INFO Request is failed
2023-03-20 11:33:02,278 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:02,278 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:02,279 ERROR Traceback (most recent call last):
2023-03-20 11:33:02,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,280 ERROR result = handle_locally()
2023-03-20 11:33:02,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,280 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:02,281 ERROR raise exception
2023-03-20 11:33:02,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,282 ERROR result = handle_locally()
2023-03-20 11:33:02,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:02,284 ERROR raise exception
2023-03-20 11:33:02,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,284 ERROR result = handle_locally()
2023-03-20 11:33:02,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:02,286 ERROR raise exception
2023-03-20 11:33:02,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,287 ERROR result = handle_locally()
2023-03-20 11:33:02,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:02,288 ERROR raise exception
2023-03-20 11:33:02,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,289 ERROR result = handle_locally()
2023-03-20 11:33:02,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,290 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:02,291 ERROR raise exception
2023-03-20 11:33:02,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,291 ERROR result = handle_locally()
2023-03-20 11:33:02,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,292 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:02,293 ERROR raise exception
2023-03-20 11:33:02,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,294 ERROR result = handle_locally()
2023-03-20 11:33:02,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:02,294 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:02,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:02,295 ERROR raise exception
2023-03-20 11:33:02,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:02,296 ERROR result = handle_locally()
2023-03-20 11:33:02,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:02,297 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:02,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:02,298 ERROR constraint_type_strict)
2023-03-20 11:33:02,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:02,298 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:02,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:02,299 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:02,300 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:02,362 INFO Welcome to the CDS
2023-03-20 11:33:02,363 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:02,476 INFO Request is queued
no data200911
2023-03-20 11:33:03,560 INFO Request is failed
2023-03-20 11:33:03,560 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:03,561 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:03,561 ERROR Traceback (most recent call last):
2023-03-20 11:33:03,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,562 ERROR result = handle_locally()
2023-03-20 11:33:03,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,563 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:03,564 ERROR raise exception
2023-03-20 11:33:03,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,565 ERROR result = handle_locally()
2023-03-20 11:33:03,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,565 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:03,566 ERROR raise exception
2023-03-20 11:33:03,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,567 ERROR result = handle_locally()
2023-03-20 11:33:03,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,568 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,568 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:03,569 ERROR raise exception
2023-03-20 11:33:03,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,569 ERROR result = handle_locally()
2023-03-20 11:33:03,570 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,570 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:03,571 ERROR raise exception
2023-03-20 11:33:03,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,572 ERROR result = handle_locally()
2023-03-20 11:33:03,572 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,573 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,573 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:03,574 ERROR raise exception
2023-03-20 11:33:03,574 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,574 ERROR result = handle_locally()
2023-03-20 11:33:03,575 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,575 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,575 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:03,576 ERROR raise exception
2023-03-20 11:33:03,576 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,577 ERROR result = handle_locally()
2023-03-20 11:33:03,577 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:03,577 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:03,578 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:03,578 ERROR raise exception
2023-03-20 11:33:03,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:03,579 ERROR result = handle_locally()
2023-03-20 11:33:03,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:03,580 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:03,580 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:03,580 ERROR constraint_type_strict)
2023-03-20 11:33:03,581 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:03,581 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:03,582 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:03,582 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:03,582 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:03,649 INFO Welcome to the CDS
2023-03-20 11:33:03,650 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data200912
2023-03-20 11:33:03,787 INFO Request is queued
2023-03-20 11:33:04,905 INFO Request is failed
2023-03-20 11:33:04,906 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:04,906 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:04,907 ERROR Traceback (most recent call last):
2023-03-20 11:33:04,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,908 ERROR result = handle_locally()
2023-03-20 11:33:04,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,908 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:04,909 ERROR raise exception
2023-03-20 11:33:04,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,910 ERROR result = handle_locally()
2023-03-20 11:33:04,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,911 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:04,912 ERROR raise exception
2023-03-20 11:33:04,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,912 ERROR result = handle_locally()
2023-03-20 11:33:04,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,913 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:04,914 ERROR raise exception
2023-03-20 11:33:04,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,915 ERROR result = handle_locally()
2023-03-20 11:33:04,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,915 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:04,916 ERROR raise exception
2023-03-20 11:33:04,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,917 ERROR result = handle_locally()
2023-03-20 11:33:04,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,918 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:04,918 ERROR raise exception
2023-03-20 11:33:04,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,919 ERROR result = handle_locally()
2023-03-20 11:33:04,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,920 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,920 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:04,921 ERROR raise exception
2023-03-20 11:33:04,921 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,921 ERROR result = handle_locally()
2023-03-20 11:33:04,922 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:04,922 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:04,923 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:04,923 ERROR raise exception
2023-03-20 11:33:04,923 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:04,924 ERROR result = handle_locally()
2023-03-20 11:33:04,924 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:04,924 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:04,925 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:04,925 ERROR constraint_type_strict)
2023-03-20 11:33:04,925 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:04,926 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:04,926 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:04,927 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:04,927 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:05,023 INFO Welcome to the CDS
2023-03-20 11:33:05,024 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201001
2023-03-20 11:33:05,173 INFO Request is queued
2023-03-20 11:33:06,244 INFO Request is running
2023-03-20 11:33:07,817 INFO Request is failed
2023-03-20 11:33:07,818 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:07,818 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:07,819 ERROR Traceback (most recent call last):
2023-03-20 11:33:07,819 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,819 ERROR result = handle_locally()
2023-03-20 11:33:07,820 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,820 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,820 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:07,821 ERROR raise exception
2023-03-20 11:33:07,821 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,821 ERROR result = handle_locally()
2023-03-20 11:33:07,822 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,822 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:07,823 ERROR raise exception
2023-03-20 11:33:07,823 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,824 ERROR result = handle_locally()
2023-03-20 11:33:07,824 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,824 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,825 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:07,825 ERROR raise exception
2023-03-20 11:33:07,825 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,826 ERROR result = handle_locally()
2023-03-20 11:33:07,826 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,826 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,827 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:07,827 ERROR raise exception
2023-03-20 11:33:07,828 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,828 ERROR result = handle_locally()
2023-03-20 11:33:07,828 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,829 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,829 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:07,829 ERROR raise exception
2023-03-20 11:33:07,830 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,830 ERROR result = handle_locally()
2023-03-20 11:33:07,831 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,831 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,831 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:07,832 ERROR raise exception
2023-03-20 11:33:07,832 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,832 ERROR result = handle_locally()
2023-03-20 11:33:07,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:07,833 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:07,833 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:07,834 ERROR raise exception
2023-03-20 11:33:07,834 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:07,835 ERROR result = handle_locally()
2023-03-20 11:33:07,835 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:07,835 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:07,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:07,836 ERROR constraint_type_strict)
2023-03-20 11:33:07,836 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:07,837 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:07,837 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:07,838 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:07,838 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:07,997 INFO Welcome to the CDS
2023-03-20 11:33:07,997 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201002
2023-03-20 11:33:08,115 INFO Request is queued
2023-03-20 11:33:09,207 INFO Request is failed
2023-03-20 11:33:09,208 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:09,209 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:09,209 ERROR Traceback (most recent call last):
2023-03-20 11:33:09,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,210 ERROR result = handle_locally()
2023-03-20 11:33:09,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,210 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:09,211 ERROR raise exception
2023-03-20 11:33:09,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,212 ERROR result = handle_locally()
2023-03-20 11:33:09,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,213 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:09,213 ERROR raise exception
2023-03-20 11:33:09,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,214 ERROR result = handle_locally()
2023-03-20 11:33:09,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,215 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:09,215 ERROR raise exception
2023-03-20 11:33:09,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,216 ERROR result = handle_locally()
2023-03-20 11:33:09,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,217 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:09,218 ERROR raise exception
2023-03-20 11:33:09,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,218 ERROR result = handle_locally()
2023-03-20 11:33:09,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,219 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:09,220 ERROR raise exception
2023-03-20 11:33:09,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,220 ERROR result = handle_locally()
2023-03-20 11:33:09,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,221 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:09,222 ERROR raise exception
2023-03-20 11:33:09,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,222 ERROR result = handle_locally()
2023-03-20 11:33:09,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:09,223 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:09,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:09,224 ERROR raise exception
2023-03-20 11:33:09,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:09,225 ERROR result = handle_locally()
2023-03-20 11:33:09,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:09,225 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:09,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:09,226 ERROR constraint_type_strict)
2023-03-20 11:33:09,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:09,227 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:09,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:09,227 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:09,228 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:09,290 INFO Welcome to the CDS
2023-03-20 11:33:09,290 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:09,387 INFO Request is queued
no data201003
2023-03-20 11:33:10,454 INFO Request is failed
2023-03-20 11:33:10,455 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:10,456 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:10,456 ERROR Traceback (most recent call last):
2023-03-20 11:33:10,456 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,457 ERROR result = handle_locally()
2023-03-20 11:33:10,457 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,457 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,458 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:10,458 ERROR raise exception
2023-03-20 11:33:10,459 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,459 ERROR result = handle_locally()
2023-03-20 11:33:10,459 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,462 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:10,463 ERROR raise exception
2023-03-20 11:33:10,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,464 ERROR result = handle_locally()
2023-03-20 11:33:10,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,464 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:10,465 ERROR raise exception
2023-03-20 11:33:10,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,466 ERROR result = handle_locally()
2023-03-20 11:33:10,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,467 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:10,468 ERROR raise exception
2023-03-20 11:33:10,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,468 ERROR result = handle_locally()
2023-03-20 11:33:10,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,469 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:10,470 ERROR raise exception
2023-03-20 11:33:10,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,471 ERROR result = handle_locally()
2023-03-20 11:33:10,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,471 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:10,472 ERROR raise exception
2023-03-20 11:33:10,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,473 ERROR result = handle_locally()
2023-03-20 11:33:10,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:10,473 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:10,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:10,474 ERROR raise exception
2023-03-20 11:33:10,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:10,475 ERROR result = handle_locally()
2023-03-20 11:33:10,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:10,476 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:10,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:10,476 ERROR constraint_type_strict)
2023-03-20 11:33:10,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:10,477 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:10,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:10,478 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:10,478 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:10,546 INFO Welcome to the CDS
2023-03-20 11:33:10,547 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201004
2023-03-20 11:33:10,686 INFO Request is queued
2023-03-20 11:33:11,755 INFO Request is failed
2023-03-20 11:33:11,756 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:11,757 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:11,757 ERROR Traceback (most recent call last):
2023-03-20 11:33:11,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,758 ERROR result = handle_locally()
2023-03-20 11:33:11,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,758 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:11,759 ERROR raise exception
2023-03-20 11:33:11,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,761 ERROR result = handle_locally()
2023-03-20 11:33:11,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,761 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:11,762 ERROR raise exception
2023-03-20 11:33:11,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,763 ERROR result = handle_locally()
2023-03-20 11:33:11,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,764 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:11,764 ERROR raise exception
2023-03-20 11:33:11,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,765 ERROR result = handle_locally()
2023-03-20 11:33:11,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,766 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,766 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:11,766 ERROR raise exception
2023-03-20 11:33:11,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,767 ERROR result = handle_locally()
2023-03-20 11:33:11,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,768 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:11,769 ERROR raise exception
2023-03-20 11:33:11,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,769 ERROR result = handle_locally()
2023-03-20 11:33:11,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,770 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:11,771 ERROR raise exception
2023-03-20 11:33:11,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,771 ERROR result = handle_locally()
2023-03-20 11:33:11,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:11,772 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:11,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:11,773 ERROR raise exception
2023-03-20 11:33:11,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:11,773 ERROR result = handle_locally()
2023-03-20 11:33:11,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:11,774 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:11,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:11,775 ERROR constraint_type_strict)
2023-03-20 11:33:11,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:11,775 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:11,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:11,776 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:11,777 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:11,839 INFO Welcome to the CDS
2023-03-20 11:33:11,840 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201005
2023-03-20 11:33:12,112 INFO Request is queued
2023-03-20 11:33:13,189 INFO Request is failed
2023-03-20 11:33:13,190 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:13,190 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:13,191 ERROR Traceback (most recent call last):
2023-03-20 11:33:13,191 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,192 ERROR result = handle_locally()
2023-03-20 11:33:13,192 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,192 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,193 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:13,193 ERROR raise exception
2023-03-20 11:33:13,193 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,194 ERROR result = handle_locally()
2023-03-20 11:33:13,194 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,194 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,195 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:13,195 ERROR raise exception
2023-03-20 11:33:13,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,196 ERROR result = handle_locally()
2023-03-20 11:33:13,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,197 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:13,197 ERROR raise exception
2023-03-20 11:33:13,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,198 ERROR result = handle_locally()
2023-03-20 11:33:13,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,199 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:13,199 ERROR raise exception
2023-03-20 11:33:13,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,200 ERROR result = handle_locally()
2023-03-20 11:33:13,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,201 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:13,201 ERROR raise exception
2023-03-20 11:33:13,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,202 ERROR result = handle_locally()
2023-03-20 11:33:13,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,203 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:13,204 ERROR raise exception
2023-03-20 11:33:13,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,204 ERROR result = handle_locally()
2023-03-20 11:33:13,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:13,205 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:13,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:13,206 ERROR raise exception
2023-03-20 11:33:13,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:13,210 ERROR result = handle_locally()
2023-03-20 11:33:13,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:13,210 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:13,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:13,211 ERROR constraint_type_strict)
2023-03-20 11:33:13,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:13,212 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:13,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:13,213 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:13,213 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:13,286 INFO Welcome to the CDS
2023-03-20 11:33:13,287 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:13,392 INFO Request is queued
no data201006
2023-03-20 11:33:14,458 INFO Request is failed
2023-03-20 11:33:14,459 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:14,459 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:14,460 ERROR Traceback (most recent call last):
2023-03-20 11:33:14,460 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,461 ERROR result = handle_locally()
2023-03-20 11:33:14,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,461 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:14,462 ERROR raise exception
2023-03-20 11:33:14,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,463 ERROR result = handle_locally()
2023-03-20 11:33:14,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,464 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:14,465 ERROR raise exception
2023-03-20 11:33:14,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,466 ERROR result = handle_locally()
2023-03-20 11:33:14,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,467 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:14,467 ERROR raise exception
2023-03-20 11:33:14,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,468 ERROR result = handle_locally()
2023-03-20 11:33:14,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,469 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:14,470 ERROR raise exception
2023-03-20 11:33:14,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,470 ERROR result = handle_locally()
2023-03-20 11:33:14,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,472 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:14,473 ERROR raise exception
2023-03-20 11:33:14,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,474 ERROR result = handle_locally()
2023-03-20 11:33:14,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,474 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:14,475 ERROR raise exception
2023-03-20 11:33:14,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,476 ERROR result = handle_locally()
2023-03-20 11:33:14,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:14,476 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:14,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:14,477 ERROR raise exception
2023-03-20 11:33:14,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:14,478 ERROR result = handle_locally()
2023-03-20 11:33:14,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:14,479 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:14,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:14,479 ERROR constraint_type_strict)
2023-03-20 11:33:14,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:14,480 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:14,480 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:14,481 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:14,481 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:14,546 INFO Welcome to the CDS
2023-03-20 11:33:14,546 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:14,678 INFO Request is queued
no data201007
2023-03-20 11:33:15,765 INFO Request is failed
2023-03-20 11:33:15,765 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:15,766 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:15,766 ERROR Traceback (most recent call last):
2023-03-20 11:33:15,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,767 ERROR result = handle_locally()
2023-03-20 11:33:15,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,768 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:15,768 ERROR raise exception
2023-03-20 11:33:15,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,769 ERROR result = handle_locally()
2023-03-20 11:33:15,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,770 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:15,771 ERROR raise exception
2023-03-20 11:33:15,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,771 ERROR result = handle_locally()
2023-03-20 11:33:15,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,772 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:15,773 ERROR raise exception
2023-03-20 11:33:15,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,774 ERROR result = handle_locally()
2023-03-20 11:33:15,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,774 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:15,775 ERROR raise exception
2023-03-20 11:33:15,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,776 ERROR result = handle_locally()
2023-03-20 11:33:15,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,776 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:15,777 ERROR raise exception
2023-03-20 11:33:15,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,778 ERROR result = handle_locally()
2023-03-20 11:33:15,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:15,779 ERROR raise exception
2023-03-20 11:33:15,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,780 ERROR result = handle_locally()
2023-03-20 11:33:15,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:15,781 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:15,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:15,782 ERROR raise exception
2023-03-20 11:33:15,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:15,782 ERROR result = handle_locally()
2023-03-20 11:33:15,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:15,783 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:15,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:15,784 ERROR constraint_type_strict)
2023-03-20 11:33:15,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:15,784 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:15,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:15,785 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:15,785 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:15,869 INFO Welcome to the CDS
2023-03-20 11:33:15,870 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201008
2023-03-20 11:33:16,003 INFO Request is queued
2023-03-20 11:33:17,086 INFO Request is failed
2023-03-20 11:33:17,087 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:17,087 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:17,088 ERROR Traceback (most recent call last):
2023-03-20 11:33:17,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,089 ERROR result = handle_locally()
2023-03-20 11:33:17,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,089 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:17,090 ERROR raise exception
2023-03-20 11:33:17,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,091 ERROR result = handle_locally()
2023-03-20 11:33:17,091 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,091 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,092 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:17,092 ERROR raise exception
2023-03-20 11:33:17,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,093 ERROR result = handle_locally()
2023-03-20 11:33:17,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,094 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:17,094 ERROR raise exception
2023-03-20 11:33:17,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,095 ERROR result = handle_locally()
2023-03-20 11:33:17,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,096 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:17,097 ERROR raise exception
2023-03-20 11:33:17,097 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,097 ERROR result = handle_locally()
2023-03-20 11:33:17,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,098 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:17,099 ERROR raise exception
2023-03-20 11:33:17,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,099 ERROR result = handle_locally()
2023-03-20 11:33:17,100 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,100 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:17,101 ERROR raise exception
2023-03-20 11:33:17,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,102 ERROR result = handle_locally()
2023-03-20 11:33:17,102 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:17,102 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:17,103 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:17,103 ERROR raise exception
2023-03-20 11:33:17,103 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:17,104 ERROR result = handle_locally()
2023-03-20 11:33:17,104 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:17,104 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:17,105 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:17,105 ERROR constraint_type_strict)
2023-03-20 11:33:17,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:17,106 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:17,106 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:17,107 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:17,107 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:17,178 INFO Welcome to the CDS
2023-03-20 11:33:17,179 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201009
2023-03-20 11:33:17,357 INFO Request is queued
2023-03-20 11:33:18,430 INFO Request is failed
2023-03-20 11:33:18,430 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:18,431 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:18,431 ERROR Traceback (most recent call last):
2023-03-20 11:33:18,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,432 ERROR result = handle_locally()
2023-03-20 11:33:18,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,433 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:18,433 ERROR raise exception
2023-03-20 11:33:18,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,434 ERROR result = handle_locally()
2023-03-20 11:33:18,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,435 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:18,436 ERROR raise exception
2023-03-20 11:33:18,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,436 ERROR result = handle_locally()
2023-03-20 11:33:18,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,437 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:18,438 ERROR raise exception
2023-03-20 11:33:18,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,438 ERROR result = handle_locally()
2023-03-20 11:33:18,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,439 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:18,440 ERROR raise exception
2023-03-20 11:33:18,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,441 ERROR result = handle_locally()
2023-03-20 11:33:18,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,441 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:18,442 ERROR raise exception
2023-03-20 11:33:18,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,443 ERROR result = handle_locally()
2023-03-20 11:33:18,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,443 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,444 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:18,444 ERROR raise exception
2023-03-20 11:33:18,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,445 ERROR result = handle_locally()
2023-03-20 11:33:18,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:18,446 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:18,446 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:18,446 ERROR raise exception
2023-03-20 11:33:18,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:18,447 ERROR result = handle_locally()
2023-03-20 11:33:18,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:18,448 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:18,448 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:18,449 ERROR constraint_type_strict)
2023-03-20 11:33:18,449 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:18,449 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:18,450 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:18,450 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:18,450 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:18,514 INFO Welcome to the CDS
2023-03-20 11:33:18,515 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201010
2023-03-20 11:33:18,767 INFO Request is queued
2023-03-20 11:33:19,851 INFO Request is failed
2023-03-20 11:33:19,852 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:19,852 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:19,852 ERROR Traceback (most recent call last):
2023-03-20 11:33:19,853 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,853 ERROR result = handle_locally()
2023-03-20 11:33:19,853 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,854 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,854 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:19,855 ERROR raise exception
2023-03-20 11:33:19,855 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,855 ERROR result = handle_locally()
2023-03-20 11:33:19,856 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,856 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,856 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:19,857 ERROR raise exception
2023-03-20 11:33:19,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,857 ERROR result = handle_locally()
2023-03-20 11:33:19,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,858 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:19,859 ERROR raise exception
2023-03-20 11:33:19,859 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,860 ERROR result = handle_locally()
2023-03-20 11:33:19,860 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,860 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:19,861 ERROR raise exception
2023-03-20 11:33:19,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,862 ERROR result = handle_locally()
2023-03-20 11:33:19,862 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,862 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:19,865 ERROR raise exception
2023-03-20 11:33:19,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,866 ERROR result = handle_locally()
2023-03-20 11:33:19,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,867 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:19,867 ERROR raise exception
2023-03-20 11:33:19,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,868 ERROR result = handle_locally()
2023-03-20 11:33:19,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:19,869 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:19,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:19,869 ERROR raise exception
2023-03-20 11:33:19,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:19,870 ERROR result = handle_locally()
2023-03-20 11:33:19,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:19,871 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:19,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:19,872 ERROR constraint_type_strict)
2023-03-20 11:33:19,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:19,872 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:19,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:19,873 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:19,873 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:19,942 INFO Welcome to the CDS
2023-03-20 11:33:19,943 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:20,053 INFO Request is queued
no data201011
2023-03-20 11:33:21,143 INFO Request is failed
2023-03-20 11:33:21,143 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:21,144 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:21,144 ERROR Traceback (most recent call last):
2023-03-20 11:33:21,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,145 ERROR result = handle_locally()
2023-03-20 11:33:21,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,145 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:21,146 ERROR raise exception
2023-03-20 11:33:21,146 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,147 ERROR result = handle_locally()
2023-03-20 11:33:21,147 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,147 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,148 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:21,148 ERROR raise exception
2023-03-20 11:33:21,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,149 ERROR result = handle_locally()
2023-03-20 11:33:21,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,150 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:21,150 ERROR raise exception
2023-03-20 11:33:21,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,151 ERROR result = handle_locally()
2023-03-20 11:33:21,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,152 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:21,152 ERROR raise exception
2023-03-20 11:33:21,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,153 ERROR result = handle_locally()
2023-03-20 11:33:21,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,154 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:21,154 ERROR raise exception
2023-03-20 11:33:21,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,155 ERROR result = handle_locally()
2023-03-20 11:33:21,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,156 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:21,156 ERROR raise exception
2023-03-20 11:33:21,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,157 ERROR result = handle_locally()
2023-03-20 11:33:21,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:21,158 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:21,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:21,158 ERROR raise exception
2023-03-20 11:33:21,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:21,159 ERROR result = handle_locally()
2023-03-20 11:33:21,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:21,160 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:21,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:21,160 ERROR constraint_type_strict)
2023-03-20 11:33:21,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:21,161 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:21,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:21,162 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:21,162 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:21,260 INFO Welcome to the CDS
2023-03-20 11:33:21,261 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201012
2023-03-20 11:33:21,391 INFO Request is queued
2023-03-20 11:33:22,463 INFO Request is failed
2023-03-20 11:33:22,463 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:22,464 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:22,464 ERROR Traceback (most recent call last):
2023-03-20 11:33:22,464 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,465 ERROR result = handle_locally()
2023-03-20 11:33:22,465 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,466 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,466 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:22,467 ERROR raise exception
2023-03-20 11:33:22,467 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,467 ERROR result = handle_locally()
2023-03-20 11:33:22,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,468 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,468 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:22,469 ERROR raise exception
2023-03-20 11:33:22,469 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,469 ERROR result = handle_locally()
2023-03-20 11:33:22,470 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,470 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:22,471 ERROR raise exception
2023-03-20 11:33:22,471 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,472 ERROR result = handle_locally()
2023-03-20 11:33:22,472 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,472 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:22,473 ERROR raise exception
2023-03-20 11:33:22,473 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,474 ERROR result = handle_locally()
2023-03-20 11:33:22,474 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,474 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:22,475 ERROR raise exception
2023-03-20 11:33:22,475 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,476 ERROR result = handle_locally()
2023-03-20 11:33:22,476 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,476 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:22,477 ERROR raise exception
2023-03-20 11:33:22,477 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,478 ERROR result = handle_locally()
2023-03-20 11:33:22,478 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:22,478 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:22,479 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:22,479 ERROR raise exception
2023-03-20 11:33:22,482 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:22,482 ERROR result = handle_locally()
2023-03-20 11:33:22,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:22,483 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:22,483 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:22,484 ERROR constraint_type_strict)
2023-03-20 11:33:22,484 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:22,484 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:22,485 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:22,485 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:22,485 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:22,557 INFO Welcome to the CDS
2023-03-20 11:33:22,557 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:22,679 INFO Request is queued
no data201101
2023-03-20 11:33:23,755 INFO Request is failed
2023-03-20 11:33:23,756 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:23,756 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:23,757 ERROR Traceback (most recent call last):
2023-03-20 11:33:23,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,758 ERROR result = handle_locally()
2023-03-20 11:33:23,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,758 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:23,759 ERROR raise exception
2023-03-20 11:33:23,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,760 ERROR result = handle_locally()
2023-03-20 11:33:23,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,760 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:23,761 ERROR raise exception
2023-03-20 11:33:23,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,762 ERROR result = handle_locally()
2023-03-20 11:33:23,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,762 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:23,763 ERROR raise exception
2023-03-20 11:33:23,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,764 ERROR result = handle_locally()
2023-03-20 11:33:23,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,764 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:23,765 ERROR raise exception
2023-03-20 11:33:23,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,766 ERROR result = handle_locally()
2023-03-20 11:33:23,766 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,766 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:23,767 ERROR raise exception
2023-03-20 11:33:23,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,768 ERROR result = handle_locally()
2023-03-20 11:33:23,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,768 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:23,769 ERROR raise exception
2023-03-20 11:33:23,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,770 ERROR result = handle_locally()
2023-03-20 11:33:23,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:23,770 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:23,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:23,771 ERROR raise exception
2023-03-20 11:33:23,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:23,772 ERROR result = handle_locally()
2023-03-20 11:33:23,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:23,772 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:23,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:23,773 ERROR constraint_type_strict)
2023-03-20 11:33:23,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:23,774 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:23,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:23,775 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:23,775 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:23,851 INFO Welcome to the CDS
2023-03-20 11:33:23,851 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:23,971 INFO Request is queued
no data201102
2023-03-20 11:33:25,054 INFO Request is failed
2023-03-20 11:33:25,054 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:25,055 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:25,055 ERROR Traceback (most recent call last):
2023-03-20 11:33:25,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,056 ERROR result = handle_locally()
2023-03-20 11:33:25,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,057 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:25,057 ERROR raise exception
2023-03-20 11:33:25,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,058 ERROR result = handle_locally()
2023-03-20 11:33:25,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,059 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,059 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:25,059 ERROR raise exception
2023-03-20 11:33:25,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,060 ERROR result = handle_locally()
2023-03-20 11:33:25,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,061 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,061 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:25,061 ERROR raise exception
2023-03-20 11:33:25,062 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,062 ERROR result = handle_locally()
2023-03-20 11:33:25,062 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,063 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,063 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:25,063 ERROR raise exception
2023-03-20 11:33:25,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,064 ERROR result = handle_locally()
2023-03-20 11:33:25,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,065 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,065 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:25,065 ERROR raise exception
2023-03-20 11:33:25,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,066 ERROR result = handle_locally()
2023-03-20 11:33:25,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,067 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,067 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:25,067 ERROR raise exception
2023-03-20 11:33:25,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,068 ERROR result = handle_locally()
2023-03-20 11:33:25,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:25,069 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:25,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:25,069 ERROR raise exception
2023-03-20 11:33:25,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:25,070 ERROR result = handle_locally()
2023-03-20 11:33:25,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:25,071 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:25,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:25,071 ERROR constraint_type_strict)
2023-03-20 11:33:25,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:25,072 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:25,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:25,073 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:25,073 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:25,167 INFO Welcome to the CDS
2023-03-20 11:33:25,167 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201103
2023-03-20 11:33:25,279 INFO Request is queued
2023-03-20 11:33:26,367 INFO Request is failed
2023-03-20 11:33:26,368 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:26,368 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:26,369 ERROR Traceback (most recent call last):
2023-03-20 11:33:26,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,369 ERROR result = handle_locally()
2023-03-20 11:33:26,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,370 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:26,371 ERROR raise exception
2023-03-20 11:33:26,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,371 ERROR result = handle_locally()
2023-03-20 11:33:26,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,372 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:26,373 ERROR raise exception
2023-03-20 11:33:26,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,374 ERROR result = handle_locally()
2023-03-20 11:33:26,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,374 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:26,375 ERROR raise exception
2023-03-20 11:33:26,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,376 ERROR result = handle_locally()
2023-03-20 11:33:26,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,376 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:26,377 ERROR raise exception
2023-03-20 11:33:26,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,378 ERROR result = handle_locally()
2023-03-20 11:33:26,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,378 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:26,379 ERROR raise exception
2023-03-20 11:33:26,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,380 ERROR result = handle_locally()
2023-03-20 11:33:26,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:26,381 ERROR raise exception
2023-03-20 11:33:26,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,382 ERROR result = handle_locally()
2023-03-20 11:33:26,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:26,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:26,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:26,383 ERROR raise exception
2023-03-20 11:33:26,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:26,384 ERROR result = handle_locally()
2023-03-20 11:33:26,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:26,384 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:26,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:26,385 ERROR constraint_type_strict)
2023-03-20 11:33:26,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:26,386 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:26,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:26,386 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:26,387 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:26,455 INFO Welcome to the CDS
2023-03-20 11:33:26,456 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:26,588 INFO Request is queued
no data201104
2023-03-20 11:33:27,998 INFO Request is failed
2023-03-20 11:33:27,999 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:27,999 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:28,000 ERROR Traceback (most recent call last):
2023-03-20 11:33:28,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,000 ERROR result = handle_locally()
2023-03-20 11:33:28,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,001 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:28,002 ERROR raise exception
2023-03-20 11:33:28,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,003 ERROR result = handle_locally()
2023-03-20 11:33:28,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,003 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:28,004 ERROR raise exception
2023-03-20 11:33:28,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,005 ERROR result = handle_locally()
2023-03-20 11:33:28,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,005 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:28,006 ERROR raise exception
2023-03-20 11:33:28,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,007 ERROR result = handle_locally()
2023-03-20 11:33:28,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,007 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:28,008 ERROR raise exception
2023-03-20 11:33:28,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,009 ERROR result = handle_locally()
2023-03-20 11:33:28,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,009 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:28,010 ERROR raise exception
2023-03-20 11:33:28,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,011 ERROR result = handle_locally()
2023-03-20 11:33:28,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,011 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:28,012 ERROR raise exception
2023-03-20 11:33:28,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,013 ERROR result = handle_locally()
2023-03-20 11:33:28,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:28,013 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:28,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:28,014 ERROR raise exception
2023-03-20 11:33:28,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:28,015 ERROR result = handle_locally()
2023-03-20 11:33:28,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:28,015 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:28,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:28,016 ERROR constraint_type_strict)
2023-03-20 11:33:28,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:28,017 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:28,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:28,017 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:28,018 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:28,100 INFO Welcome to the CDS
2023-03-20 11:33:28,100 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201105
2023-03-20 11:33:28,253 INFO Request is queued
2023-03-20 11:33:29,312 INFO Request is failed
2023-03-20 11:33:29,313 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:29,313 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:29,314 ERROR Traceback (most recent call last):
2023-03-20 11:33:29,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,314 ERROR result = handle_locally()
2023-03-20 11:33:29,315 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,315 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,315 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:29,316 ERROR raise exception
2023-03-20 11:33:29,316 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,316 ERROR result = handle_locally()
2023-03-20 11:33:29,317 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,317 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,317 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:29,318 ERROR raise exception
2023-03-20 11:33:29,318 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,318 ERROR result = handle_locally()
2023-03-20 11:33:29,319 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,319 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,319 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:29,320 ERROR raise exception
2023-03-20 11:33:29,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,320 ERROR result = handle_locally()
2023-03-20 11:33:29,321 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,321 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,321 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:29,322 ERROR raise exception
2023-03-20 11:33:29,322 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,322 ERROR result = handle_locally()
2023-03-20 11:33:29,323 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,323 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,323 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:29,324 ERROR raise exception
2023-03-20 11:33:29,324 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,324 ERROR result = handle_locally()
2023-03-20 11:33:29,325 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,325 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,325 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:29,326 ERROR raise exception
2023-03-20 11:33:29,326 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,326 ERROR result = handle_locally()
2023-03-20 11:33:29,327 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:29,327 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:29,327 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:29,328 ERROR raise exception
2023-03-20 11:33:29,328 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:29,328 ERROR result = handle_locally()
2023-03-20 11:33:29,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:29,329 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:29,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:29,330 ERROR constraint_type_strict)
2023-03-20 11:33:29,330 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:29,330 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:29,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:29,331 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:29,331 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:29,403 INFO Welcome to the CDS
2023-03-20 11:33:29,403 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:29,483 INFO Request is queued
no data201106
2023-03-20 11:33:30,542 INFO Request is failed
2023-03-20 11:33:30,543 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:30,543 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:30,544 ERROR Traceback (most recent call last):
2023-03-20 11:33:30,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,544 ERROR result = handle_locally()
2023-03-20 11:33:30,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,545 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:30,546 ERROR raise exception
2023-03-20 11:33:30,546 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,546 ERROR result = handle_locally()
2023-03-20 11:33:30,547 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,547 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:30,548 ERROR raise exception
2023-03-20 11:33:30,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,549 ERROR result = handle_locally()
2023-03-20 11:33:30,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,549 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:30,550 ERROR raise exception
2023-03-20 11:33:30,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,551 ERROR result = handle_locally()
2023-03-20 11:33:30,551 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,551 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:30,552 ERROR raise exception
2023-03-20 11:33:30,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,553 ERROR result = handle_locally()
2023-03-20 11:33:30,553 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,553 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:30,554 ERROR raise exception
2023-03-20 11:33:30,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,555 ERROR result = handle_locally()
2023-03-20 11:33:30,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,555 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:30,556 ERROR raise exception
2023-03-20 11:33:30,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,557 ERROR result = handle_locally()
2023-03-20 11:33:30,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:30,557 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:30,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:30,558 ERROR raise exception
2023-03-20 11:33:30,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:30,558 ERROR result = handle_locally()
2023-03-20 11:33:30,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:30,559 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:30,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:30,560 ERROR constraint_type_strict)
2023-03-20 11:33:30,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:30,561 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:30,561 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:30,561 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:30,562 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:30,625 INFO Welcome to the CDS
2023-03-20 11:33:30,625 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:30,707 INFO Request is queued
no data201107
2023-03-20 11:33:31,772 INFO Request is failed
2023-03-20 11:33:31,773 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:31,773 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:31,774 ERROR Traceback (most recent call last):
2023-03-20 11:33:31,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,775 ERROR result = handle_locally()
2023-03-20 11:33:31,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,775 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:31,776 ERROR raise exception
2023-03-20 11:33:31,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,777 ERROR result = handle_locally()
2023-03-20 11:33:31,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,777 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:31,778 ERROR raise exception
2023-03-20 11:33:31,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,779 ERROR result = handle_locally()
2023-03-20 11:33:31,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:31,780 ERROR raise exception
2023-03-20 11:33:31,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,781 ERROR result = handle_locally()
2023-03-20 11:33:31,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,781 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:31,782 ERROR raise exception
2023-03-20 11:33:31,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,783 ERROR result = handle_locally()
2023-03-20 11:33:31,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,783 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:31,784 ERROR raise exception
2023-03-20 11:33:31,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,785 ERROR result = handle_locally()
2023-03-20 11:33:31,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,785 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:31,786 ERROR raise exception
2023-03-20 11:33:31,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,787 ERROR result = handle_locally()
2023-03-20 11:33:31,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:31,787 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:31,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:31,788 ERROR raise exception
2023-03-20 11:33:31,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:31,789 ERROR result = handle_locally()
2023-03-20 11:33:31,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:31,789 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:31,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:31,790 ERROR constraint_type_strict)
2023-03-20 11:33:31,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:31,791 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:31,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:31,791 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:31,792 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:31,848 INFO Welcome to the CDS
2023-03-20 11:33:31,849 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:31,937 INFO Request is queued
no data201108
2023-03-20 11:33:33,008 INFO Request is failed
2023-03-20 11:33:33,008 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:33,009 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:33,009 ERROR Traceback (most recent call last):
2023-03-20 11:33:33,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,010 ERROR result = handle_locally()
2023-03-20 11:33:33,010 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,010 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,011 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:33,011 ERROR raise exception
2023-03-20 11:33:33,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,012 ERROR result = handle_locally()
2023-03-20 11:33:33,012 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,013 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,013 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:33,013 ERROR raise exception
2023-03-20 11:33:33,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,014 ERROR result = handle_locally()
2023-03-20 11:33:33,014 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,015 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,015 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:33,015 ERROR raise exception
2023-03-20 11:33:33,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,016 ERROR result = handle_locally()
2023-03-20 11:33:33,016 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,017 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,017 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:33,017 ERROR raise exception
2023-03-20 11:33:33,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,018 ERROR result = handle_locally()
2023-03-20 11:33:33,018 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,019 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,019 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:33,019 ERROR raise exception
2023-03-20 11:33:33,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,020 ERROR result = handle_locally()
2023-03-20 11:33:33,020 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,021 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,021 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:33,021 ERROR raise exception
2023-03-20 11:33:33,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,022 ERROR result = handle_locally()
2023-03-20 11:33:33,022 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:33,023 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:33,023 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:33,023 ERROR raise exception
2023-03-20 11:33:33,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:33,024 ERROR result = handle_locally()
2023-03-20 11:33:33,024 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:33,025 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:33,025 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:33,025 ERROR constraint_type_strict)
2023-03-20 11:33:33,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:33,026 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:33,026 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:33,027 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:33,027 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:33,082 INFO Welcome to the CDS
2023-03-20 11:33:33,083 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:33,172 INFO Request is queued
no data201109
2023-03-20 11:33:34,250 INFO Request is failed
2023-03-20 11:33:34,250 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:34,251 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:34,251 ERROR Traceback (most recent call last):
2023-03-20 11:33:34,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,252 ERROR result = handle_locally()
2023-03-20 11:33:34,252 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,253 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,253 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:34,253 ERROR raise exception
2023-03-20 11:33:34,254 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,254 ERROR result = handle_locally()
2023-03-20 11:33:34,254 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,255 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,255 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:34,255 ERROR raise exception
2023-03-20 11:33:34,256 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,256 ERROR result = handle_locally()
2023-03-20 11:33:34,256 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,257 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,257 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:34,257 ERROR raise exception
2023-03-20 11:33:34,258 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,258 ERROR result = handle_locally()
2023-03-20 11:33:34,258 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,259 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,259 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:34,259 ERROR raise exception
2023-03-20 11:33:34,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,260 ERROR result = handle_locally()
2023-03-20 11:33:34,260 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,261 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,261 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:34,261 ERROR raise exception
2023-03-20 11:33:34,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,262 ERROR result = handle_locally()
2023-03-20 11:33:34,262 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,263 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,263 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:34,263 ERROR raise exception
2023-03-20 11:33:34,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,264 ERROR result = handle_locally()
2023-03-20 11:33:34,264 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:34,265 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:34,265 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:34,265 ERROR raise exception
2023-03-20 11:33:34,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:34,266 ERROR result = handle_locally()
2023-03-20 11:33:34,266 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:34,267 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:34,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:34,267 ERROR constraint_type_strict)
2023-03-20 11:33:34,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:34,268 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:34,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:34,269 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:34,269 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:34,326 INFO Welcome to the CDS
2023-03-20 11:33:34,327 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:34,435 INFO Request is queued
no data201110
2023-03-20 11:33:35,497 INFO Request is failed
2023-03-20 11:33:35,498 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:35,498 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:35,499 ERROR Traceback (most recent call last):
2023-03-20 11:33:35,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,500 ERROR result = handle_locally()
2023-03-20 11:33:35,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,500 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:35,501 ERROR raise exception
2023-03-20 11:33:35,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,502 ERROR result = handle_locally()
2023-03-20 11:33:35,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,502 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:35,503 ERROR raise exception
2023-03-20 11:33:35,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,504 ERROR result = handle_locally()
2023-03-20 11:33:35,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,504 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:35,505 ERROR raise exception
2023-03-20 11:33:35,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,506 ERROR result = handle_locally()
2023-03-20 11:33:35,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,506 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:35,507 ERROR raise exception
2023-03-20 11:33:35,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,508 ERROR result = handle_locally()
2023-03-20 11:33:35,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,508 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:35,509 ERROR raise exception
2023-03-20 11:33:35,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,510 ERROR result = handle_locally()
2023-03-20 11:33:35,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,510 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:35,511 ERROR raise exception
2023-03-20 11:33:35,511 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,512 ERROR result = handle_locally()
2023-03-20 11:33:35,512 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:35,512 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:35,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:35,513 ERROR raise exception
2023-03-20 11:33:35,513 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:35,514 ERROR result = handle_locally()
2023-03-20 11:33:35,514 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:35,514 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:35,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:35,515 ERROR constraint_type_strict)
2023-03-20 11:33:35,515 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:35,516 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:35,516 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:35,516 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:35,517 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:35,587 INFO Welcome to the CDS
2023-03-20 11:33:35,588 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:35,713 INFO Request is queued
no data201111
2023-03-20 11:33:36,776 INFO Request is failed
2023-03-20 11:33:36,777 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:36,777 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:36,778 ERROR Traceback (most recent call last):
2023-03-20 11:33:36,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,779 ERROR result = handle_locally()
2023-03-20 11:33:36,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,779 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:36,780 ERROR raise exception
2023-03-20 11:33:36,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,781 ERROR result = handle_locally()
2023-03-20 11:33:36,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,781 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:36,782 ERROR raise exception
2023-03-20 11:33:36,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,783 ERROR result = handle_locally()
2023-03-20 11:33:36,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,783 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:36,784 ERROR raise exception
2023-03-20 11:33:36,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,785 ERROR result = handle_locally()
2023-03-20 11:33:36,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,786 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:36,786 ERROR raise exception
2023-03-20 11:33:36,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,787 ERROR result = handle_locally()
2023-03-20 11:33:36,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,788 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:36,788 ERROR raise exception
2023-03-20 11:33:36,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,789 ERROR result = handle_locally()
2023-03-20 11:33:36,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,790 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:36,790 ERROR raise exception
2023-03-20 11:33:36,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,791 ERROR result = handle_locally()
2023-03-20 11:33:36,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:36,792 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:36,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:36,793 ERROR raise exception
2023-03-20 11:33:36,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:36,793 ERROR result = handle_locally()
2023-03-20 11:33:36,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:36,794 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:36,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:36,795 ERROR constraint_type_strict)
2023-03-20 11:33:36,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:36,795 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:36,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:36,796 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:36,796 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:36,852 INFO Welcome to the CDS
2023-03-20 11:33:36,853 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:36,990 INFO Request is queued
no data201112
2023-03-20 11:33:38,062 INFO Request is failed
2023-03-20 11:33:38,062 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:38,063 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:38,063 ERROR Traceback (most recent call last):
2023-03-20 11:33:38,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,064 ERROR result = handle_locally()
2023-03-20 11:33:38,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,065 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,065 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:38,065 ERROR raise exception
2023-03-20 11:33:38,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,066 ERROR result = handle_locally()
2023-03-20 11:33:38,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,067 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,067 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:38,068 ERROR raise exception
2023-03-20 11:33:38,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,068 ERROR result = handle_locally()
2023-03-20 11:33:38,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,069 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:38,070 ERROR raise exception
2023-03-20 11:33:38,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,070 ERROR result = handle_locally()
2023-03-20 11:33:38,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,071 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:38,072 ERROR raise exception
2023-03-20 11:33:38,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,072 ERROR result = handle_locally()
2023-03-20 11:33:38,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,073 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:38,074 ERROR raise exception
2023-03-20 11:33:38,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,075 ERROR result = handle_locally()
2023-03-20 11:33:38,075 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,075 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,076 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:38,076 ERROR raise exception
2023-03-20 11:33:38,076 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,077 ERROR result = handle_locally()
2023-03-20 11:33:38,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:38,077 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:38,078 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:38,078 ERROR raise exception
2023-03-20 11:33:38,078 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:38,079 ERROR result = handle_locally()
2023-03-20 11:33:38,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:38,079 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:38,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:38,080 ERROR constraint_type_strict)
2023-03-20 11:33:38,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:38,081 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:38,081 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:38,081 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:38,082 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:38,140 INFO Welcome to the CDS
2023-03-20 11:33:38,140 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:38,220 INFO Request is queued
no data201701
2023-03-20 11:33:39,280 INFO Request is failed
2023-03-20 11:33:39,281 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:39,281 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:39,282 ERROR Traceback (most recent call last):
2023-03-20 11:33:39,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,282 ERROR result = handle_locally()
2023-03-20 11:33:39,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:39,284 ERROR raise exception
2023-03-20 11:33:39,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,284 ERROR result = handle_locally()
2023-03-20 11:33:39,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:39,286 ERROR raise exception
2023-03-20 11:33:39,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,286 ERROR result = handle_locally()
2023-03-20 11:33:39,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:39,288 ERROR raise exception
2023-03-20 11:33:39,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,288 ERROR result = handle_locally()
2023-03-20 11:33:39,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,289 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:39,290 ERROR raise exception
2023-03-20 11:33:39,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,290 ERROR result = handle_locally()
2023-03-20 11:33:39,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,291 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:39,292 ERROR raise exception
2023-03-20 11:33:39,292 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,293 ERROR result = handle_locally()
2023-03-20 11:33:39,293 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,293 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:39,294 ERROR raise exception
2023-03-20 11:33:39,294 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,295 ERROR result = handle_locally()
2023-03-20 11:33:39,295 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:39,295 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:39,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:39,296 ERROR raise exception
2023-03-20 11:33:39,296 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:39,297 ERROR result = handle_locally()
2023-03-20 11:33:39,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:39,297 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:39,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:39,298 ERROR constraint_type_strict)
2023-03-20 11:33:39,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:39,299 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:39,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:39,299 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:39,300 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:39,357 INFO Welcome to the CDS
2023-03-20 11:33:39,357 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:39,429 INFO Request is queued
no data201702
2023-03-20 11:33:40,515 INFO Request is failed
2023-03-20 11:33:40,516 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:40,516 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:40,517 ERROR Traceback (most recent call last):
2023-03-20 11:33:40,517 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,518 ERROR result = handle_locally()
2023-03-20 11:33:40,518 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,518 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,519 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:40,519 ERROR raise exception
2023-03-20 11:33:40,519 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,520 ERROR result = handle_locally()
2023-03-20 11:33:40,520 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,520 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,521 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:40,521 ERROR raise exception
2023-03-20 11:33:40,521 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,522 ERROR result = handle_locally()
2023-03-20 11:33:40,522 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,522 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:40,523 ERROR raise exception
2023-03-20 11:33:40,523 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,524 ERROR result = handle_locally()
2023-03-20 11:33:40,524 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,524 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,525 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:40,525 ERROR raise exception
2023-03-20 11:33:40,526 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,526 ERROR result = handle_locally()
2023-03-20 11:33:40,526 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,527 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,527 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:40,527 ERROR raise exception
2023-03-20 11:33:40,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,528 ERROR result = handle_locally()
2023-03-20 11:33:40,528 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,529 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,529 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:40,529 ERROR raise exception
2023-03-20 11:33:40,530 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,530 ERROR result = handle_locally()
2023-03-20 11:33:40,531 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:40,531 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:40,531 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:40,532 ERROR raise exception
2023-03-20 11:33:40,532 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:40,532 ERROR result = handle_locally()
2023-03-20 11:33:40,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:40,533 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:40,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:40,534 ERROR constraint_type_strict)
2023-03-20 11:33:40,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:40,534 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:40,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:40,535 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:40,535 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:40,606 INFO Welcome to the CDS
2023-03-20 11:33:40,607 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:40,724 INFO Request is queued
no data201703
2023-03-20 11:33:41,784 INFO Request is failed
2023-03-20 11:33:41,784 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:41,785 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:41,785 ERROR Traceback (most recent call last):
2023-03-20 11:33:41,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,786 ERROR result = handle_locally()
2023-03-20 11:33:41,786 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,787 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,787 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:41,787 ERROR raise exception
2023-03-20 11:33:41,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,788 ERROR result = handle_locally()
2023-03-20 11:33:41,788 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,789 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:41,789 ERROR raise exception
2023-03-20 11:33:41,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,790 ERROR result = handle_locally()
2023-03-20 11:33:41,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,791 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:41,791 ERROR raise exception
2023-03-20 11:33:41,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,792 ERROR result = handle_locally()
2023-03-20 11:33:41,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,793 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:41,793 ERROR raise exception
2023-03-20 11:33:41,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,794 ERROR result = handle_locally()
2023-03-20 11:33:41,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,795 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:41,796 ERROR raise exception
2023-03-20 11:33:41,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,796 ERROR result = handle_locally()
2023-03-20 11:33:41,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,797 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:41,798 ERROR raise exception
2023-03-20 11:33:41,798 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,798 ERROR result = handle_locally()
2023-03-20 11:33:41,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:41,799 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:41,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:41,800 ERROR raise exception
2023-03-20 11:33:41,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:41,800 ERROR result = handle_locally()
2023-03-20 11:33:41,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:41,801 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:41,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:41,802 ERROR constraint_type_strict)
2023-03-20 11:33:41,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:41,802 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:41,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:41,803 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:41,803 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:41,861 INFO Welcome to the CDS
2023-03-20 11:33:41,861 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:41,993 INFO Request is queued
no data201704
2023-03-20 11:33:43,071 INFO Request is failed
2023-03-20 11:33:43,072 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:43,073 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:43,073 ERROR Traceback (most recent call last):
2023-03-20 11:33:43,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,074 ERROR result = handle_locally()
2023-03-20 11:33:43,074 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,074 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,075 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:43,075 ERROR raise exception
2023-03-20 11:33:43,075 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,076 ERROR result = handle_locally()
2023-03-20 11:33:43,076 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,076 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:43,077 ERROR raise exception
2023-03-20 11:33:43,077 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,078 ERROR result = handle_locally()
2023-03-20 11:33:43,078 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,078 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:43,079 ERROR raise exception
2023-03-20 11:33:43,079 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,080 ERROR result = handle_locally()
2023-03-20 11:33:43,080 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,081 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,081 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:43,081 ERROR raise exception
2023-03-20 11:33:43,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,082 ERROR result = handle_locally()
2023-03-20 11:33:43,082 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,083 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,083 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:43,083 ERROR raise exception
2023-03-20 11:33:43,084 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,084 ERROR result = handle_locally()
2023-03-20 11:33:43,084 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,085 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:43,085 ERROR raise exception
2023-03-20 11:33:43,086 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,086 ERROR result = handle_locally()
2023-03-20 11:33:43,086 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:43,087 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:43,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:43,087 ERROR raise exception
2023-03-20 11:33:43,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:43,088 ERROR result = handle_locally()
2023-03-20 11:33:43,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:43,089 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:43,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:43,089 ERROR constraint_type_strict)
2023-03-20 11:33:43,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:43,090 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:43,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:43,091 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:43,091 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:43,159 INFO Welcome to the CDS
2023-03-20 11:33:43,159 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:43,259 INFO Request is queued
no data201705
2023-03-20 11:33:44,353 INFO Request is failed
2023-03-20 11:33:44,353 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:44,354 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:44,354 ERROR Traceback (most recent call last):
2023-03-20 11:33:44,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,355 ERROR result = handle_locally()
2023-03-20 11:33:44,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,355 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:44,356 ERROR raise exception
2023-03-20 11:33:44,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,357 ERROR result = handle_locally()
2023-03-20 11:33:44,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,357 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:44,358 ERROR raise exception
2023-03-20 11:33:44,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,359 ERROR result = handle_locally()
2023-03-20 11:33:44,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,360 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:44,360 ERROR raise exception
2023-03-20 11:33:44,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,361 ERROR result = handle_locally()
2023-03-20 11:33:44,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,362 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,362 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:44,362 ERROR raise exception
2023-03-20 11:33:44,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,363 ERROR result = handle_locally()
2023-03-20 11:33:44,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,364 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,364 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:44,364 ERROR raise exception
2023-03-20 11:33:44,365 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,365 ERROR result = handle_locally()
2023-03-20 11:33:44,365 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,366 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,366 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:44,366 ERROR raise exception
2023-03-20 11:33:44,367 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,367 ERROR result = handle_locally()
2023-03-20 11:33:44,367 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:44,368 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:44,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:44,368 ERROR raise exception
2023-03-20 11:33:44,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:44,369 ERROR result = handle_locally()
2023-03-20 11:33:44,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:44,370 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:44,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:44,370 ERROR constraint_type_strict)
2023-03-20 11:33:44,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:44,371 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:44,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:44,372 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:44,372 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:44,441 INFO Welcome to the CDS
2023-03-20 11:33:44,442 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:44,550 INFO Request is queued
no data201706
2023-03-20 11:33:45,631 INFO Request is failed
2023-03-20 11:33:45,632 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:45,633 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:45,633 ERROR Traceback (most recent call last):
2023-03-20 11:33:45,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,634 ERROR result = handle_locally()
2023-03-20 11:33:45,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,635 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:45,635 ERROR raise exception
2023-03-20 11:33:45,636 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,636 ERROR result = handle_locally()
2023-03-20 11:33:45,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,637 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:45,638 ERROR raise exception
2023-03-20 11:33:45,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,638 ERROR result = handle_locally()
2023-03-20 11:33:45,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,639 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:45,640 ERROR raise exception
2023-03-20 11:33:45,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,640 ERROR result = handle_locally()
2023-03-20 11:33:45,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,641 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:45,642 ERROR raise exception
2023-03-20 11:33:45,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,643 ERROR result = handle_locally()
2023-03-20 11:33:45,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,643 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:45,644 ERROR raise exception
2023-03-20 11:33:45,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,645 ERROR result = handle_locally()
2023-03-20 11:33:45,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,645 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:45,646 ERROR raise exception
2023-03-20 11:33:45,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,647 ERROR result = handle_locally()
2023-03-20 11:33:45,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:45,647 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:45,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:45,648 ERROR raise exception
2023-03-20 11:33:45,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:45,649 ERROR result = handle_locally()
2023-03-20 11:33:45,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:45,649 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:45,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:45,650 ERROR constraint_type_strict)
2023-03-20 11:33:45,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:45,651 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:45,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:45,652 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:45,652 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:45,729 INFO Welcome to the CDS
2023-03-20 11:33:45,730 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201707
2023-03-20 11:33:45,881 INFO Request is queued
2023-03-20 11:33:46,945 INFO Request is failed
2023-03-20 11:33:46,945 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:46,946 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:46,946 ERROR Traceback (most recent call last):
2023-03-20 11:33:46,946 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,947 ERROR result = handle_locally()
2023-03-20 11:33:46,947 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,948 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,948 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:46,948 ERROR raise exception
2023-03-20 11:33:46,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,949 ERROR result = handle_locally()
2023-03-20 11:33:46,949 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,950 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,950 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:46,950 ERROR raise exception
2023-03-20 11:33:46,951 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,951 ERROR result = handle_locally()
2023-03-20 11:33:46,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,952 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:46,953 ERROR raise exception
2023-03-20 11:33:46,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,953 ERROR result = handle_locally()
2023-03-20 11:33:46,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,954 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:46,955 ERROR raise exception
2023-03-20 11:33:46,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,955 ERROR result = handle_locally()
2023-03-20 11:33:46,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,956 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:46,957 ERROR raise exception
2023-03-20 11:33:46,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,957 ERROR result = handle_locally()
2023-03-20 11:33:46,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,958 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:46,959 ERROR raise exception
2023-03-20 11:33:46,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,960 ERROR result = handle_locally()
2023-03-20 11:33:46,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:46,960 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:46,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:46,961 ERROR raise exception
2023-03-20 11:33:46,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:46,962 ERROR result = handle_locally()
2023-03-20 11:33:46,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:46,962 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:46,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:46,963 ERROR constraint_type_strict)
2023-03-20 11:33:46,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:46,964 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:46,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:46,964 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:46,965 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:47,026 INFO Welcome to the CDS
2023-03-20 11:33:47,026 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:47,151 INFO Request is queued
no data201708
2023-03-20 11:33:48,224 INFO Request is failed
2023-03-20 11:33:48,225 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:48,225 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:48,226 ERROR Traceback (most recent call last):
2023-03-20 11:33:48,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,226 ERROR result = handle_locally()
2023-03-20 11:33:48,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,227 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:48,228 ERROR raise exception
2023-03-20 11:33:48,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,228 ERROR result = handle_locally()
2023-03-20 11:33:48,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,229 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:48,230 ERROR raise exception
2023-03-20 11:33:48,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,231 ERROR result = handle_locally()
2023-03-20 11:33:48,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,231 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:48,232 ERROR raise exception
2023-03-20 11:33:48,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,233 ERROR result = handle_locally()
2023-03-20 11:33:48,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,233 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:48,234 ERROR raise exception
2023-03-20 11:33:48,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,235 ERROR result = handle_locally()
2023-03-20 11:33:48,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,235 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:48,236 ERROR raise exception
2023-03-20 11:33:48,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,237 ERROR result = handle_locally()
2023-03-20 11:33:48,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,237 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:48,238 ERROR raise exception
2023-03-20 11:33:48,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,239 ERROR result = handle_locally()
2023-03-20 11:33:48,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:48,240 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:48,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:48,240 ERROR raise exception
2023-03-20 11:33:48,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:48,241 ERROR result = handle_locally()
2023-03-20 11:33:48,241 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:48,242 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:48,242 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:48,242 ERROR constraint_type_strict)
2023-03-20 11:33:48,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:48,243 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:48,243 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:48,244 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:48,244 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:48,304 INFO Welcome to the CDS
2023-03-20 11:33:48,305 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:48,416 INFO Request is queued
no data201709
2023-03-20 11:33:49,487 INFO Request is failed
2023-03-20 11:33:49,488 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:49,488 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:49,489 ERROR Traceback (most recent call last):
2023-03-20 11:33:49,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,489 ERROR result = handle_locally()
2023-03-20 11:33:49,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,490 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:49,491 ERROR raise exception
2023-03-20 11:33:49,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,492 ERROR result = handle_locally()
2023-03-20 11:33:49,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,492 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:49,493 ERROR raise exception
2023-03-20 11:33:49,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,494 ERROR result = handle_locally()
2023-03-20 11:33:49,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,495 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:49,497 ERROR raise exception
2023-03-20 11:33:49,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,498 ERROR result = handle_locally()
2023-03-20 11:33:49,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,498 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:49,499 ERROR raise exception
2023-03-20 11:33:49,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,500 ERROR result = handle_locally()
2023-03-20 11:33:49,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,501 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:49,501 ERROR raise exception
2023-03-20 11:33:49,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,502 ERROR result = handle_locally()
2023-03-20 11:33:49,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,503 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:49,503 ERROR raise exception
2023-03-20 11:33:49,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,504 ERROR result = handle_locally()
2023-03-20 11:33:49,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:49,505 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:49,505 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:49,505 ERROR raise exception
2023-03-20 11:33:49,506 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:49,506 ERROR result = handle_locally()
2023-03-20 11:33:49,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:49,507 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:49,507 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:49,508 ERROR constraint_type_strict)
2023-03-20 11:33:49,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:49,508 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:49,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:49,509 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:49,509 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:49,579 INFO Welcome to the CDS
2023-03-20 11:33:49,579 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201710
2023-03-20 11:33:49,731 INFO Request is queued
2023-03-20 11:33:50,790 INFO Request is failed
2023-03-20 11:33:50,791 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:50,791 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:50,792 ERROR Traceback (most recent call last):
2023-03-20 11:33:50,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,793 ERROR result = handle_locally()
2023-03-20 11:33:50,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,793 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:50,794 ERROR raise exception
2023-03-20 11:33:50,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,795 ERROR result = handle_locally()
2023-03-20 11:33:50,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,796 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:50,796 ERROR raise exception
2023-03-20 11:33:50,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,797 ERROR result = handle_locally()
2023-03-20 11:33:50,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,798 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,798 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:50,798 ERROR raise exception
2023-03-20 11:33:50,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,799 ERROR result = handle_locally()
2023-03-20 11:33:50,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,800 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:50,801 ERROR raise exception
2023-03-20 11:33:50,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,801 ERROR result = handle_locally()
2023-03-20 11:33:50,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,802 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:50,803 ERROR raise exception
2023-03-20 11:33:50,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,803 ERROR result = handle_locally()
2023-03-20 11:33:50,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,804 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:50,805 ERROR raise exception
2023-03-20 11:33:50,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,805 ERROR result = handle_locally()
2023-03-20 11:33:50,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:50,806 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:50,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:50,807 ERROR raise exception
2023-03-20 11:33:50,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:50,808 ERROR result = handle_locally()
2023-03-20 11:33:50,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:50,808 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:50,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:50,809 ERROR constraint_type_strict)
2023-03-20 11:33:50,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:50,810 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:50,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:50,810 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:50,811 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:50,866 INFO Welcome to the CDS
2023-03-20 11:33:50,867 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:50,971 INFO Request is queued
no data201711
2023-03-20 11:33:52,036 INFO Request is failed
2023-03-20 11:33:52,037 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:52,037 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:52,038 ERROR Traceback (most recent call last):
2023-03-20 11:33:52,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,038 ERROR result = handle_locally()
2023-03-20 11:33:52,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,039 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:52,040 ERROR raise exception
2023-03-20 11:33:52,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,041 ERROR result = handle_locally()
2023-03-20 11:33:52,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,042 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:52,043 ERROR raise exception
2023-03-20 11:33:52,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,044 ERROR result = handle_locally()
2023-03-20 11:33:52,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,044 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:52,045 ERROR raise exception
2023-03-20 11:33:52,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,046 ERROR result = handle_locally()
2023-03-20 11:33:52,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,046 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:52,047 ERROR raise exception
2023-03-20 11:33:52,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,048 ERROR result = handle_locally()
2023-03-20 11:33:52,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,049 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:52,049 ERROR raise exception
2023-03-20 11:33:52,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,050 ERROR result = handle_locally()
2023-03-20 11:33:52,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,051 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:52,051 ERROR raise exception
2023-03-20 11:33:52,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,052 ERROR result = handle_locally()
2023-03-20 11:33:52,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:52,053 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:52,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:52,053 ERROR raise exception
2023-03-20 11:33:52,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:52,054 ERROR result = handle_locally()
2023-03-20 11:33:52,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:52,055 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:52,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:52,055 ERROR constraint_type_strict)
2023-03-20 11:33:52,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:52,056 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:52,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:52,057 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:52,057 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:52,113 INFO Welcome to the CDS
2023-03-20 11:33:52,114 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201712
2023-03-20 11:33:52,285 INFO Request is queued
2023-03-20 11:33:53,344 INFO Request is failed
2023-03-20 11:33:53,345 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:53,345 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:53,346 ERROR Traceback (most recent call last):
2023-03-20 11:33:53,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,346 ERROR result = handle_locally()
2023-03-20 11:33:53,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,347 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:53,348 ERROR raise exception
2023-03-20 11:33:53,348 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,349 ERROR result = handle_locally()
2023-03-20 11:33:53,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,349 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:53,350 ERROR raise exception
2023-03-20 11:33:53,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,351 ERROR result = handle_locally()
2023-03-20 11:33:53,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,351 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:53,352 ERROR raise exception
2023-03-20 11:33:53,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,353 ERROR result = handle_locally()
2023-03-20 11:33:53,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,353 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:53,354 ERROR raise exception
2023-03-20 11:33:53,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,355 ERROR result = handle_locally()
2023-03-20 11:33:53,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,355 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:53,356 ERROR raise exception
2023-03-20 11:33:53,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,357 ERROR result = handle_locally()
2023-03-20 11:33:53,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,357 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:53,358 ERROR raise exception
2023-03-20 11:33:53,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,359 ERROR result = handle_locally()
2023-03-20 11:33:53,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:53,360 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:53,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:53,360 ERROR raise exception
2023-03-20 11:33:53,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:53,361 ERROR result = handle_locally()
2023-03-20 11:33:53,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:53,362 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:53,362 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:53,362 ERROR constraint_type_strict)
2023-03-20 11:33:53,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:53,363 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:53,363 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:53,364 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:53,364 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:53,420 INFO Welcome to the CDS
2023-03-20 11:33:53,421 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:53,507 INFO Request is queued
no data201801
2023-03-20 11:33:54,583 INFO Request is failed
2023-03-20 11:33:54,584 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:54,584 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:54,584 ERROR Traceback (most recent call last):
2023-03-20 11:33:54,585 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,585 ERROR result = handle_locally()
2023-03-20 11:33:54,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,586 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:54,587 ERROR raise exception
2023-03-20 11:33:54,587 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,587 ERROR result = handle_locally()
2023-03-20 11:33:54,588 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,588 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,588 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:54,589 ERROR raise exception
2023-03-20 11:33:54,589 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,589 ERROR result = handle_locally()
2023-03-20 11:33:54,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,590 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:54,591 ERROR raise exception
2023-03-20 11:33:54,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,592 ERROR result = handle_locally()
2023-03-20 11:33:54,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,592 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:54,593 ERROR raise exception
2023-03-20 11:33:54,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,594 ERROR result = handle_locally()
2023-03-20 11:33:54,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,594 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:54,595 ERROR raise exception
2023-03-20 11:33:54,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,596 ERROR result = handle_locally()
2023-03-20 11:33:54,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,596 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:54,597 ERROR raise exception
2023-03-20 11:33:54,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,598 ERROR result = handle_locally()
2023-03-20 11:33:54,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:54,599 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:54,599 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:54,599 ERROR raise exception
2023-03-20 11:33:54,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:54,600 ERROR result = handle_locally()
2023-03-20 11:33:54,600 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:54,601 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:54,601 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:54,601 ERROR constraint_type_strict)
2023-03-20 11:33:54,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:54,602 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:54,602 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:54,603 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:54,603 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:54,684 INFO Welcome to the CDS
2023-03-20 11:33:54,685 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:54,799 INFO Request is queued
no data201802
2023-03-20 11:33:55,869 INFO Request is failed
2023-03-20 11:33:55,869 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:55,870 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:55,870 ERROR Traceback (most recent call last):
2023-03-20 11:33:55,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,871 ERROR result = handle_locally()
2023-03-20 11:33:55,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,871 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:55,872 ERROR raise exception
2023-03-20 11:33:55,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,873 ERROR result = handle_locally()
2023-03-20 11:33:55,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,873 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:55,874 ERROR raise exception
2023-03-20 11:33:55,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,875 ERROR result = handle_locally()
2023-03-20 11:33:55,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,876 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:55,876 ERROR raise exception
2023-03-20 11:33:55,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,877 ERROR result = handle_locally()
2023-03-20 11:33:55,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,878 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,878 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:55,878 ERROR raise exception
2023-03-20 11:33:55,879 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,879 ERROR result = handle_locally()
2023-03-20 11:33:55,879 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,880 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,880 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:55,880 ERROR raise exception
2023-03-20 11:33:55,881 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,881 ERROR result = handle_locally()
2023-03-20 11:33:55,881 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,882 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,882 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:55,882 ERROR raise exception
2023-03-20 11:33:55,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,883 ERROR result = handle_locally()
2023-03-20 11:33:55,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:55,884 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:55,884 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:55,884 ERROR raise exception
2023-03-20 11:33:55,885 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:55,885 ERROR result = handle_locally()
2023-03-20 11:33:55,885 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:55,886 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:55,886 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:55,886 ERROR constraint_type_strict)
2023-03-20 11:33:55,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:55,887 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:55,887 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:55,888 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:55,888 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:55,958 INFO Welcome to the CDS
2023-03-20 11:33:55,958 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:56,067 INFO Request is queued
no data201803
2023-03-20 11:33:57,126 INFO Request is failed
2023-03-20 11:33:57,127 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:57,127 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:57,128 ERROR Traceback (most recent call last):
2023-03-20 11:33:57,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,128 ERROR result = handle_locally()
2023-03-20 11:33:57,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,129 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:57,130 ERROR raise exception
2023-03-20 11:33:57,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,130 ERROR result = handle_locally()
2023-03-20 11:33:57,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,131 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:57,132 ERROR raise exception
2023-03-20 11:33:57,132 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,132 ERROR result = handle_locally()
2023-03-20 11:33:57,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,133 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,134 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:57,134 ERROR raise exception
2023-03-20 11:33:57,134 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,135 ERROR result = handle_locally()
2023-03-20 11:33:57,135 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,135 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,136 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:57,136 ERROR raise exception
2023-03-20 11:33:57,136 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,137 ERROR result = handle_locally()
2023-03-20 11:33:57,137 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,137 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,138 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:57,138 ERROR raise exception
2023-03-20 11:33:57,138 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,139 ERROR result = handle_locally()
2023-03-20 11:33:57,139 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,139 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,140 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:57,140 ERROR raise exception
2023-03-20 11:33:57,141 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,141 ERROR result = handle_locally()
2023-03-20 11:33:57,141 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:57,142 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:57,142 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:57,142 ERROR raise exception
2023-03-20 11:33:57,143 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:57,143 ERROR result = handle_locally()
2023-03-20 11:33:57,143 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:57,144 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:57,144 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:57,144 ERROR constraint_type_strict)
2023-03-20 11:33:57,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:57,145 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:57,145 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:57,146 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:57,146 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:57,207 INFO Welcome to the CDS
2023-03-20 11:33:57,208 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:57,325 INFO Request is queued
no data201804
2023-03-20 11:33:58,390 INFO Request is failed
2023-03-20 11:33:58,391 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:58,391 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:58,391 ERROR Traceback (most recent call last):
2023-03-20 11:33:58,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,392 ERROR result = handle_locally()
2023-03-20 11:33:58,393 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,393 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,393 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:58,394 ERROR raise exception
2023-03-20 11:33:58,394 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,394 ERROR result = handle_locally()
2023-03-20 11:33:58,395 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,395 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,395 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:58,396 ERROR raise exception
2023-03-20 11:33:58,396 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,397 ERROR result = handle_locally()
2023-03-20 11:33:58,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,397 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:58,398 ERROR raise exception
2023-03-20 11:33:58,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,399 ERROR result = handle_locally()
2023-03-20 11:33:58,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,399 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:58,400 ERROR raise exception
2023-03-20 11:33:58,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,401 ERROR result = handle_locally()
2023-03-20 11:33:58,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,401 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:58,402 ERROR raise exception
2023-03-20 11:33:58,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,403 ERROR result = handle_locally()
2023-03-20 11:33:58,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,404 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:58,404 ERROR raise exception
2023-03-20 11:33:58,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,405 ERROR result = handle_locally()
2023-03-20 11:33:58,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:58,406 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:58,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:58,407 ERROR raise exception
2023-03-20 11:33:58,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:58,407 ERROR result = handle_locally()
2023-03-20 11:33:58,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:58,408 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:58,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:58,409 ERROR constraint_type_strict)
2023-03-20 11:33:58,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:58,410 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:58,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:58,411 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:58,411 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:58,469 INFO Welcome to the CDS
2023-03-20 11:33:58,470 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:58,544 INFO Request is queued
no data201805
2023-03-20 11:33:59,611 INFO Request is failed
2023-03-20 11:33:59,612 ERROR Message: the request you have submitted is not valid
2023-03-20 11:33:59,612 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:59,613 ERROR Traceback (most recent call last):
2023-03-20 11:33:59,613 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,613 ERROR result = handle_locally()
2023-03-20 11:33:59,614 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,614 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:33:59,615 ERROR raise exception
2023-03-20 11:33:59,615 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,616 ERROR result = handle_locally()
2023-03-20 11:33:59,616 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,616 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,617 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:33:59,617 ERROR raise exception
2023-03-20 11:33:59,618 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,618 ERROR result = handle_locally()
2023-03-20 11:33:59,618 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,619 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,619 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:33:59,619 ERROR raise exception
2023-03-20 11:33:59,620 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,620 ERROR result = handle_locally()
2023-03-20 11:33:59,620 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,621 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,621 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:59,621 ERROR raise exception
2023-03-20 11:33:59,622 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,622 ERROR result = handle_locally()
2023-03-20 11:33:59,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,623 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,623 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:59,624 ERROR raise exception
2023-03-20 11:33:59,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,624 ERROR result = handle_locally()
2023-03-20 11:33:59,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,625 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:59,626 ERROR raise exception
2023-03-20 11:33:59,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,626 ERROR result = handle_locally()
2023-03-20 11:33:59,627 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:33:59,627 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:33:59,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:33:59,628 ERROR raise exception
2023-03-20 11:33:59,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:33:59,629 ERROR result = handle_locally()
2023-03-20 11:33:59,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:33:59,629 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:33:59,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:33:59,630 ERROR constraint_type_strict)
2023-03-20 11:33:59,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:33:59,631 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:33:59,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:33:59,631 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:33:59,632 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:33:59,693 INFO Welcome to the CDS
2023-03-20 11:33:59,694 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:33:59,828 INFO Request is queued
no data201806
2023-03-20 11:34:00,900 INFO Request is failed
2023-03-20 11:34:00,901 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:00,901 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:00,902 ERROR Traceback (most recent call last):
2023-03-20 11:34:00,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,902 ERROR result = handle_locally()
2023-03-20 11:34:00,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,903 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:00,904 ERROR raise exception
2023-03-20 11:34:00,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,905 ERROR result = handle_locally()
2023-03-20 11:34:00,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,905 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:00,906 ERROR raise exception
2023-03-20 11:34:00,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,907 ERROR result = handle_locally()
2023-03-20 11:34:00,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,907 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:00,908 ERROR raise exception
2023-03-20 11:34:00,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,909 ERROR result = handle_locally()
2023-03-20 11:34:00,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,910 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:00,910 ERROR raise exception
2023-03-20 11:34:00,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,911 ERROR result = handle_locally()
2023-03-20 11:34:00,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,912 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:00,912 ERROR raise exception
2023-03-20 11:34:00,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,913 ERROR result = handle_locally()
2023-03-20 11:34:00,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,914 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:00,915 ERROR raise exception
2023-03-20 11:34:00,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,915 ERROR result = handle_locally()
2023-03-20 11:34:00,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:00,916 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:00,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:00,917 ERROR raise exception
2023-03-20 11:34:00,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:00,917 ERROR result = handle_locally()
2023-03-20 11:34:00,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:00,918 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:00,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:00,919 ERROR constraint_type_strict)
2023-03-20 11:34:00,919 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:00,920 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:00,920 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:00,920 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:00,921 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:00,992 INFO Welcome to the CDS
2023-03-20 11:34:00,992 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:01,078 INFO Request is queued
no data201807
2023-03-20 11:34:02,139 INFO Request is running
2023-03-20 11:34:06,036 INFO Request is failed
2023-03-20 11:34:06,037 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:06,037 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:06,038 ERROR Traceback (most recent call last):
2023-03-20 11:34:06,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,038 ERROR result = handle_locally()
2023-03-20 11:34:06,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,039 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:06,040 ERROR raise exception
2023-03-20 11:34:06,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,041 ERROR result = handle_locally()
2023-03-20 11:34:06,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,042 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:06,043 ERROR raise exception
2023-03-20 11:34:06,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,044 ERROR result = handle_locally()
2023-03-20 11:34:06,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,044 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:06,045 ERROR raise exception
2023-03-20 11:34:06,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,046 ERROR result = handle_locally()
2023-03-20 11:34:06,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,046 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:06,047 ERROR raise exception
2023-03-20 11:34:06,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,048 ERROR result = handle_locally()
2023-03-20 11:34:06,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,049 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:06,049 ERROR raise exception
2023-03-20 11:34:06,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,050 ERROR result = handle_locally()
2023-03-20 11:34:06,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,051 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:06,051 ERROR raise exception
2023-03-20 11:34:06,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,052 ERROR result = handle_locally()
2023-03-20 11:34:06,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:06,053 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:06,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:06,053 ERROR raise exception
2023-03-20 11:34:06,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:06,054 ERROR result = handle_locally()
2023-03-20 11:34:06,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:06,055 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:06,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:06,056 ERROR constraint_type_strict)
2023-03-20 11:34:06,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:06,056 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:06,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:06,057 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:06,057 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:06,129 INFO Welcome to the CDS
2023-03-20 11:34:06,129 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:06,221 INFO Request is queued
no data201808
2023-03-20 11:34:07,318 INFO Request is failed
2023-03-20 11:34:07,318 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:07,319 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:07,319 ERROR Traceback (most recent call last):
2023-03-20 11:34:07,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,320 ERROR result = handle_locally()
2023-03-20 11:34:07,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,321 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,321 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:07,321 ERROR raise exception
2023-03-20 11:34:07,322 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,322 ERROR result = handle_locally()
2023-03-20 11:34:07,322 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,323 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,323 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:07,323 ERROR raise exception
2023-03-20 11:34:07,324 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,324 ERROR result = handle_locally()
2023-03-20 11:34:07,324 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,325 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,325 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:07,325 ERROR raise exception
2023-03-20 11:34:07,326 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,326 ERROR result = handle_locally()
2023-03-20 11:34:07,326 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,327 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,327 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:07,328 ERROR raise exception
2023-03-20 11:34:07,328 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,328 ERROR result = handle_locally()
2023-03-20 11:34:07,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,329 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,329 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:07,330 ERROR raise exception
2023-03-20 11:34:07,330 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,330 ERROR result = handle_locally()
2023-03-20 11:34:07,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,331 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,331 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:07,332 ERROR raise exception
2023-03-20 11:34:07,332 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,332 ERROR result = handle_locally()
2023-03-20 11:34:07,333 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:07,333 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:07,333 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:07,334 ERROR raise exception
2023-03-20 11:34:07,334 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:07,334 ERROR result = handle_locally()
2023-03-20 11:34:07,335 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:07,335 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:07,335 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:07,336 ERROR constraint_type_strict)
2023-03-20 11:34:07,336 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:07,336 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:07,337 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:07,337 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:07,337 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:07,420 INFO Welcome to the CDS
2023-03-20 11:34:07,420 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201809
2023-03-20 11:34:07,557 INFO Request is queued
2023-03-20 11:34:08,622 INFO Request is failed
2023-03-20 11:34:08,623 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:08,623 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:08,624 ERROR Traceback (most recent call last):
2023-03-20 11:34:08,624 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,624 ERROR result = handle_locally()
2023-03-20 11:34:08,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,625 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,625 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:08,626 ERROR raise exception
2023-03-20 11:34:08,626 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,627 ERROR result = handle_locally()
2023-03-20 11:34:08,627 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,627 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:08,628 ERROR raise exception
2023-03-20 11:34:08,628 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,629 ERROR result = handle_locally()
2023-03-20 11:34:08,629 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,629 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:08,630 ERROR raise exception
2023-03-20 11:34:08,630 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,631 ERROR result = handle_locally()
2023-03-20 11:34:08,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,631 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,632 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:08,632 ERROR raise exception
2023-03-20 11:34:08,633 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,633 ERROR result = handle_locally()
2023-03-20 11:34:08,633 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,634 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:08,634 ERROR raise exception
2023-03-20 11:34:08,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,635 ERROR result = handle_locally()
2023-03-20 11:34:08,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,636 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,636 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:08,636 ERROR raise exception
2023-03-20 11:34:08,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,637 ERROR result = handle_locally()
2023-03-20 11:34:08,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:08,638 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:08,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:08,638 ERROR raise exception
2023-03-20 11:34:08,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:08,639 ERROR result = handle_locally()
2023-03-20 11:34:08,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:08,640 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:08,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:08,640 ERROR constraint_type_strict)
2023-03-20 11:34:08,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:08,641 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:08,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:08,642 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:08,642 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:08,698 INFO Welcome to the CDS
2023-03-20 11:34:08,698 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:08,800 INFO Request is queued
no data201810
2023-03-20 11:34:09,864 INFO Request is failed
2023-03-20 11:34:09,864 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:09,865 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:09,865 ERROR Traceback (most recent call last):
2023-03-20 11:34:09,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,866 ERROR result = handle_locally()
2023-03-20 11:34:09,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,867 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:09,868 ERROR raise exception
2023-03-20 11:34:09,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,868 ERROR result = handle_locally()
2023-03-20 11:34:09,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,869 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:09,870 ERROR raise exception
2023-03-20 11:34:09,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,870 ERROR result = handle_locally()
2023-03-20 11:34:09,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,871 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:09,872 ERROR raise exception
2023-03-20 11:34:09,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,873 ERROR result = handle_locally()
2023-03-20 11:34:09,873 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,873 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:09,874 ERROR raise exception
2023-03-20 11:34:09,874 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,875 ERROR result = handle_locally()
2023-03-20 11:34:09,875 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,875 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:09,876 ERROR raise exception
2023-03-20 11:34:09,876 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,877 ERROR result = handle_locally()
2023-03-20 11:34:09,877 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,877 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,878 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:09,878 ERROR raise exception
2023-03-20 11:34:09,878 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,879 ERROR result = handle_locally()
2023-03-20 11:34:09,879 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:09,879 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:09,880 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:09,880 ERROR raise exception
2023-03-20 11:34:09,881 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:09,881 ERROR result = handle_locally()
2023-03-20 11:34:09,881 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:09,882 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:09,882 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:09,882 ERROR constraint_type_strict)
2023-03-20 11:34:09,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:09,883 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:09,883 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:09,884 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:09,884 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:09,944 INFO Welcome to the CDS
2023-03-20 11:34:09,945 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:10,056 INFO Request is queued
no data201811
2023-03-20 11:34:11,116 INFO Request is failed
2023-03-20 11:34:11,117 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:11,117 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:11,118 ERROR Traceback (most recent call last):
2023-03-20 11:34:11,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,118 ERROR result = handle_locally()
2023-03-20 11:34:11,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,119 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:11,120 ERROR raise exception
2023-03-20 11:34:11,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,121 ERROR result = handle_locally()
2023-03-20 11:34:11,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,121 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:11,122 ERROR raise exception
2023-03-20 11:34:11,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,123 ERROR result = handle_locally()
2023-03-20 11:34:11,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,123 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:11,124 ERROR raise exception
2023-03-20 11:34:11,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,125 ERROR result = handle_locally()
2023-03-20 11:34:11,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,125 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:11,126 ERROR raise exception
2023-03-20 11:34:11,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,127 ERROR result = handle_locally()
2023-03-20 11:34:11,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,128 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:11,128 ERROR raise exception
2023-03-20 11:34:11,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,129 ERROR result = handle_locally()
2023-03-20 11:34:11,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,130 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:11,130 ERROR raise exception
2023-03-20 11:34:11,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,131 ERROR result = handle_locally()
2023-03-20 11:34:11,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:11,132 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:11,132 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:11,132 ERROR raise exception
2023-03-20 11:34:11,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:11,133 ERROR result = handle_locally()
2023-03-20 11:34:11,133 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:11,134 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:11,134 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:11,134 ERROR constraint_type_strict)
2023-03-20 11:34:11,135 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:11,135 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:11,135 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:11,136 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:11,136 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:11,194 INFO Welcome to the CDS
2023-03-20 11:34:11,195 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:11,300 INFO Request is queued
no data201812
2023-03-20 11:34:12,366 INFO Request is failed
2023-03-20 11:34:12,366 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:12,367 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:12,367 ERROR Traceback (most recent call last):
2023-03-20 11:34:12,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,368 ERROR result = handle_locally()
2023-03-20 11:34:12,368 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,369 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,369 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:12,369 ERROR raise exception
2023-03-20 11:34:12,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,370 ERROR result = handle_locally()
2023-03-20 11:34:12,370 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,371 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,371 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:12,371 ERROR raise exception
2023-03-20 11:34:12,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,372 ERROR result = handle_locally()
2023-03-20 11:34:12,372 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,373 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,373 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:12,373 ERROR raise exception
2023-03-20 11:34:12,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,374 ERROR result = handle_locally()
2023-03-20 11:34:12,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,375 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:12,376 ERROR raise exception
2023-03-20 11:34:12,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,376 ERROR result = handle_locally()
2023-03-20 11:34:12,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,377 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:12,378 ERROR raise exception
2023-03-20 11:34:12,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,378 ERROR result = handle_locally()
2023-03-20 11:34:12,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,379 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:12,380 ERROR raise exception
2023-03-20 11:34:12,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,380 ERROR result = handle_locally()
2023-03-20 11:34:12,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:12,381 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:12,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:12,382 ERROR raise exception
2023-03-20 11:34:12,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:12,382 ERROR result = handle_locally()
2023-03-20 11:34:12,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:12,383 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:12,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:12,384 ERROR constraint_type_strict)
2023-03-20 11:34:12,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:12,384 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:12,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:12,385 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:12,385 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:12,442 INFO Welcome to the CDS
2023-03-20 11:34:12,442 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201901
2023-03-20 11:34:12,793 INFO Request is queued
2023-03-20 11:34:13,854 INFO Request is failed
2023-03-20 11:34:13,854 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:13,855 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:13,855 ERROR Traceback (most recent call last):
2023-03-20 11:34:13,855 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,856 ERROR result = handle_locally()
2023-03-20 11:34:13,856 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,856 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:13,857 ERROR raise exception
2023-03-20 11:34:13,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,858 ERROR result = handle_locally()
2023-03-20 11:34:13,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,858 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,859 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:13,859 ERROR raise exception
2023-03-20 11:34:13,859 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,860 ERROR result = handle_locally()
2023-03-20 11:34:13,860 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,860 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:13,861 ERROR raise exception
2023-03-20 11:34:13,861 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,862 ERROR result = handle_locally()
2023-03-20 11:34:13,862 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,862 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:13,863 ERROR raise exception
2023-03-20 11:34:13,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,864 ERROR result = handle_locally()
2023-03-20 11:34:13,864 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,864 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:13,865 ERROR raise exception
2023-03-20 11:34:13,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,866 ERROR result = handle_locally()
2023-03-20 11:34:13,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,866 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:13,867 ERROR raise exception
2023-03-20 11:34:13,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,868 ERROR result = handle_locally()
2023-03-20 11:34:13,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:13,868 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:13,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:13,869 ERROR raise exception
2023-03-20 11:34:13,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:13,870 ERROR result = handle_locally()
2023-03-20 11:34:13,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:13,871 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:13,871 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:13,871 ERROR constraint_type_strict)
2023-03-20 11:34:13,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:13,872 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:13,872 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:13,873 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:13,873 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:13,930 INFO Welcome to the CDS
2023-03-20 11:34:13,930 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:14,020 INFO Request is queued
no data201902
2023-03-20 11:34:15,083 INFO Request is failed
2023-03-20 11:34:15,084 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:15,084 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:15,084 ERROR Traceback (most recent call last):
2023-03-20 11:34:15,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,085 ERROR result = handle_locally()
2023-03-20 11:34:15,085 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,086 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,086 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:15,086 ERROR raise exception
2023-03-20 11:34:15,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,087 ERROR result = handle_locally()
2023-03-20 11:34:15,087 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,088 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,088 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:15,088 ERROR raise exception
2023-03-20 11:34:15,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,089 ERROR result = handle_locally()
2023-03-20 11:34:15,089 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,090 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,090 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:15,090 ERROR raise exception
2023-03-20 11:34:15,091 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,091 ERROR result = handle_locally()
2023-03-20 11:34:15,091 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,092 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,092 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:15,092 ERROR raise exception
2023-03-20 11:34:15,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,093 ERROR result = handle_locally()
2023-03-20 11:34:15,093 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,094 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,094 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:15,094 ERROR raise exception
2023-03-20 11:34:15,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,095 ERROR result = handle_locally()
2023-03-20 11:34:15,095 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,096 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,096 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:15,096 ERROR raise exception
2023-03-20 11:34:15,097 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,097 ERROR result = handle_locally()
2023-03-20 11:34:15,097 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:15,098 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:15,098 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:15,098 ERROR raise exception
2023-03-20 11:34:15,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:15,099 ERROR result = handle_locally()
2023-03-20 11:34:15,099 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:15,100 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:15,100 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:15,100 ERROR constraint_type_strict)
2023-03-20 11:34:15,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:15,101 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:15,101 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:15,102 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:15,102 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:15,160 INFO Welcome to the CDS
2023-03-20 11:34:15,160 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:15,247 INFO Request is queued
no data201903
2023-03-20 11:34:16,342 INFO Request is failed
2023-03-20 11:34:16,343 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:16,343 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:16,343 ERROR Traceback (most recent call last):
2023-03-20 11:34:16,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,344 ERROR result = handle_locally()
2023-03-20 11:34:16,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,345 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,345 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:16,345 ERROR raise exception
2023-03-20 11:34:16,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,346 ERROR result = handle_locally()
2023-03-20 11:34:16,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,347 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:16,348 ERROR raise exception
2023-03-20 11:34:16,348 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,348 ERROR result = handle_locally()
2023-03-20 11:34:16,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,349 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:16,350 ERROR raise exception
2023-03-20 11:34:16,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,350 ERROR result = handle_locally()
2023-03-20 11:34:16,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,351 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:16,352 ERROR raise exception
2023-03-20 11:34:16,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,352 ERROR result = handle_locally()
2023-03-20 11:34:16,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,353 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:16,354 ERROR raise exception
2023-03-20 11:34:16,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,354 ERROR result = handle_locally()
2023-03-20 11:34:16,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,355 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:16,356 ERROR raise exception
2023-03-20 11:34:16,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,356 ERROR result = handle_locally()
2023-03-20 11:34:16,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:16,357 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:16,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:16,358 ERROR raise exception
2023-03-20 11:34:16,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:16,358 ERROR result = handle_locally()
2023-03-20 11:34:16,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:16,359 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:16,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:16,360 ERROR constraint_type_strict)
2023-03-20 11:34:16,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:16,360 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:16,361 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:16,361 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:16,361 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:16,453 INFO Welcome to the CDS
2023-03-20 11:34:16,453 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:16,560 INFO Request is queued
no data201904
2023-03-20 11:34:17,636 INFO Request is failed
2023-03-20 11:34:17,636 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:17,637 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:17,637 ERROR Traceback (most recent call last):
2023-03-20 11:34:17,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,638 ERROR result = handle_locally()
2023-03-20 11:34:17,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,638 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:17,639 ERROR raise exception
2023-03-20 11:34:17,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,640 ERROR result = handle_locally()
2023-03-20 11:34:17,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,640 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:17,641 ERROR raise exception
2023-03-20 11:34:17,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,642 ERROR result = handle_locally()
2023-03-20 11:34:17,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,643 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:17,643 ERROR raise exception
2023-03-20 11:34:17,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,648 ERROR result = handle_locally()
2023-03-20 11:34:17,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,648 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:17,649 ERROR raise exception
2023-03-20 11:34:17,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,650 ERROR result = handle_locally()
2023-03-20 11:34:17,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,651 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:17,652 ERROR raise exception
2023-03-20 11:34:17,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,652 ERROR result = handle_locally()
2023-03-20 11:34:17,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,653 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:17,654 ERROR raise exception
2023-03-20 11:34:17,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,655 ERROR result = handle_locally()
2023-03-20 11:34:17,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:17,656 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:17,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:17,656 ERROR raise exception
2023-03-20 11:34:17,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:17,657 ERROR result = handle_locally()
2023-03-20 11:34:17,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:17,658 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:17,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:17,659 ERROR constraint_type_strict)
2023-03-20 11:34:17,659 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:17,660 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:17,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:17,660 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:17,661 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:17,729 INFO Welcome to the CDS
2023-03-20 11:34:17,729 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201905
2023-03-20 11:34:18,078 INFO Request is queued
2023-03-20 11:34:19,147 INFO Request is failed
2023-03-20 11:34:19,148 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:19,149 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:19,149 ERROR Traceback (most recent call last):
2023-03-20 11:34:19,149 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,150 ERROR result = handle_locally()
2023-03-20 11:34:19,150 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,151 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,151 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:19,151 ERROR raise exception
2023-03-20 11:34:19,152 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,152 ERROR result = handle_locally()
2023-03-20 11:34:19,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,153 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,153 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:19,154 ERROR raise exception
2023-03-20 11:34:19,154 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,155 ERROR result = handle_locally()
2023-03-20 11:34:19,155 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,155 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,156 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:19,156 ERROR raise exception
2023-03-20 11:34:19,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,157 ERROR result = handle_locally()
2023-03-20 11:34:19,157 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,158 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,158 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:19,159 ERROR raise exception
2023-03-20 11:34:19,159 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,159 ERROR result = handle_locally()
2023-03-20 11:34:19,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,160 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,160 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:19,161 ERROR raise exception
2023-03-20 11:34:19,161 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,162 ERROR result = handle_locally()
2023-03-20 11:34:19,162 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,162 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,163 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:19,163 ERROR raise exception
2023-03-20 11:34:19,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,164 ERROR result = handle_locally()
2023-03-20 11:34:19,164 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:19,165 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:19,165 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:19,166 ERROR raise exception
2023-03-20 11:34:19,166 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:19,166 ERROR result = handle_locally()
2023-03-20 11:34:19,167 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:19,167 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:19,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:19,168 ERROR constraint_type_strict)
2023-03-20 11:34:19,168 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:19,169 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:19,169 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:19,170 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:19,170 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:19,234 INFO Welcome to the CDS
2023-03-20 11:34:19,235 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:19,351 INFO Request is queued
no data201906
2023-03-20 11:34:20,424 INFO Request is failed
2023-03-20 11:34:20,425 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:20,425 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:20,426 ERROR Traceback (most recent call last):
2023-03-20 11:34:20,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,427 ERROR result = handle_locally()
2023-03-20 11:34:20,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,427 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:20,428 ERROR raise exception
2023-03-20 11:34:20,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,429 ERROR result = handle_locally()
2023-03-20 11:34:20,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,430 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:20,431 ERROR raise exception
2023-03-20 11:34:20,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,431 ERROR result = handle_locally()
2023-03-20 11:34:20,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,432 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:20,433 ERROR raise exception
2023-03-20 11:34:20,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,434 ERROR result = handle_locally()
2023-03-20 11:34:20,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,434 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:20,435 ERROR raise exception
2023-03-20 11:34:20,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,436 ERROR result = handle_locally()
2023-03-20 11:34:20,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,437 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:20,438 ERROR raise exception
2023-03-20 11:34:20,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,438 ERROR result = handle_locally()
2023-03-20 11:34:20,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,439 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:20,440 ERROR raise exception
2023-03-20 11:34:20,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,441 ERROR result = handle_locally()
2023-03-20 11:34:20,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:20,441 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:20,442 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:20,442 ERROR raise exception
2023-03-20 11:34:20,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:20,443 ERROR result = handle_locally()
2023-03-20 11:34:20,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:20,444 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:20,444 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:20,445 ERROR constraint_type_strict)
2023-03-20 11:34:20,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:20,445 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:20,446 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:20,446 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:20,447 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:20,524 INFO Welcome to the CDS
2023-03-20 11:34:20,524 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201907
2023-03-20 11:34:20,656 INFO Request is queued
2023-03-20 11:34:21,740 INFO Request is failed
2023-03-20 11:34:21,741 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:21,741 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:21,742 ERROR Traceback (most recent call last):
2023-03-20 11:34:21,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,743 ERROR result = handle_locally()
2023-03-20 11:34:21,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,743 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:21,744 ERROR raise exception
2023-03-20 11:34:21,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,745 ERROR result = handle_locally()
2023-03-20 11:34:21,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,746 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:21,746 ERROR raise exception
2023-03-20 11:34:21,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,747 ERROR result = handle_locally()
2023-03-20 11:34:21,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,748 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:21,749 ERROR raise exception
2023-03-20 11:34:21,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,750 ERROR result = handle_locally()
2023-03-20 11:34:21,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,750 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:21,751 ERROR raise exception
2023-03-20 11:34:21,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,752 ERROR result = handle_locally()
2023-03-20 11:34:21,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,753 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:21,753 ERROR raise exception
2023-03-20 11:34:21,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,754 ERROR result = handle_locally()
2023-03-20 11:34:21,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,755 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:21,756 ERROR raise exception
2023-03-20 11:34:21,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,756 ERROR result = handle_locally()
2023-03-20 11:34:21,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:21,757 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:21,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:21,758 ERROR raise exception
2023-03-20 11:34:21,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:21,759 ERROR result = handle_locally()
2023-03-20 11:34:21,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:21,760 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:21,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:21,760 ERROR constraint_type_strict)
2023-03-20 11:34:21,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:21,761 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:21,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:21,762 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:21,762 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:21,831 INFO Welcome to the CDS
2023-03-20 11:34:21,831 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201908
2023-03-20 11:34:21,979 INFO Request is queued
2023-03-20 11:34:23,038 INFO Request is failed
2023-03-20 11:34:23,039 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:23,040 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:23,040 ERROR Traceback (most recent call last):
2023-03-20 11:34:23,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,041 ERROR result = handle_locally()
2023-03-20 11:34:23,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,042 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:23,043 ERROR raise exception
2023-03-20 11:34:23,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,044 ERROR result = handle_locally()
2023-03-20 11:34:23,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,044 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:23,045 ERROR raise exception
2023-03-20 11:34:23,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,046 ERROR result = handle_locally()
2023-03-20 11:34:23,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,047 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:23,048 ERROR raise exception
2023-03-20 11:34:23,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,048 ERROR result = handle_locally()
2023-03-20 11:34:23,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,049 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:23,050 ERROR raise exception
2023-03-20 11:34:23,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,051 ERROR result = handle_locally()
2023-03-20 11:34:23,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,051 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:23,052 ERROR raise exception
2023-03-20 11:34:23,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,053 ERROR result = handle_locally()
2023-03-20 11:34:23,053 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,054 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:23,054 ERROR raise exception
2023-03-20 11:34:23,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,055 ERROR result = handle_locally()
2023-03-20 11:34:23,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:23,056 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:23,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:23,057 ERROR raise exception
2023-03-20 11:34:23,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:23,058 ERROR result = handle_locally()
2023-03-20 11:34:23,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:23,058 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:23,059 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:23,059 ERROR constraint_type_strict)
2023-03-20 11:34:23,059 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:23,060 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:23,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:23,061 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:23,061 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:23,117 INFO Welcome to the CDS
2023-03-20 11:34:23,117 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:23,226 INFO Request is queued
no data201909
2023-03-20 11:34:24,295 INFO Request is failed
2023-03-20 11:34:24,295 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:24,296 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:24,296 ERROR Traceback (most recent call last):
2023-03-20 11:34:24,297 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,297 ERROR result = handle_locally()
2023-03-20 11:34:24,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,298 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,298 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:24,299 ERROR raise exception
2023-03-20 11:34:24,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,300 ERROR result = handle_locally()
2023-03-20 11:34:24,300 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,300 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,301 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:24,301 ERROR raise exception
2023-03-20 11:34:24,301 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,302 ERROR result = handle_locally()
2023-03-20 11:34:24,302 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,303 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,303 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:24,303 ERROR raise exception
2023-03-20 11:34:24,304 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,304 ERROR result = handle_locally()
2023-03-20 11:34:24,305 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,305 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,305 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:24,306 ERROR raise exception
2023-03-20 11:34:24,306 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,306 ERROR result = handle_locally()
2023-03-20 11:34:24,307 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,307 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,308 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:24,308 ERROR raise exception
2023-03-20 11:34:24,308 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,309 ERROR result = handle_locally()
2023-03-20 11:34:24,309 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,309 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,310 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:24,310 ERROR raise exception
2023-03-20 11:34:24,311 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,311 ERROR result = handle_locally()
2023-03-20 11:34:24,311 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:24,312 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:24,312 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:24,313 ERROR raise exception
2023-03-20 11:34:24,313 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:24,313 ERROR result = handle_locally()
2023-03-20 11:34:24,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:24,314 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:24,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:24,319 ERROR constraint_type_strict)
2023-03-20 11:34:24,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:24,320 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:24,320 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:24,321 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:24,321 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:24,377 INFO Welcome to the CDS
2023-03-20 11:34:24,378 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:24,463 INFO Request is queued
no data201910
2023-03-20 11:34:25,530 INFO Request is failed
2023-03-20 11:34:25,531 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:25,532 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:25,532 ERROR Traceback (most recent call last):
2023-03-20 11:34:25,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,533 ERROR result = handle_locally()
2023-03-20 11:34:25,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,534 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:25,535 ERROR raise exception
2023-03-20 11:34:25,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,535 ERROR result = handle_locally()
2023-03-20 11:34:25,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,536 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,537 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:25,537 ERROR raise exception
2023-03-20 11:34:25,537 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,538 ERROR result = handle_locally()
2023-03-20 11:34:25,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,538 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,539 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:25,539 ERROR raise exception
2023-03-20 11:34:25,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,540 ERROR result = handle_locally()
2023-03-20 11:34:25,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,541 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,541 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:25,542 ERROR raise exception
2023-03-20 11:34:25,542 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,542 ERROR result = handle_locally()
2023-03-20 11:34:25,543 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,543 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:25,544 ERROR raise exception
2023-03-20 11:34:25,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,545 ERROR result = handle_locally()
2023-03-20 11:34:25,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,545 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,546 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:25,546 ERROR raise exception
2023-03-20 11:34:25,547 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,547 ERROR result = handle_locally()
2023-03-20 11:34:25,547 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:25,548 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:25,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:25,548 ERROR raise exception
2023-03-20 11:34:25,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:25,549 ERROR result = handle_locally()
2023-03-20 11:34:25,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:25,550 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:25,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:25,551 ERROR constraint_type_strict)
2023-03-20 11:34:25,551 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:25,552 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:25,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:25,552 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:25,553 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:25,620 INFO Welcome to the CDS
2023-03-20 11:34:25,621 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data201911
2023-03-20 11:34:25,776 INFO Request is queued
2023-03-20 11:34:26,845 INFO Request is failed
2023-03-20 11:34:26,846 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:26,847 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:26,847 ERROR Traceback (most recent call last):
2023-03-20 11:34:26,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,848 ERROR result = handle_locally()
2023-03-20 11:34:26,848 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,849 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,849 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:26,850 ERROR raise exception
2023-03-20 11:34:26,850 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,850 ERROR result = handle_locally()
2023-03-20 11:34:26,851 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,851 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,852 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:26,852 ERROR raise exception
2023-03-20 11:34:26,852 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,853 ERROR result = handle_locally()
2023-03-20 11:34:26,853 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,853 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,854 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:26,854 ERROR raise exception
2023-03-20 11:34:26,855 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,855 ERROR result = handle_locally()
2023-03-20 11:34:26,855 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,856 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,856 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:26,857 ERROR raise exception
2023-03-20 11:34:26,857 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,857 ERROR result = handle_locally()
2023-03-20 11:34:26,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,858 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,858 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:26,859 ERROR raise exception
2023-03-20 11:34:26,859 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,863 ERROR result = handle_locally()
2023-03-20 11:34:26,863 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,864 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,864 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:26,864 ERROR raise exception
2023-03-20 11:34:26,865 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,865 ERROR result = handle_locally()
2023-03-20 11:34:26,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:26,866 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:26,866 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:26,867 ERROR raise exception
2023-03-20 11:34:26,867 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:26,867 ERROR result = handle_locally()
2023-03-20 11:34:26,868 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:26,868 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:26,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:26,869 ERROR constraint_type_strict)
2023-03-20 11:34:26,869 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:26,870 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:26,870 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:26,871 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:26,871 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:26,939 INFO Welcome to the CDS
2023-03-20 11:34:26,939 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:27,051 INFO Request is queued
no data201912
2023-03-20 11:34:28,111 INFO Request is failed
2023-03-20 11:34:28,112 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:28,112 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:28,112 ERROR Traceback (most recent call last):
2023-03-20 11:34:28,113 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,113 ERROR result = handle_locally()
2023-03-20 11:34:28,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,114 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,114 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:28,115 ERROR raise exception
2023-03-20 11:34:28,115 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,116 ERROR result = handle_locally()
2023-03-20 11:34:28,116 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,116 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,117 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:28,117 ERROR raise exception
2023-03-20 11:34:28,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,118 ERROR result = handle_locally()
2023-03-20 11:34:28,118 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,119 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,119 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:28,120 ERROR raise exception
2023-03-20 11:34:28,120 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,120 ERROR result = handle_locally()
2023-03-20 11:34:28,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,121 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,121 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:28,122 ERROR raise exception
2023-03-20 11:34:28,122 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,123 ERROR result = handle_locally()
2023-03-20 11:34:28,123 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,123 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:28,124 ERROR raise exception
2023-03-20 11:34:28,124 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,125 ERROR result = handle_locally()
2023-03-20 11:34:28,125 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,126 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,126 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:28,126 ERROR raise exception
2023-03-20 11:34:28,127 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,127 ERROR result = handle_locally()
2023-03-20 11:34:28,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:28,128 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:28,128 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:28,129 ERROR raise exception
2023-03-20 11:34:28,129 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:28,129 ERROR result = handle_locally()
2023-03-20 11:34:28,130 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:28,130 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:28,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:28,131 ERROR constraint_type_strict)
2023-03-20 11:34:28,131 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:28,132 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:28,132 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:28,133 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:28,133 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:28,188 INFO Welcome to the CDS
2023-03-20 11:34:28,189 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:28,307 INFO Request is queued
no data202001
2023-03-20 11:34:29,372 INFO Request is failed
2023-03-20 11:34:29,372 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:29,373 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:29,373 ERROR Traceback (most recent call last):
2023-03-20 11:34:29,374 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,374 ERROR result = handle_locally()
2023-03-20 11:34:29,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,375 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,375 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:29,376 ERROR raise exception
2023-03-20 11:34:29,376 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,377 ERROR result = handle_locally()
2023-03-20 11:34:29,377 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,377 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:29,378 ERROR raise exception
2023-03-20 11:34:29,378 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,379 ERROR result = handle_locally()
2023-03-20 11:34:29,379 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,380 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,380 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:29,380 ERROR raise exception
2023-03-20 11:34:29,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,381 ERROR result = handle_locally()
2023-03-20 11:34:29,381 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,382 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,382 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:29,383 ERROR raise exception
2023-03-20 11:34:29,383 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,383 ERROR result = handle_locally()
2023-03-20 11:34:29,384 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,384 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:29,385 ERROR raise exception
2023-03-20 11:34:29,385 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,386 ERROR result = handle_locally()
2023-03-20 11:34:29,386 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,386 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,387 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:29,387 ERROR raise exception
2023-03-20 11:34:29,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,388 ERROR result = handle_locally()
2023-03-20 11:34:29,388 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:29,389 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:29,389 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:29,390 ERROR raise exception
2023-03-20 11:34:29,390 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:29,390 ERROR result = handle_locally()
2023-03-20 11:34:29,391 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:29,391 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:29,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:29,392 ERROR constraint_type_strict)
2023-03-20 11:34:29,392 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:29,393 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:29,393 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:29,393 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:29,394 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:29,454 INFO Welcome to the CDS
2023-03-20 11:34:29,455 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202002
2023-03-20 11:34:29,649 INFO Request is queued
2023-03-20 11:34:30,718 INFO Request is failed
2023-03-20 11:34:30,718 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:30,719 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:30,719 ERROR Traceback (most recent call last):
2023-03-20 11:34:30,720 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,720 ERROR result = handle_locally()
2023-03-20 11:34:30,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,721 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,721 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:30,722 ERROR raise exception
2023-03-20 11:34:30,722 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,722 ERROR result = handle_locally()
2023-03-20 11:34:30,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,723 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,723 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:30,724 ERROR raise exception
2023-03-20 11:34:30,724 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,724 ERROR result = handle_locally()
2023-03-20 11:34:30,725 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,725 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:30,726 ERROR raise exception
2023-03-20 11:34:30,726 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,727 ERROR result = handle_locally()
2023-03-20 11:34:30,727 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,727 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:30,728 ERROR raise exception
2023-03-20 11:34:30,728 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,729 ERROR result = handle_locally()
2023-03-20 11:34:30,729 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,729 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:30,730 ERROR raise exception
2023-03-20 11:34:30,730 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,731 ERROR result = handle_locally()
2023-03-20 11:34:30,731 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,732 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,732 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:30,732 ERROR raise exception
2023-03-20 11:34:30,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,733 ERROR result = handle_locally()
2023-03-20 11:34:30,733 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:30,734 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:30,734 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:30,734 ERROR raise exception
2023-03-20 11:34:30,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:30,735 ERROR result = handle_locally()
2023-03-20 11:34:30,735 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:30,736 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:30,736 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:30,736 ERROR constraint_type_strict)
2023-03-20 11:34:30,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:30,737 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:30,737 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:30,738 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:30,738 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:30,794 INFO Welcome to the CDS
2023-03-20 11:34:30,794 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:30,871 INFO Request is queued
no data202003
2023-03-20 11:34:31,950 INFO Request is failed
2023-03-20 11:34:31,951 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:31,951 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:31,951 ERROR Traceback (most recent call last):
2023-03-20 11:34:31,952 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,952 ERROR result = handle_locally()
2023-03-20 11:34:31,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,953 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,953 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:31,954 ERROR raise exception
2023-03-20 11:34:31,954 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,954 ERROR result = handle_locally()
2023-03-20 11:34:31,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,955 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,955 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:31,956 ERROR raise exception
2023-03-20 11:34:31,956 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,957 ERROR result = handle_locally()
2023-03-20 11:34:31,957 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,957 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:31,958 ERROR raise exception
2023-03-20 11:34:31,958 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,959 ERROR result = handle_locally()
2023-03-20 11:34:31,959 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,959 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,960 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:31,960 ERROR raise exception
2023-03-20 11:34:31,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,961 ERROR result = handle_locally()
2023-03-20 11:34:31,961 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,962 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,962 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:31,962 ERROR raise exception
2023-03-20 11:34:31,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,963 ERROR result = handle_locally()
2023-03-20 11:34:31,963 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,964 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,964 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:31,964 ERROR raise exception
2023-03-20 11:34:31,965 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,965 ERROR result = handle_locally()
2023-03-20 11:34:31,965 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:31,966 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:31,966 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:31,966 ERROR raise exception
2023-03-20 11:34:31,967 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:31,967 ERROR result = handle_locally()
2023-03-20 11:34:31,967 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:31,968 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:31,968 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:31,968 ERROR constraint_type_strict)
2023-03-20 11:34:31,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:31,969 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:31,969 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:31,970 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:31,970 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:32,040 INFO Welcome to the CDS
2023-03-20 11:34:32,041 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202004
2023-03-20 11:34:32,189 INFO Request is queued
2023-03-20 11:34:33,272 INFO Request is failed
2023-03-20 11:34:33,272 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:33,273 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:33,273 ERROR Traceback (most recent call last):
2023-03-20 11:34:33,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,274 ERROR result = handle_locally()
2023-03-20 11:34:33,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,274 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:33,275 ERROR raise exception
2023-03-20 11:34:33,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,276 ERROR result = handle_locally()
2023-03-20 11:34:33,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,277 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:33,277 ERROR raise exception
2023-03-20 11:34:33,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,278 ERROR result = handle_locally()
2023-03-20 11:34:33,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:33,280 ERROR raise exception
2023-03-20 11:34:33,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,280 ERROR result = handle_locally()
2023-03-20 11:34:33,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,281 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:33,282 ERROR raise exception
2023-03-20 11:34:33,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,282 ERROR result = handle_locally()
2023-03-20 11:34:33,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,283 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:33,284 ERROR raise exception
2023-03-20 11:34:33,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,284 ERROR result = handle_locally()
2023-03-20 11:34:33,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,285 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:33,286 ERROR raise exception
2023-03-20 11:34:33,286 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,286 ERROR result = handle_locally()
2023-03-20 11:34:33,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:33,287 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:33,287 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:33,288 ERROR raise exception
2023-03-20 11:34:33,288 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:33,288 ERROR result = handle_locally()
2023-03-20 11:34:33,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:33,289 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:33,289 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:33,290 ERROR constraint_type_strict)
2023-03-20 11:34:33,290 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:33,290 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:33,291 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:33,291 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:33,291 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:33,358 INFO Welcome to the CDS
2023-03-20 11:34:33,359 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:33,464 INFO Request is queued
no data202005
2023-03-20 11:34:34,531 INFO Request is failed
2023-03-20 11:34:34,532 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:34,532 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:34,533 ERROR Traceback (most recent call last):
2023-03-20 11:34:34,533 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,533 ERROR result = handle_locally()
2023-03-20 11:34:34,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,534 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,534 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:34,535 ERROR raise exception
2023-03-20 11:34:34,535 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,535 ERROR result = handle_locally()
2023-03-20 11:34:34,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,536 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,536 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:34,537 ERROR raise exception
2023-03-20 11:34:34,537 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,537 ERROR result = handle_locally()
2023-03-20 11:34:34,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,538 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,538 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:34,539 ERROR raise exception
2023-03-20 11:34:34,539 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,540 ERROR result = handle_locally()
2023-03-20 11:34:34,540 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,540 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,541 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:34,541 ERROR raise exception
2023-03-20 11:34:34,541 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,542 ERROR result = handle_locally()
2023-03-20 11:34:34,542 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,542 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,543 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:34,543 ERROR raise exception
2023-03-20 11:34:34,543 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,544 ERROR result = handle_locally()
2023-03-20 11:34:34,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,544 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:34,545 ERROR raise exception
2023-03-20 11:34:34,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,546 ERROR result = handle_locally()
2023-03-20 11:34:34,546 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:34,546 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:34,547 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:34,547 ERROR raise exception
2023-03-20 11:34:34,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:34,548 ERROR result = handle_locally()
2023-03-20 11:34:34,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:34,549 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:34,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:34,549 ERROR constraint_type_strict)
2023-03-20 11:34:34,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:34,550 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:34,550 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:34,551 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:34,551 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:34,613 INFO Welcome to the CDS
2023-03-20 11:34:34,614 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:34,721 INFO Request is queued
no data202006
2023-03-20 11:34:35,790 INFO Request is failed
2023-03-20 11:34:35,791 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:35,791 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:35,792 ERROR Traceback (most recent call last):
2023-03-20 11:34:35,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,792 ERROR result = handle_locally()
2023-03-20 11:34:35,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,793 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:35,794 ERROR raise exception
2023-03-20 11:34:35,794 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,795 ERROR result = handle_locally()
2023-03-20 11:34:35,795 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,795 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:35,796 ERROR raise exception
2023-03-20 11:34:35,796 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,797 ERROR result = handle_locally()
2023-03-20 11:34:35,797 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,798 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,798 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:35,798 ERROR raise exception
2023-03-20 11:34:35,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,799 ERROR result = handle_locally()
2023-03-20 11:34:35,799 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,800 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:35,800 ERROR raise exception
2023-03-20 11:34:35,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,801 ERROR result = handle_locally()
2023-03-20 11:34:35,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,802 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:35,802 ERROR raise exception
2023-03-20 11:34:35,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,803 ERROR result = handle_locally()
2023-03-20 11:34:35,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,804 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:35,805 ERROR raise exception
2023-03-20 11:34:35,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,805 ERROR result = handle_locally()
2023-03-20 11:34:35,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:35,806 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:35,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:35,807 ERROR raise exception
2023-03-20 11:34:35,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:35,807 ERROR result = handle_locally()
2023-03-20 11:34:35,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:35,808 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:35,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:35,809 ERROR constraint_type_strict)
2023-03-20 11:34:35,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:35,810 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:35,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:35,810 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:35,811 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:35,866 INFO Welcome to the CDS
2023-03-20 11:34:35,867 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:35,980 INFO Request is queued
no data202007
2023-03-20 11:34:37,053 INFO Request is failed
2023-03-20 11:34:37,054 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:37,054 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:37,055 ERROR Traceback (most recent call last):
2023-03-20 11:34:37,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,056 ERROR result = handle_locally()
2023-03-20 11:34:37,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,056 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:37,057 ERROR raise exception
2023-03-20 11:34:37,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,058 ERROR result = handle_locally()
2023-03-20 11:34:37,058 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,058 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,059 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:37,059 ERROR raise exception
2023-03-20 11:34:37,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,060 ERROR result = handle_locally()
2023-03-20 11:34:37,060 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,061 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,061 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:37,061 ERROR raise exception
2023-03-20 11:34:37,062 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,062 ERROR result = handle_locally()
2023-03-20 11:34:37,063 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,063 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,063 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:37,064 ERROR raise exception
2023-03-20 11:34:37,064 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,064 ERROR result = handle_locally()
2023-03-20 11:34:37,065 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,065 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,065 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:37,066 ERROR raise exception
2023-03-20 11:34:37,066 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,066 ERROR result = handle_locally()
2023-03-20 11:34:37,067 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,067 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:37,068 ERROR raise exception
2023-03-20 11:34:37,068 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,069 ERROR result = handle_locally()
2023-03-20 11:34:37,069 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:37,069 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:37,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:37,070 ERROR raise exception
2023-03-20 11:34:37,070 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:37,071 ERROR result = handle_locally()
2023-03-20 11:34:37,071 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:37,071 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:37,072 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:37,072 ERROR constraint_type_strict)
2023-03-20 11:34:37,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:37,073 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:37,073 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:37,074 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:37,074 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:37,130 INFO Welcome to the CDS
2023-03-20 11:34:37,130 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:37,236 INFO Request is queued
no data202008
2023-03-20 11:34:38,298 INFO Request is failed
2023-03-20 11:34:38,298 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:38,299 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:38,299 ERROR Traceback (most recent call last):
2023-03-20 11:34:38,299 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,300 ERROR result = handle_locally()
2023-03-20 11:34:38,300 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,301 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,301 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:38,301 ERROR raise exception
2023-03-20 11:34:38,302 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,302 ERROR result = handle_locally()
2023-03-20 11:34:38,302 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,303 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,303 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:38,303 ERROR raise exception
2023-03-20 11:34:38,304 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,304 ERROR result = handle_locally()
2023-03-20 11:34:38,305 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,305 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,305 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:38,306 ERROR raise exception
2023-03-20 11:34:38,306 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,306 ERROR result = handle_locally()
2023-03-20 11:34:38,307 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,307 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,307 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:38,308 ERROR raise exception
2023-03-20 11:34:38,308 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,308 ERROR result = handle_locally()
2023-03-20 11:34:38,309 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,309 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,309 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:38,310 ERROR raise exception
2023-03-20 11:34:38,310 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,311 ERROR result = handle_locally()
2023-03-20 11:34:38,311 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,311 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,312 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:38,312 ERROR raise exception
2023-03-20 11:34:38,312 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,313 ERROR result = handle_locally()
2023-03-20 11:34:38,313 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:38,313 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:38,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:38,314 ERROR raise exception
2023-03-20 11:34:38,314 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:38,315 ERROR result = handle_locally()
2023-03-20 11:34:38,315 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:38,315 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:38,316 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:38,316 ERROR constraint_type_strict)
2023-03-20 11:34:38,317 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:38,317 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:38,317 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:38,318 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:38,318 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:38,374 INFO Welcome to the CDS
2023-03-20 11:34:38,375 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:38,490 INFO Request is queued
no data202009
2023-03-20 11:34:39,552 INFO Request is failed
2023-03-20 11:34:39,553 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:39,553 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:39,553 ERROR Traceback (most recent call last):
2023-03-20 11:34:39,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,554 ERROR result = handle_locally()
2023-03-20 11:34:39,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,555 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:39,556 ERROR raise exception
2023-03-20 11:34:39,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,556 ERROR result = handle_locally()
2023-03-20 11:34:39,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,557 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:39,558 ERROR raise exception
2023-03-20 11:34:39,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,558 ERROR result = handle_locally()
2023-03-20 11:34:39,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,559 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:39,560 ERROR raise exception
2023-03-20 11:34:39,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,561 ERROR result = handle_locally()
2023-03-20 11:34:39,561 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,561 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:39,562 ERROR raise exception
2023-03-20 11:34:39,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,563 ERROR result = handle_locally()
2023-03-20 11:34:39,563 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,563 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:39,564 ERROR raise exception
2023-03-20 11:34:39,564 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,565 ERROR result = handle_locally()
2023-03-20 11:34:39,565 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,566 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,566 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:39,566 ERROR raise exception
2023-03-20 11:34:39,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,567 ERROR result = handle_locally()
2023-03-20 11:34:39,567 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:39,568 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:39,568 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:39,568 ERROR raise exception
2023-03-20 11:34:39,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:39,569 ERROR result = handle_locally()
2023-03-20 11:34:39,569 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:39,570 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:39,570 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:39,570 ERROR constraint_type_strict)
2023-03-20 11:34:39,571 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:39,571 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:39,572 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:39,572 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:39,572 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:39,630 INFO Welcome to the CDS
2023-03-20 11:34:39,631 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:39,739 INFO Request is queued
no data202010
2023-03-20 11:34:40,798 INFO Request is failed
2023-03-20 11:34:40,798 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:40,799 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:40,799 ERROR Traceback (most recent call last):
2023-03-20 11:34:40,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,800 ERROR result = handle_locally()
2023-03-20 11:34:40,800 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,801 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,801 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:40,801 ERROR raise exception
2023-03-20 11:34:40,802 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,802 ERROR result = handle_locally()
2023-03-20 11:34:40,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,803 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,803 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:40,804 ERROR raise exception
2023-03-20 11:34:40,804 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,804 ERROR result = handle_locally()
2023-03-20 11:34:40,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,805 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,805 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:40,806 ERROR raise exception
2023-03-20 11:34:40,806 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,806 ERROR result = handle_locally()
2023-03-20 11:34:40,807 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,807 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:40,808 ERROR raise exception
2023-03-20 11:34:40,808 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,809 ERROR result = handle_locally()
2023-03-20 11:34:40,809 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,809 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:40,810 ERROR raise exception
2023-03-20 11:34:40,810 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,811 ERROR result = handle_locally()
2023-03-20 11:34:40,811 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,812 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,812 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:40,812 ERROR raise exception
2023-03-20 11:34:40,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,813 ERROR result = handle_locally()
2023-03-20 11:34:40,813 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:40,814 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:40,814 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:40,814 ERROR raise exception
2023-03-20 11:34:40,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:40,815 ERROR result = handle_locally()
2023-03-20 11:34:40,815 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:40,816 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:40,816 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:40,817 ERROR constraint_type_strict)
2023-03-20 11:34:40,817 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:40,817 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:40,818 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:40,818 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:40,818 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:40,875 INFO Welcome to the CDS
2023-03-20 11:34:40,876 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202011
2023-03-20 11:34:41,105 INFO Request is queued
2023-03-20 11:34:42,177 INFO Request is failed
2023-03-20 11:34:42,178 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:42,179 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:42,179 ERROR Traceback (most recent call last):
2023-03-20 11:34:42,180 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,180 ERROR result = handle_locally()
2023-03-20 11:34:42,180 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,181 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,181 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:42,182 ERROR raise exception
2023-03-20 11:34:42,182 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,183 ERROR result = handle_locally()
2023-03-20 11:34:42,183 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,183 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,184 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:42,185 ERROR raise exception
2023-03-20 11:34:42,186 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,186 ERROR result = handle_locally()
2023-03-20 11:34:42,187 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,187 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,187 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:42,188 ERROR raise exception
2023-03-20 11:34:42,188 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,189 ERROR result = handle_locally()
2023-03-20 11:34:42,189 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,189 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,190 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:42,190 ERROR raise exception
2023-03-20 11:34:42,191 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,191 ERROR result = handle_locally()
2023-03-20 11:34:42,191 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,192 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,192 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:42,192 ERROR raise exception
2023-03-20 11:34:42,193 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,193 ERROR result = handle_locally()
2023-03-20 11:34:42,194 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,194 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,194 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:42,195 ERROR raise exception
2023-03-20 11:34:42,195 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,195 ERROR result = handle_locally()
2023-03-20 11:34:42,196 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:42,196 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:42,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:42,197 ERROR raise exception
2023-03-20 11:34:42,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:42,198 ERROR result = handle_locally()
2023-03-20 11:34:42,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:42,198 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:42,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:42,199 ERROR constraint_type_strict)
2023-03-20 11:34:42,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:42,200 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:42,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:42,201 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:42,201 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:42,269 INFO Welcome to the CDS
2023-03-20 11:34:42,270 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:42,365 INFO Request is queued
no data202012
2023-03-20 11:34:43,440 INFO Request is failed
2023-03-20 11:34:43,441 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:43,442 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:43,442 ERROR Traceback (most recent call last):
2023-03-20 11:34:43,443 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,444 ERROR result = handle_locally()
2023-03-20 11:34:43,444 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,445 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,445 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:43,446 ERROR raise exception
2023-03-20 11:34:43,446 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,446 ERROR result = handle_locally()
2023-03-20 11:34:43,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,447 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,447 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:43,448 ERROR raise exception
2023-03-20 11:34:43,448 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,449 ERROR result = handle_locally()
2023-03-20 11:34:43,449 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,449 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,450 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:43,450 ERROR raise exception
2023-03-20 11:34:43,451 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,451 ERROR result = handle_locally()
2023-03-20 11:34:43,451 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,452 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,452 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:43,452 ERROR raise exception
2023-03-20 11:34:43,453 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,453 ERROR result = handle_locally()
2023-03-20 11:34:43,454 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,454 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,454 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:43,455 ERROR raise exception
2023-03-20 11:34:43,455 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,455 ERROR result = handle_locally()
2023-03-20 11:34:43,456 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,456 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,457 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:43,457 ERROR raise exception
2023-03-20 11:34:43,457 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,458 ERROR result = handle_locally()
2023-03-20 11:34:43,458 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:43,459 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:43,459 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:43,459 ERROR raise exception
2023-03-20 11:34:43,460 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:43,460 ERROR result = handle_locally()
2023-03-20 11:34:43,460 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:43,461 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:43,461 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:43,462 ERROR constraint_type_strict)
2023-03-20 11:34:43,462 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:43,462 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:43,463 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:43,463 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:43,464 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:43,532 INFO Welcome to the CDS
2023-03-20 11:34:43,533 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:43,618 INFO Request is queued
no data202101
2023-03-20 11:34:44,678 INFO Request is failed
2023-03-20 11:34:44,679 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:44,679 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:44,680 ERROR Traceback (most recent call last):
2023-03-20 11:34:44,680 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,681 ERROR result = handle_locally()
2023-03-20 11:34:44,681 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,681 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,682 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:44,682 ERROR raise exception
2023-03-20 11:34:44,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,683 ERROR result = handle_locally()
2023-03-20 11:34:44,683 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,684 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,684 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:44,685 ERROR raise exception
2023-03-20 11:34:44,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,685 ERROR result = handle_locally()
2023-03-20 11:34:44,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,686 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:44,687 ERROR raise exception
2023-03-20 11:34:44,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,688 ERROR result = handle_locally()
2023-03-20 11:34:44,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,688 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:44,689 ERROR raise exception
2023-03-20 11:34:44,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,690 ERROR result = handle_locally()
2023-03-20 11:34:44,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,691 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:44,691 ERROR raise exception
2023-03-20 11:34:44,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,692 ERROR result = handle_locally()
2023-03-20 11:34:44,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,693 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:44,694 ERROR raise exception
2023-03-20 11:34:44,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,694 ERROR result = handle_locally()
2023-03-20 11:34:44,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:44,695 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:44,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:44,696 ERROR raise exception
2023-03-20 11:34:44,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:44,697 ERROR result = handle_locally()
2023-03-20 11:34:44,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:44,697 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:44,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:44,698 ERROR constraint_type_strict)
2023-03-20 11:34:44,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:44,699 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:44,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:44,700 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:44,700 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:44,762 INFO Welcome to the CDS
2023-03-20 11:34:44,762 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202102
2023-03-20 11:34:45,333 INFO Request is queued
2023-03-20 11:34:46,395 INFO Request is failed
2023-03-20 11:34:46,395 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:46,396 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:46,396 ERROR Traceback (most recent call last):
2023-03-20 11:34:46,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,397 ERROR result = handle_locally()
2023-03-20 11:34:46,397 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,398 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,398 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:46,399 ERROR raise exception
2023-03-20 11:34:46,399 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,399 ERROR result = handle_locally()
2023-03-20 11:34:46,400 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,400 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:46,401 ERROR raise exception
2023-03-20 11:34:46,401 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,402 ERROR result = handle_locally()
2023-03-20 11:34:46,402 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,402 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,403 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:46,403 ERROR raise exception
2023-03-20 11:34:46,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,404 ERROR result = handle_locally()
2023-03-20 11:34:46,404 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,405 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,405 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:46,405 ERROR raise exception
2023-03-20 11:34:46,406 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,406 ERROR result = handle_locally()
2023-03-20 11:34:46,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,407 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,407 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:46,408 ERROR raise exception
2023-03-20 11:34:46,408 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,409 ERROR result = handle_locally()
2023-03-20 11:34:46,409 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,409 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:46,410 ERROR raise exception
2023-03-20 11:34:46,410 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,411 ERROR result = handle_locally()
2023-03-20 11:34:46,411 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:46,412 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:46,412 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:46,412 ERROR raise exception
2023-03-20 11:34:46,413 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:46,413 ERROR result = handle_locally()
2023-03-20 11:34:46,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:46,414 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:46,414 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:46,415 ERROR constraint_type_strict)
2023-03-20 11:34:46,415 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:46,415 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:46,416 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:46,416 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:46,417 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:46,473 INFO Welcome to the CDS
2023-03-20 11:34:46,473 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:46,570 INFO Request is queued
no data202103
2023-03-20 11:34:47,629 INFO Request is failed
2023-03-20 11:34:47,630 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:47,630 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:47,631 ERROR Traceback (most recent call last):
2023-03-20 11:34:47,631 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,631 ERROR result = handle_locally()
2023-03-20 11:34:47,632 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,632 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,632 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:47,633 ERROR raise exception
2023-03-20 11:34:47,633 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,634 ERROR result = handle_locally()
2023-03-20 11:34:47,634 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,634 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:47,635 ERROR raise exception
2023-03-20 11:34:47,635 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,636 ERROR result = handle_locally()
2023-03-20 11:34:47,636 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,636 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:47,637 ERROR raise exception
2023-03-20 11:34:47,637 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,638 ERROR result = handle_locally()
2023-03-20 11:34:47,638 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,638 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:47,639 ERROR raise exception
2023-03-20 11:34:47,639 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,640 ERROR result = handle_locally()
2023-03-20 11:34:47,640 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,640 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:47,641 ERROR raise exception
2023-03-20 11:34:47,641 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,642 ERROR result = handle_locally()
2023-03-20 11:34:47,642 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,642 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:47,643 ERROR raise exception
2023-03-20 11:34:47,643 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,644 ERROR result = handle_locally()
2023-03-20 11:34:47,644 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:47,644 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:47,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:47,645 ERROR raise exception
2023-03-20 11:34:47,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:47,646 ERROR result = handle_locally()
2023-03-20 11:34:47,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:47,646 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:47,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:47,647 ERROR constraint_type_strict)
2023-03-20 11:34:47,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:47,648 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:47,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:47,649 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:47,649 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:47,704 INFO Welcome to the CDS
2023-03-20 11:34:47,705 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:47,819 INFO Request is queued
no data202104
2023-03-20 11:34:48,899 INFO Request is failed
2023-03-20 11:34:48,900 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:48,901 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:48,901 ERROR Traceback (most recent call last):
2023-03-20 11:34:48,901 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,902 ERROR result = handle_locally()
2023-03-20 11:34:48,902 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,902 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:48,903 ERROR raise exception
2023-03-20 11:34:48,903 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,904 ERROR result = handle_locally()
2023-03-20 11:34:48,904 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,904 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:48,905 ERROR raise exception
2023-03-20 11:34:48,905 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,906 ERROR result = handle_locally()
2023-03-20 11:34:48,906 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,907 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,907 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:48,907 ERROR raise exception
2023-03-20 11:34:48,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,908 ERROR result = handle_locally()
2023-03-20 11:34:48,908 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,909 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,909 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:48,909 ERROR raise exception
2023-03-20 11:34:48,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,910 ERROR result = handle_locally()
2023-03-20 11:34:48,910 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,911 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,911 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:48,911 ERROR raise exception
2023-03-20 11:34:48,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,912 ERROR result = handle_locally()
2023-03-20 11:34:48,912 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,913 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,913 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:48,913 ERROR raise exception
2023-03-20 11:34:48,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,914 ERROR result = handle_locally()
2023-03-20 11:34:48,914 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:48,915 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:48,915 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:48,915 ERROR raise exception
2023-03-20 11:34:48,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:48,916 ERROR result = handle_locally()
2023-03-20 11:34:48,916 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:48,917 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:48,917 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:48,917 ERROR constraint_type_strict)
2023-03-20 11:34:48,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:48,918 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:48,918 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:48,919 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:48,919 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:48,998 INFO Welcome to the CDS
2023-03-20 11:34:48,999 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202105
2023-03-20 11:34:49,153 INFO Request is queued
2023-03-20 11:34:50,212 INFO Request is failed
2023-03-20 11:34:50,213 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:50,214 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:50,214 ERROR Traceback (most recent call last):
2023-03-20 11:34:50,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,215 ERROR result = handle_locally()
2023-03-20 11:34:50,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,216 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:50,217 ERROR raise exception
2023-03-20 11:34:50,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,217 ERROR result = handle_locally()
2023-03-20 11:34:50,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,218 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,218 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:50,219 ERROR raise exception
2023-03-20 11:34:50,219 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,220 ERROR result = handle_locally()
2023-03-20 11:34:50,220 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,220 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,221 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:50,221 ERROR raise exception
2023-03-20 11:34:50,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,222 ERROR result = handle_locally()
2023-03-20 11:34:50,222 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,223 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:50,223 ERROR raise exception
2023-03-20 11:34:50,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,224 ERROR result = handle_locally()
2023-03-20 11:34:50,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,225 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:50,226 ERROR raise exception
2023-03-20 11:34:50,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,226 ERROR result = handle_locally()
2023-03-20 11:34:50,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,227 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:50,228 ERROR raise exception
2023-03-20 11:34:50,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,229 ERROR result = handle_locally()
2023-03-20 11:34:50,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:50,230 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:50,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:50,230 ERROR raise exception
2023-03-20 11:34:50,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:50,231 ERROR result = handle_locally()
2023-03-20 11:34:50,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:50,232 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:50,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:50,233 ERROR constraint_type_strict)
2023-03-20 11:34:50,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:50,233 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:50,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:50,234 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:50,235 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:50,291 INFO Welcome to the CDS
2023-03-20 11:34:50,292 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:50,416 INFO Request is queued
no data202106
2023-03-20 11:34:51,486 INFO Request is failed
2023-03-20 11:34:51,487 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:51,487 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:51,488 ERROR Traceback (most recent call last):
2023-03-20 11:34:51,488 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,489 ERROR result = handle_locally()
2023-03-20 11:34:51,489 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,489 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:51,490 ERROR raise exception
2023-03-20 11:34:51,490 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,491 ERROR result = handle_locally()
2023-03-20 11:34:51,491 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,491 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,492 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:51,492 ERROR raise exception
2023-03-20 11:34:51,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,493 ERROR result = handle_locally()
2023-03-20 11:34:51,493 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,494 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,494 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:51,494 ERROR raise exception
2023-03-20 11:34:51,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,495 ERROR result = handle_locally()
2023-03-20 11:34:51,495 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,496 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,496 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:51,497 ERROR raise exception
2023-03-20 11:34:51,497 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,497 ERROR result = handle_locally()
2023-03-20 11:34:51,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,498 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,498 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:51,499 ERROR raise exception
2023-03-20 11:34:51,499 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,499 ERROR result = handle_locally()
2023-03-20 11:34:51,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,500 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,500 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:51,501 ERROR raise exception
2023-03-20 11:34:51,501 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,501 ERROR result = handle_locally()
2023-03-20 11:34:51,502 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:51,502 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:51,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:51,503 ERROR raise exception
2023-03-20 11:34:51,503 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:51,504 ERROR result = handle_locally()
2023-03-20 11:34:51,504 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:51,504 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:51,508 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:51,509 ERROR constraint_type_strict)
2023-03-20 11:34:51,509 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:51,509 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:51,510 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:51,510 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:51,510 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:51,578 INFO Welcome to the CDS
2023-03-20 11:34:51,579 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:51,677 INFO Request is queued
no data202107
2023-03-20 11:34:52,739 INFO Request is failed
2023-03-20 11:34:52,740 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:52,741 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:52,741 ERROR Traceback (most recent call last):
2023-03-20 11:34:52,742 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,742 ERROR result = handle_locally()
2023-03-20 11:34:52,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,743 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,743 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:52,744 ERROR raise exception
2023-03-20 11:34:52,744 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,745 ERROR result = handle_locally()
2023-03-20 11:34:52,745 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,745 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,746 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:52,746 ERROR raise exception
2023-03-20 11:34:52,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,747 ERROR result = handle_locally()
2023-03-20 11:34:52,747 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,748 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,748 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:52,749 ERROR raise exception
2023-03-20 11:34:52,749 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,749 ERROR result = handle_locally()
2023-03-20 11:34:52,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,750 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,750 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:52,751 ERROR raise exception
2023-03-20 11:34:52,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,752 ERROR result = handle_locally()
2023-03-20 11:34:52,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,752 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:52,753 ERROR raise exception
2023-03-20 11:34:52,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,754 ERROR result = handle_locally()
2023-03-20 11:34:52,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,755 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:52,755 ERROR raise exception
2023-03-20 11:34:52,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,756 ERROR result = handle_locally()
2023-03-20 11:34:52,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:52,757 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:52,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:52,758 ERROR raise exception
2023-03-20 11:34:52,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:52,758 ERROR result = handle_locally()
2023-03-20 11:34:52,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:52,759 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:52,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:52,760 ERROR constraint_type_strict)
2023-03-20 11:34:52,760 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:52,761 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:52,761 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:52,762 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:52,762 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:52,818 INFO Welcome to the CDS
2023-03-20 11:34:52,819 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:52,918 INFO Request is queued
no data202108
2023-03-20 11:34:53,980 INFO Request is failed
2023-03-20 11:34:53,981 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:53,981 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:53,982 ERROR Traceback (most recent call last):
2023-03-20 11:34:53,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,982 ERROR result = handle_locally()
2023-03-20 11:34:53,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,984 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:53,985 ERROR raise exception
2023-03-20 11:34:53,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,986 ERROR result = handle_locally()
2023-03-20 11:34:53,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,986 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:53,987 ERROR raise exception
2023-03-20 11:34:53,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,988 ERROR result = handle_locally()
2023-03-20 11:34:53,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,989 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:53,990 ERROR raise exception
2023-03-20 11:34:53,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,990 ERROR result = handle_locally()
2023-03-20 11:34:53,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,991 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:53,992 ERROR raise exception
2023-03-20 11:34:53,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,993 ERROR result = handle_locally()
2023-03-20 11:34:53,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,994 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:53,994 ERROR raise exception
2023-03-20 11:34:53,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,995 ERROR result = handle_locally()
2023-03-20 11:34:53,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,996 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:53,997 ERROR raise exception
2023-03-20 11:34:53,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:53,997 ERROR result = handle_locally()
2023-03-20 11:34:53,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:53,998 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:53,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:53,999 ERROR raise exception
2023-03-20 11:34:53,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:54,000 ERROR result = handle_locally()
2023-03-20 11:34:54,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:54,000 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:54,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:54,001 ERROR constraint_type_strict)
2023-03-20 11:34:54,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:54,002 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:54,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:54,003 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:54,003 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:54,059 INFO Welcome to the CDS
2023-03-20 11:34:54,060 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:54,158 INFO Request is queued
no data202109
2023-03-20 11:34:55,222 INFO Request is failed
2023-03-20 11:34:55,222 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:55,223 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:55,223 ERROR Traceback (most recent call last):
2023-03-20 11:34:55,223 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,224 ERROR result = handle_locally()
2023-03-20 11:34:55,224 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,224 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:55,225 ERROR raise exception
2023-03-20 11:34:55,225 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,226 ERROR result = handle_locally()
2023-03-20 11:34:55,226 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,226 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,227 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:55,227 ERROR raise exception
2023-03-20 11:34:55,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,228 ERROR result = handle_locally()
2023-03-20 11:34:55,228 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,229 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,229 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:55,229 ERROR raise exception
2023-03-20 11:34:55,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,230 ERROR result = handle_locally()
2023-03-20 11:34:55,230 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,231 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,231 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:55,231 ERROR raise exception
2023-03-20 11:34:55,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,232 ERROR result = handle_locally()
2023-03-20 11:34:55,232 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,233 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,233 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:55,233 ERROR raise exception
2023-03-20 11:34:55,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,234 ERROR result = handle_locally()
2023-03-20 11:34:55,234 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,235 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,235 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:55,235 ERROR raise exception
2023-03-20 11:34:55,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,236 ERROR result = handle_locally()
2023-03-20 11:34:55,236 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:55,237 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:55,237 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:55,237 ERROR raise exception
2023-03-20 11:34:55,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:55,238 ERROR result = handle_locally()
2023-03-20 11:34:55,238 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:55,239 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:55,239 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:55,239 ERROR constraint_type_strict)
2023-03-20 11:34:55,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:55,240 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:55,240 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:55,241 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:55,241 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:55,297 INFO Welcome to the CDS
2023-03-20 11:34:55,297 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:55,398 INFO Request is queued
no data202110
2023-03-20 11:34:56,768 INFO Request is failed
2023-03-20 11:34:56,770 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:56,771 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:56,771 ERROR Traceback (most recent call last):
2023-03-20 11:34:56,772 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,772 ERROR result = handle_locally()
2023-03-20 11:34:56,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,773 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,773 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:56,774 ERROR raise exception
2023-03-20 11:34:56,774 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,775 ERROR result = handle_locally()
2023-03-20 11:34:56,775 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,775 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:56,776 ERROR raise exception
2023-03-20 11:34:56,776 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,777 ERROR result = handle_locally()
2023-03-20 11:34:56,777 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,778 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,778 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:56,778 ERROR raise exception
2023-03-20 11:34:56,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,779 ERROR result = handle_locally()
2023-03-20 11:34:56,779 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,780 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,780 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:56,780 ERROR raise exception
2023-03-20 11:34:56,781 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,781 ERROR result = handle_locally()
2023-03-20 11:34:56,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,782 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,782 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:56,783 ERROR raise exception
2023-03-20 11:34:56,783 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,783 ERROR result = handle_locally()
2023-03-20 11:34:56,784 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,784 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:56,785 ERROR raise exception
2023-03-20 11:34:56,785 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,786 ERROR result = handle_locally()
2023-03-20 11:34:56,789 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:56,789 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:56,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:56,790 ERROR raise exception
2023-03-20 11:34:56,790 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:56,791 ERROR result = handle_locally()
2023-03-20 11:34:56,791 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:56,791 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:56,792 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:56,792 ERROR constraint_type_strict)
2023-03-20 11:34:56,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:56,793 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:56,793 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:56,794 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:56,794 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:56,854 INFO Welcome to the CDS
2023-03-20 11:34:56,854 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:56,958 INFO Request is queued
no data202111
2023-03-20 11:34:58,036 INFO Request is failed
2023-03-20 11:34:58,037 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:58,037 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:58,037 ERROR Traceback (most recent call last):
2023-03-20 11:34:58,038 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,038 ERROR result = handle_locally()
2023-03-20 11:34:58,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,039 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,039 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:58,040 ERROR raise exception
2023-03-20 11:34:58,040 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,040 ERROR result = handle_locally()
2023-03-20 11:34:58,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,041 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,041 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:58,042 ERROR raise exception
2023-03-20 11:34:58,042 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,043 ERROR result = handle_locally()
2023-03-20 11:34:58,043 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,043 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:58,044 ERROR raise exception
2023-03-20 11:34:58,044 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,045 ERROR result = handle_locally()
2023-03-20 11:34:58,045 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,045 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:58,046 ERROR raise exception
2023-03-20 11:34:58,046 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,047 ERROR result = handle_locally()
2023-03-20 11:34:58,047 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,048 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,048 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:58,048 ERROR raise exception
2023-03-20 11:34:58,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,049 ERROR result = handle_locally()
2023-03-20 11:34:58,049 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,050 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,050 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:58,050 ERROR raise exception
2023-03-20 11:34:58,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,051 ERROR result = handle_locally()
2023-03-20 11:34:58,051 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:58,052 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:58,052 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:58,053 ERROR raise exception
2023-03-20 11:34:58,054 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:58,054 ERROR result = handle_locally()
2023-03-20 11:34:58,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:58,055 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:58,055 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:58,056 ERROR constraint_type_strict)
2023-03-20 11:34:58,056 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:58,056 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:58,057 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:58,057 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:58,057 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:58,166 INFO Welcome to the CDS
2023-03-20 11:34:58,167 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202112
2023-03-20 11:34:58,263 INFO Request is queued
2023-03-20 11:34:59,340 INFO Request is failed
2023-03-20 11:34:59,341 ERROR Message: the request you have submitted is not valid
2023-03-20 11:34:59,341 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:59,342 ERROR Traceback (most recent call last):
2023-03-20 11:34:59,342 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,342 ERROR result = handle_locally()
2023-03-20 11:34:59,343 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,343 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:34:59,344 ERROR raise exception
2023-03-20 11:34:59,344 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,345 ERROR result = handle_locally()
2023-03-20 11:34:59,345 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,345 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:34:59,346 ERROR raise exception
2023-03-20 11:34:59,346 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,347 ERROR result = handle_locally()
2023-03-20 11:34:59,347 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,347 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,348 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:34:59,348 ERROR raise exception
2023-03-20 11:34:59,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,349 ERROR result = handle_locally()
2023-03-20 11:34:59,349 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,350 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,350 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:59,350 ERROR raise exception
2023-03-20 11:34:59,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,351 ERROR result = handle_locally()
2023-03-20 11:34:59,351 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,352 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,352 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:59,352 ERROR raise exception
2023-03-20 11:34:59,353 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,353 ERROR result = handle_locally()
2023-03-20 11:34:59,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,354 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,354 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:59,355 ERROR raise exception
2023-03-20 11:34:59,355 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,355 ERROR result = handle_locally()
2023-03-20 11:34:59,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:34:59,356 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:34:59,356 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:34:59,357 ERROR raise exception
2023-03-20 11:34:59,357 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:34:59,357 ERROR result = handle_locally()
2023-03-20 11:34:59,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:34:59,358 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:34:59,358 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:34:59,359 ERROR constraint_type_strict)
2023-03-20 11:34:59,359 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:34:59,359 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:34:59,360 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:34:59,360 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:34:59,361 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:34:59,416 INFO Welcome to the CDS
2023-03-20 11:34:59,417 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:34:59,556 INFO Request is queued
no data202201
2023-03-20 11:35:00,643 INFO Request is failed
2023-03-20 11:35:00,643 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:00,644 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:00,644 ERROR Traceback (most recent call last):
2023-03-20 11:35:00,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,645 ERROR result = handle_locally()
2023-03-20 11:35:00,645 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,646 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,646 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:00,647 ERROR raise exception
2023-03-20 11:35:00,647 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,647 ERROR result = handle_locally()
2023-03-20 11:35:00,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,648 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,648 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:00,649 ERROR raise exception
2023-03-20 11:35:00,649 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,649 ERROR result = handle_locally()
2023-03-20 11:35:00,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,650 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,650 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:00,651 ERROR raise exception
2023-03-20 11:35:00,651 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,651 ERROR result = handle_locally()
2023-03-20 11:35:00,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,652 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,652 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:00,653 ERROR raise exception
2023-03-20 11:35:00,653 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,654 ERROR result = handle_locally()
2023-03-20 11:35:00,654 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,654 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:00,655 ERROR raise exception
2023-03-20 11:35:00,655 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,656 ERROR result = handle_locally()
2023-03-20 11:35:00,656 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,656 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:00,657 ERROR raise exception
2023-03-20 11:35:00,657 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,658 ERROR result = handle_locally()
2023-03-20 11:35:00,658 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:00,658 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:00,659 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:00,659 ERROR raise exception
2023-03-20 11:35:00,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:00,660 ERROR result = handle_locally()
2023-03-20 11:35:00,660 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:00,661 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:00,661 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:00,661 ERROR constraint_type_strict)
2023-03-20 11:35:00,662 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:00,662 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:00,662 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:00,663 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:00,663 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:00,733 INFO Welcome to the CDS
2023-03-20 11:35:00,733 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202202
2023-03-20 11:35:01,136 INFO Request is queued
2023-03-20 11:35:02,197 INFO Request is failed
2023-03-20 11:35:02,198 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:02,198 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:02,199 ERROR Traceback (most recent call last):
2023-03-20 11:35:02,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,199 ERROR result = handle_locally()
2023-03-20 11:35:02,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,200 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:02,201 ERROR raise exception
2023-03-20 11:35:02,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,202 ERROR result = handle_locally()
2023-03-20 11:35:02,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,202 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:02,203 ERROR raise exception
2023-03-20 11:35:02,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,204 ERROR result = handle_locally()
2023-03-20 11:35:02,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,204 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:02,205 ERROR raise exception
2023-03-20 11:35:02,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,206 ERROR result = handle_locally()
2023-03-20 11:35:02,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,207 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:02,207 ERROR raise exception
2023-03-20 11:35:02,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,208 ERROR result = handle_locally()
2023-03-20 11:35:02,208 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,209 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:02,209 ERROR raise exception
2023-03-20 11:35:02,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,210 ERROR result = handle_locally()
2023-03-20 11:35:02,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,211 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:02,212 ERROR raise exception
2023-03-20 11:35:02,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,212 ERROR result = handle_locally()
2023-03-20 11:35:02,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:02,213 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:02,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:02,214 ERROR raise exception
2023-03-20 11:35:02,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:02,214 ERROR result = handle_locally()
2023-03-20 11:35:02,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:02,215 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:02,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:02,216 ERROR constraint_type_strict)
2023-03-20 11:35:02,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:02,216 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:02,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:02,217 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:02,217 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:02,281 INFO Welcome to the CDS
2023-03-20 11:35:02,282 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:02,362 INFO Request is queued
no data202203
2023-03-20 11:35:03,422 INFO Request is failed
2023-03-20 11:35:03,423 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:03,423 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:03,424 ERROR Traceback (most recent call last):
2023-03-20 11:35:03,424 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,425 ERROR result = handle_locally()
2023-03-20 11:35:03,425 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,425 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:03,426 ERROR raise exception
2023-03-20 11:35:03,426 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,427 ERROR result = handle_locally()
2023-03-20 11:35:03,427 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,428 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,428 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:03,428 ERROR raise exception
2023-03-20 11:35:03,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,429 ERROR result = handle_locally()
2023-03-20 11:35:03,429 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,430 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,430 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:03,430 ERROR raise exception
2023-03-20 11:35:03,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,431 ERROR result = handle_locally()
2023-03-20 11:35:03,431 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,432 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,432 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:03,432 ERROR raise exception
2023-03-20 11:35:03,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,433 ERROR result = handle_locally()
2023-03-20 11:35:03,433 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,434 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,434 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:03,434 ERROR raise exception
2023-03-20 11:35:03,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,435 ERROR result = handle_locally()
2023-03-20 11:35:03,435 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,436 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,436 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:03,436 ERROR raise exception
2023-03-20 11:35:03,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,437 ERROR result = handle_locally()
2023-03-20 11:35:03,437 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:03,438 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:03,438 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:03,438 ERROR raise exception
2023-03-20 11:35:03,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:03,439 ERROR result = handle_locally()
2023-03-20 11:35:03,439 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:03,440 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:03,440 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:03,440 ERROR constraint_type_strict)
2023-03-20 11:35:03,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:03,441 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:03,441 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:03,442 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:03,442 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:03,500 INFO Welcome to the CDS
2023-03-20 11:35:03,501 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:03,608 INFO Request is queued
no data202204
2023-03-20 11:35:04,683 INFO Request is failed
2023-03-20 11:35:04,684 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:04,684 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:04,685 ERROR Traceback (most recent call last):
2023-03-20 11:35:04,685 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,685 ERROR result = handle_locally()
2023-03-20 11:35:04,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,686 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,686 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:04,687 ERROR raise exception
2023-03-20 11:35:04,687 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,687 ERROR result = handle_locally()
2023-03-20 11:35:04,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,688 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,688 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:04,689 ERROR raise exception
2023-03-20 11:35:04,689 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,690 ERROR result = handle_locally()
2023-03-20 11:35:04,690 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,690 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:04,691 ERROR raise exception
2023-03-20 11:35:04,691 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,692 ERROR result = handle_locally()
2023-03-20 11:35:04,692 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,692 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:04,693 ERROR raise exception
2023-03-20 11:35:04,693 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,694 ERROR result = handle_locally()
2023-03-20 11:35:04,694 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,694 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:04,695 ERROR raise exception
2023-03-20 11:35:04,695 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,696 ERROR result = handle_locally()
2023-03-20 11:35:04,696 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,696 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:04,697 ERROR raise exception
2023-03-20 11:35:04,697 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,698 ERROR result = handle_locally()
2023-03-20 11:35:04,698 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:04,698 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:04,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:04,699 ERROR raise exception
2023-03-20 11:35:04,699 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:04,700 ERROR result = handle_locally()
2023-03-20 11:35:04,700 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:04,700 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:04,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:04,701 ERROR constraint_type_strict)
2023-03-20 11:35:04,701 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:04,702 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:04,702 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:04,702 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:04,703 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:04,760 INFO Welcome to the CDS
2023-03-20 11:35:04,761 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202205
2023-03-20 11:35:04,929 INFO Request is queued
2023-03-20 11:35:05,990 INFO Request is failed
2023-03-20 11:35:05,991 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:05,992 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:05,992 ERROR Traceback (most recent call last):
2023-03-20 11:35:05,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:05,993 ERROR result = handle_locally()
2023-03-20 11:35:05,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:05,993 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:05,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:05,994 ERROR raise exception
2023-03-20 11:35:05,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:05,995 ERROR result = handle_locally()
2023-03-20 11:35:05,995 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:05,996 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:05,996 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:05,996 ERROR raise exception
2023-03-20 11:35:05,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:05,997 ERROR result = handle_locally()
2023-03-20 11:35:05,997 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:05,998 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:05,998 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:05,998 ERROR raise exception
2023-03-20 11:35:05,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:05,999 ERROR result = handle_locally()
2023-03-20 11:35:05,999 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:06,000 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:06,000 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:06,000 ERROR raise exception
2023-03-20 11:35:06,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:06,001 ERROR result = handle_locally()
2023-03-20 11:35:06,001 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:06,002 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:06,002 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:06,002 ERROR raise exception
2023-03-20 11:35:06,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:06,003 ERROR result = handle_locally()
2023-03-20 11:35:06,003 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:06,004 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:06,004 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:06,004 ERROR raise exception
2023-03-20 11:35:06,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:06,005 ERROR result = handle_locally()
2023-03-20 11:35:06,005 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:06,006 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:06,006 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:06,006 ERROR raise exception
2023-03-20 11:35:06,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:06,007 ERROR result = handle_locally()
2023-03-20 11:35:06,007 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:06,008 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:06,008 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:06,008 ERROR constraint_type_strict)
2023-03-20 11:35:06,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:06,009 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:06,009 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:06,010 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:06,010 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:06,066 INFO Welcome to the CDS
2023-03-20 11:35:06,067 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:06,184 INFO Request is queued
no data202206
2023-03-20 11:35:07,266 INFO Request is failed
2023-03-20 11:35:07,266 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:07,267 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:07,267 ERROR Traceback (most recent call last):
2023-03-20 11:35:07,267 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,268 ERROR result = handle_locally()
2023-03-20 11:35:07,268 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,268 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:07,269 ERROR raise exception
2023-03-20 11:35:07,269 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,270 ERROR result = handle_locally()
2023-03-20 11:35:07,270 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,270 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:07,271 ERROR raise exception
2023-03-20 11:35:07,271 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,272 ERROR result = handle_locally()
2023-03-20 11:35:07,272 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,272 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,273 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:07,273 ERROR raise exception
2023-03-20 11:35:07,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,274 ERROR result = handle_locally()
2023-03-20 11:35:07,274 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,275 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,275 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:07,275 ERROR raise exception
2023-03-20 11:35:07,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,276 ERROR result = handle_locally()
2023-03-20 11:35:07,276 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,277 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,277 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:07,277 ERROR raise exception
2023-03-20 11:35:07,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,278 ERROR result = handle_locally()
2023-03-20 11:35:07,278 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,279 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,279 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:07,280 ERROR raise exception
2023-03-20 11:35:07,280 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,280 ERROR result = handle_locally()
2023-03-20 11:35:07,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:07,281 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:07,281 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:07,282 ERROR raise exception
2023-03-20 11:35:07,282 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:07,282 ERROR result = handle_locally()
2023-03-20 11:35:07,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:07,283 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:07,283 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:07,284 ERROR constraint_type_strict)
2023-03-20 11:35:07,284 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:07,284 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:07,285 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:07,285 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:07,285 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:07,351 INFO Welcome to the CDS
2023-03-20 11:35:07,351 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:07,482 INFO Request is queued
no data202207
2023-03-20 11:35:08,541 INFO Request is failed
2023-03-20 11:35:08,542 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:08,542 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:08,543 ERROR Traceback (most recent call last):
2023-03-20 11:35:08,543 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,543 ERROR result = handle_locally()
2023-03-20 11:35:08,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,544 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,544 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:08,545 ERROR raise exception
2023-03-20 11:35:08,545 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,545 ERROR result = handle_locally()
2023-03-20 11:35:08,546 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,546 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,546 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:08,547 ERROR raise exception
2023-03-20 11:35:08,547 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,548 ERROR result = handle_locally()
2023-03-20 11:35:08,548 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,548 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:08,549 ERROR raise exception
2023-03-20 11:35:08,549 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,551 ERROR result = handle_locally()
2023-03-20 11:35:08,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,552 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,552 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:08,553 ERROR raise exception
2023-03-20 11:35:08,553 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,553 ERROR result = handle_locally()
2023-03-20 11:35:08,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,554 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,554 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:08,555 ERROR raise exception
2023-03-20 11:35:08,555 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,555 ERROR result = handle_locally()
2023-03-20 11:35:08,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,556 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,556 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:08,557 ERROR raise exception
2023-03-20 11:35:08,557 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,557 ERROR result = handle_locally()
2023-03-20 11:35:08,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:08,558 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:08,558 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:08,559 ERROR raise exception
2023-03-20 11:35:08,559 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:08,559 ERROR result = handle_locally()
2023-03-20 11:35:08,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:08,560 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:08,560 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:08,561 ERROR constraint_type_strict)
2023-03-20 11:35:08,561 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:08,561 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:08,562 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:08,562 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:08,562 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:08,621 INFO Welcome to the CDS
2023-03-20 11:35:08,622 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:08,690 INFO Request is queued
no data202208
2023-03-20 11:35:09,750 INFO Request is failed
2023-03-20 11:35:09,750 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:09,751 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:09,751 ERROR Traceback (most recent call last):
2023-03-20 11:35:09,751 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,752 ERROR result = handle_locally()
2023-03-20 11:35:09,752 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,753 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,753 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:09,753 ERROR raise exception
2023-03-20 11:35:09,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,754 ERROR result = handle_locally()
2023-03-20 11:35:09,754 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,755 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,755 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:09,755 ERROR raise exception
2023-03-20 11:35:09,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,756 ERROR result = handle_locally()
2023-03-20 11:35:09,756 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,757 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,757 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:09,757 ERROR raise exception
2023-03-20 11:35:09,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,758 ERROR result = handle_locally()
2023-03-20 11:35:09,758 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,759 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,759 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:09,761 ERROR raise exception
2023-03-20 11:35:09,762 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,762 ERROR result = handle_locally()
2023-03-20 11:35:09,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,763 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,763 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:09,764 ERROR raise exception
2023-03-20 11:35:09,764 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,764 ERROR result = handle_locally()
2023-03-20 11:35:09,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,765 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,765 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:09,766 ERROR raise exception
2023-03-20 11:35:09,766 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,766 ERROR result = handle_locally()
2023-03-20 11:35:09,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:09,767 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:09,767 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:09,768 ERROR raise exception
2023-03-20 11:35:09,768 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:09,768 ERROR result = handle_locally()
2023-03-20 11:35:09,769 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:09,769 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:09,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:09,770 ERROR constraint_type_strict)
2023-03-20 11:35:09,770 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:09,771 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:09,771 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:09,771 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:09,772 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:09,840 INFO Welcome to the CDS
2023-03-20 11:35:09,841 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:09,915 INFO Request is queued
no data202209
2023-03-20 11:35:10,975 INFO Request is failed
2023-03-20 11:35:10,976 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:10,976 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:10,976 ERROR Traceback (most recent call last):
2023-03-20 11:35:10,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,977 ERROR result = handle_locally()
2023-03-20 11:35:10,977 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,978 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,978 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:10,979 ERROR raise exception
2023-03-20 11:35:10,979 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,979 ERROR result = handle_locally()
2023-03-20 11:35:10,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,980 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,980 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:10,981 ERROR raise exception
2023-03-20 11:35:10,981 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,981 ERROR result = handle_locally()
2023-03-20 11:35:10,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,982 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,982 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:10,983 ERROR raise exception
2023-03-20 11:35:10,983 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,983 ERROR result = handle_locally()
2023-03-20 11:35:10,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,984 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,984 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:10,985 ERROR raise exception
2023-03-20 11:35:10,985 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,985 ERROR result = handle_locally()
2023-03-20 11:35:10,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,986 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,986 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:10,987 ERROR raise exception
2023-03-20 11:35:10,987 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,987 ERROR result = handle_locally()
2023-03-20 11:35:10,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,988 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,988 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:10,989 ERROR raise exception
2023-03-20 11:35:10,989 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,989 ERROR result = handle_locally()
2023-03-20 11:35:10,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:10,990 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:10,990 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:10,991 ERROR raise exception
2023-03-20 11:35:10,991 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:10,991 ERROR result = handle_locally()
2023-03-20 11:35:10,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:10,992 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:10,992 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:10,993 ERROR constraint_type_strict)
2023-03-20 11:35:10,993 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:10,993 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:10,994 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:10,994 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:10,994 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:11,052 INFO Welcome to the CDS
2023-03-20 11:35:11,053 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
2023-03-20 11:35:11,135 INFO Request is queued
no data202210
2023-03-20 11:35:12,196 INFO Request is failed
2023-03-20 11:35:12,196 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:12,197 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:12,197 ERROR Traceback (most recent call last):
2023-03-20 11:35:12,197 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,198 ERROR result = handle_locally()
2023-03-20 11:35:12,198 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,199 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,199 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:12,199 ERROR raise exception
2023-03-20 11:35:12,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,200 ERROR result = handle_locally()
2023-03-20 11:35:12,200 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,201 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,201 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:12,201 ERROR raise exception
2023-03-20 11:35:12,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,202 ERROR result = handle_locally()
2023-03-20 11:35:12,202 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,203 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,203 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:12,203 ERROR raise exception
2023-03-20 11:35:12,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,204 ERROR result = handle_locally()
2023-03-20 11:35:12,204 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,205 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,205 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:12,205 ERROR raise exception
2023-03-20 11:35:12,206 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,206 ERROR result = handle_locally()
2023-03-20 11:35:12,207 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,207 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,209 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:12,210 ERROR raise exception
2023-03-20 11:35:12,210 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,210 ERROR result = handle_locally()
2023-03-20 11:35:12,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,211 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,211 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:12,212 ERROR raise exception
2023-03-20 11:35:12,212 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,212 ERROR result = handle_locally()
2023-03-20 11:35:12,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:12,213 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:12,213 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:12,214 ERROR raise exception
2023-03-20 11:35:12,214 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:12,214 ERROR result = handle_locally()
2023-03-20 11:35:12,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:12,215 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:12,215 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:12,216 ERROR constraint_type_strict)
2023-03-20 11:35:12,216 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:12,216 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:12,217 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:12,217 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:12,217 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:12,280 INFO Welcome to the CDS
2023-03-20 11:35:12,280 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/satellite-aerosol-properties
no data202211
2023-03-20 11:35:12,490 INFO Request is queued
2023-03-20 11:35:13,577 INFO Request is failed
2023-03-20 11:35:13,577 ERROR Message: the request you have submitted is not valid
2023-03-20 11:35:13,578 ERROR Reason: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
2023-03-20 11:35:13,578 ERROR Traceback (most recent call last):
2023-03-20 11:35:13,578 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,579 ERROR result = handle_locally()
2023-03-20 11:35:13,579 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,580 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,580 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 383, in handle_exception
2023-03-20 11:35:13,580 ERROR raise exception
2023-03-20 11:35:13,581 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,581 ERROR result = handle_locally()
2023-03-20 11:35:13,581 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,582 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,582 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 365, in handle_exception
2023-03-20 11:35:13,582 ERROR raise exception
2023-03-20 11:35:13,583 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,583 ERROR result = handle_locally()
2023-03-20 11:35:13,583 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,584 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,584 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 406, in handle_exception
2023-03-20 11:35:13,584 ERROR raise exception
2023-03-20 11:35:13,585 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,585 ERROR result = handle_locally()
2023-03-20 11:35:13,585 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,586 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,586 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:13,586 ERROR raise exception
2023-03-20 11:35:13,587 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,589 ERROR result = handle_locally()
2023-03-20 11:35:13,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,590 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,590 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:13,591 ERROR raise exception
2023-03-20 11:35:13,591 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,591 ERROR result = handle_locally()
2023-03-20 11:35:13,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,592 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,592 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:13,593 ERROR raise exception
2023-03-20 11:35:13,593 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,593 ERROR result = handle_locally()
2023-03-20 11:35:13,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 252, in <lambda>
2023-03-20 11:35:13,594 ERROR lambda: self.handle_exception(context, e),
2023-03-20 11:35:13,594 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 132, in handle_exception
2023-03-20 11:35:13,595 ERROR raise exception
2023-03-20 11:35:13,595 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 163, in _consume
2023-03-20 11:35:13,596 ERROR result = handle_locally()
2023-03-20 11:35:13,596 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/dispatcher.py", line 210, in <lambda>
2023-03-20 11:35:13,596 ERROR lambda: self.handle_request(context, request_data),
2023-03-20 11:35:13,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsprocessor.py", line 46, in handle_request
2023-03-20 11:35:13,597 ERROR constraint_type_strict)
2023-03-20 11:35:13,597 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 66, in run
2023-03-20 11:35:13,598 ERROR self._check_request_validity(cdsinf, request_params, constraints, constraint_type_strict)
2023-03-20 11:35:13,598 ERROR File "/opt/cds/cdsinf/python/lib/cdsinf/runner/constraintsengines/constraintsengine.py", line 162, in _check_request_validity
2023-03-20 11:35:13,598 ERROR "http://copernicus-climate.eu/exc/constraints-bad-params")
2023-03-20 11:35:13,599 ERROR cdsinf.exceptions.BadRequestException: Value 'AOD550_mean' not valid for parameter 'variable', valid values are: aerosol_extinction_coefficient, aerosol_layer_height, aerosol_optical_depth, dust_aerosol_layer_height, dust_aerosol_optical_depth, fine_mode_aerosol_optical_depth, single_scattering_albedo
no data202212
Next, we unpack the data.
files = os.listdir(DATADIR)
dir = f'{DATADIR}' + 'data/'
for file in files:
if '.zip' in file:
with zipfile.ZipFile(DATADIR + file, 'r') as zip_ref:
zip_ref.extractall(f'{DATADIR}' + 'data')
os.remove(DATADIR + file)
files = os.listdir(dir)
Correction of variable names: There are a few variable naming inconsistencies which we automtically adjusted by the following code block.
if variable == 'aerosol_optical_depth':
if algorithm == 'ens':
variable = 'AOD550'
else:
variable = 'AOD550_mean'
elif variable == 'fine_mode_aerosol_optical_depth':
if algorithm == 'ens':
variable = 'FM_AOD550'
else:
variable = 'FM_AOD550_mean'
elif variable == 'dust_aerosol_optical_depth':
if algorithm == 'ens':
variable = 'DAOD550'
elif algorithm == 'lmd':
variable = 'Daod550'
elif algorithm == 'imars':
variable = 'D_AOD550'
else:
variable = 'D_AOD550_mean'
Use case 1: extract long time series and plot it#
Finally, we get the regional timeseries as list. Since the valdiation showed a significant bias for SLSTR algorithms with some but limited regional variations, we have to subtract it before combining the time series. Note that we use a global average bias here, while a more sophisticated correction will use regional biases.
if algorithm == 'SWANSEA':
slstr_bias = 0.045
if algorithm == 'ORAC':
slstr_bias = 0.06
if algorithm == 'SDV':
slstr_bias = 0.07
if algorithm == 'ENS':
slstr_bias = 0.03
aod = []
time = []
for year in years_dual:
for month in months:
t_str = year + '-' + month
t = year + month
len1 = len(aod)
time.append(md.datestr2num(t_str))
try:
for file in files:
if t in file:
correct = 0
if file[35:40] == 'SLSTR':
correct = slstr_bias
data_set = nc.Dataset(dir + file,'r')
data_sel = data_set[variable][lat1 : lat2 , lon1 : lon2]
data_mean = np.ma.mean(data_sel) - correct
aod.append(data_mean)
data_set.close()
except:
aod.append(np.nan)
if len1 == len(aod):
aod.append(np.nan)
Here, we plot the long time series.
plt.plot_date(time, aod, '-', label = variable, linewidth = 0.5)
plt.ylabel("AOD")
plt.title(variable + ' Timeseries ' + algorithm + ' in ' + region)
plt.savefig(DATADIR + 'timeseries_' + variable + '_' + algorithm + '_' + region + '.png', dpi=500, bbox_inches='tight')
FIGURE 1: This time series shows the long term behaviour of aerosol preoperties in the selected region.
Use case 2: calculate and plot a multi-annual mean (“climatology”)#
We calculate a multi-annual mean for each sensor in the time series, i.e. for ATSR-2 (1995-2002), AATSR (2003-2011) and SLSTR (2017-2022) and use each of them for the respective time series.
## Climatology
aod_standard_deviation_ges = []
aod_climatology_ges = []
#ATSR2
aod_standard_deviation1 = []
aod_climatology1 = []
for month in months:
aodmonth1 = []
aodvar1 = []
for year in years_ATSR2[2:]:
t = year + month
for file in files:
if t in file:
data_set = nc.Dataset(dir + file,'r')
data_sel = data_set[variable][lat1 : lat2 , lon1 : lon2]
data_mean = np.ma.mean(data_sel)
data_var = (data_mean**2)/len(years_ATSR2[2:])
aodmonth1.append(data_mean)
aodvar1.append(data_var)
expectation = sum(aodmonth1)/len(years_ATSR2[2:])
standard_deviation = np.sqrt(sum(aodvar1)-expectation**2)
aod_climatology1.append(expectation)
aod_standard_deviation1.append(standard_deviation)
for i in range(len(years_ATSR2)):
aod_climatology_ges.extend(aod_climatology1)
aod_standard_deviation_ges.extend(aod_standard_deviation1)
#AATSR
aod_standard_deviation1 = []
aod_climatology1 = []
for month in months:
aodmonth1 = []
aodvar1 = []
for year in years_AATSR:
t = year + month
for file in files:
if t in file:
data_set = nc.Dataset(dir + file,'r')
data_sel = data_set[variable][lat1 : lat2 , lon1 : lon2]
data_mean = np.ma.mean(data_sel)
data_var = (data_mean**2)/len(years_AATSR)
aodmonth1.append(data_mean)
aodvar1.append(data_var)
expectation = sum(aodmonth1)/len(years_AATSR)
standard_deviation = np.sqrt(sum(aodvar1)-expectation**2)
aod_climatology1.append(expectation)
aod_standard_deviation1.append(standard_deviation)
for i in range(len(years_AATSR)):
aod_climatology_ges.extend(aod_climatology1)
aod_standard_deviation_ges.extend(aod_standard_deviation1)
#DATA GAP
nan_list = [np.nan for i in range(12)]
aod_climatology_ges.extend(nan_list)
aod_standard_deviation_ges.extend(nan_list)
#SLSTR
aod_standard_deviation1 = []
aod_climatology1 = []
for month in months:
aodmonth1 = []
aodvar1 = []
for year in years_SLSTR:
t = year + month
for file in files:
if t in file:
data_set = nc.Dataset(dir + file,'r')
data_sel = data_set[variable][lat1 : lat2 , lon1 : lon2]
data_mean = np.ma.mean(data_sel) - correct
data_var = (data_mean**2)/len(years_SLSTR)
aodmonth1.append(data_mean)
aodvar1.append(data_var)
expectation = sum(aodmonth1)/len(years_SLSTR)
standard_deviation = np.sqrt(sum(aodvar1)-expectation**2)
aod_climatology1.append(expectation)
aod_standard_deviation1.append(standard_deviation)
for i in range(len(years_SLSTR)):
aod_climatology_ges.extend(aod_climatology1)
aod_standard_deviation_ges.extend(aod_standard_deviation1)
aod_standard_deviation1 = [aod_climatology_ges[i] + aod_standard_deviation_ges[i] for i in range(len(aod_standard_deviation_ges))]
aod_standard_deviation2 = [aod_climatology_ges[i] - aod_standard_deviation_ges[i] for i in range(len(aod_standard_deviation_ges))]
years_dual = years_ATSR2 + years_AATSR + ['2016'] + years_SLSTR
time_dual = []
for year in years_dual:
for month in months:
t_str = year + '-' + month
time_dual.append(md.datestr2num(t_str))
Now we plot the time series with the climatologies.
fig = plt.figure(figsize=(7,3))
plt.plot_date(time, aod, '-', label = variable, color = 'red', linewidth = 0.5)
plt.fill_between(time_dual, aod_standard_deviation1, aod_standard_deviation2, color = 'blue', alpha = 0.2)
plt.plot(time_dual, aod_climatology_ges, '-', label = 'climatology', color = 'blue', linewidth = 0.5, alpha = 0.5)
plt.ylabel("AOD")
plt.legend()
plt.title(variable + ' Climatology ' + algorithm + ' in ' + region)
plt.savefig(DATADIR + 'timeseries_with_climatology_' + variable + '_' + algorithm + '_' + region + '.png', dpi=500, bbox_inches='tight')
FIGURE 2: This time series overplotted to the repeated annual climatologies (per sensor) already indicates any episodic events outside the long-term variabiliy.
Use case 3: Calculate and plot the anomaly timeseries#
anomaly = [aod[i] - aod_climatology_ges[i] for i in range(len(aod))]
aod_standard_deviation_ges_ = [-aod_standard_deviation_ges[i] for i in range(len(aod_standard_deviation_ges))]
fig = plt.figure(figsize=(7,3))
plt.plot_date(time, anomaly, '-', label = variable, color = 'red', linewidth = 0.5)
plt.fill_between(time_dual, aod_standard_deviation_ges, aod_standard_deviation_ges_, color = 'blue', alpha = 0.2)
plt.ylabel("AOD")
plt.legend()
plt.title(variable + ' Anomaly ' + algorithm + ' in ' + region)
plt.savefig(DATADIR + 'anomaly_timeseries_' + variable + '_' + algorithm + '_' + region + '.png', dpi=500, bbox_inches='tight')
FIGURE 3: This anomaly record shows more clearly those episodic extreme events as outliers outside the shaded long-term variability and possibly also any trend of the data record in this region (e.g. decreases in Europe or the U.S., increases in India or on Sout-Eact China increases before ~2008 and decreases since ~2012).
This closes our second Jupyter notebook on aerosol properties.