bucket/
├── seoul/
│ ├── weather/
│ │ └── data.json
│ └── gdp/
│ └── data.json
├── tokyo/
│ ├── weather/
│ │ └── data.json
│ ├── gdp/
│ │ └── data.json
│ └── transit/
│ └── data.json
├── seattle/
│ ├── weather/
│ │ └── data.json
│ └── cost-of-living/
│ └── data.json
├ ....
I wanted to crawl all weather
data in my bucket.
As described in AWS Doc, I set my S3 Target Path as
s3://bucket/*/weather
However the glue crawler doesn't match any datas. Creates 0 tables. How should I set glue targets so that I can gather all weather data?