influxdata / influxdata/influxdb-client-python
Using influxdb-client-python against v1.8.10 how do I do the equivalent to `client.get_list_database()`?
まだ誰も着手していません。
- 主要言語
- Python
- スター
- 793
- フォーク
- 186
- 平均マージ
- 3時間 2分
- マージ済み PR(30日)
- 1
説明
### Specifications
* Client Version: 1.35.0
* InfluxDB Version: 1.8.10
* Platform: Linux
The subject sums up my whole question, really. Using influxdb-client-python v1.35.0 against InfluxDB v1.8.10 how do I do the equivalent to `client.get_list_database()` from the older influxdb-python v5.3.1?
The docs say `Use this client library with InfluxDB 2.x and InfluxDB 1.8+` so I hoped there was an equivalent.
I tried `BucketsApi.find_buckets()` but that seems to only use the v2 API and therefore throws an exception following the 404 status.
### Code sample to reproduce problem
```python
from influxdb_client import InfluxDBClient as InfluxDBClient2, BucketsApi
with InfluxDBClient2(url='http://localhost:8086', token=':', org='-') as client:
bucket_client = BucketsApi(client)
buckets = bucket_client.find_buckets()
for bucket in buckets:
print(bucket)
```
### Expected behavior
To get the databases listed.
### Actual behavior
```console
Traceback (most recent call last):
File "mdsh.py", line 5, in
buckets = bucket_client.find_buckets()
File "/usr/local/lib/python3.7/site-packages/influxdb_client/client/bucket_api.py", line 119, in find_buckets
return self._buckets_service.get_buckets(**kwargs)
File "/usr/local/lib/python3.7/site-packages/influxdb_client/service/buckets_service.py", line 548, in get_buckets
(data) = self.get_buckets_with_http_info(**kwargs) # noqa: E501
File "/usr/local/lib/python3.7/site-packages/influxdb_client/service/buckets_service.py", line 590, in get_buckets_with_http_info
urlopen_kw=kwargs.get('urlopen_kw', None))
File "/usr/local/lib/python3.7/site-packages/influxdb_client/_sync/api_client.py", line 348, in call_api
_preload_content, _request_timeout, urlopen_kw)
File "/usr/local/lib/python3.7/site-packages/influxdb_client/_sync/api_client.py", line 177, in __call_api
_request_timeout=_request_timeout, **urlopen_kw)
File "/usr/local/lib/python3.7/site-packages/influxdb_client/_sync/api_client.py", line 370, in request
**urlopen_kw)
File "/usr/local/lib/python3.7/site-packages/influxdb_client/_sync/rest.py", line 273, in GET
**urlopen_kw)
File "/usr/local/lib/python3.7/site-packages/influxdb_client/_sync/rest.py", line 261, in request
raise ApiException(http_resp=r)
influxdb_client.rest.ApiException: (404)
Reason: Not Found
HTTP response headers: HTTPHeaderDict({'Content-Type': 'text/plain; charset=utf-8', 'X-Content-Type-Options': 'nosniff', 'X-Influxdb-Build': 'OSS', 'X-Influxdb-Version': '1.8.10', 'Date': 'Sun, 01 Jan 2023 16:04:59 GMT', 'Content-Length': '19'})
HTTP response body: 404 page not found
```
### Additional info
_No response_
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Start with the BucketsApi.find_buckets() call and the InfluxDB 1.8.10 behavior described in the reproduction. Determine whether the client exposes an equivalent database-listing entry point; done means the expected databases can be listed against InfluxDB 1.8.10 without the reported 404.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- api, databases
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100