-
Notifications
You must be signed in to change notification settings - Fork 17
feat: Add CLI #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
feat: Add CLI #208
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9a71279
fix: normalize PEM line endings in certificate reading
TheTrueAI 85a4a4f
feat: add CLI for querying InfluxDB 3
TheTrueAI b3ff200
feat: enhance CLI output formatting and add error handling for query …
TheTrueAI c90beeb
fix: handle nanosecond timestamps in CLI
TheTrueAI File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| from influxdb_client_3.cli import main | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| raise SystemExit(main()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,211 @@ | ||
| import argparse | ||
| import csv | ||
| import io | ||
| import json | ||
| import os | ||
| import sys | ||
| from typing import Mapping, Optional | ||
|
|
||
| import pyarrow as pa | ||
|
|
||
| from influxdb_client_3 import ( | ||
| INFLUX_DATABASE, | ||
| INFLUX_HOST, | ||
| INFLUX_TOKEN, | ||
| InfluxDBClient3, | ||
| ) | ||
| from influxdb_client_3.exceptions import InfluxDB3ClientQueryError, InfluxDBError | ||
|
|
||
|
|
||
| def _resolve_option( | ||
| cli_value: Optional[str], | ||
| env: Mapping[str, str], | ||
| primary_env: str, | ||
| secondary_env: Optional[str] = None, | ||
| default: Optional[str] = None, | ||
| ) -> Optional[str]: | ||
| if cli_value is not None: | ||
| return cli_value | ||
|
|
||
| for var in (primary_env, secondary_env): | ||
| if not var: | ||
| continue | ||
| value = env.get(var) | ||
| if value not in (None, ""): | ||
| return value | ||
|
|
||
| return default | ||
|
|
||
|
|
||
| def _rows_to_csv(rows, fieldnames): | ||
| buff = io.StringIO() | ||
| writer = csv.DictWriter(buff, fieldnames=fieldnames) | ||
| writer.writeheader() | ||
| for row in rows: | ||
| writer.writerow(row) | ||
| return buff.getvalue() | ||
|
|
||
|
|
||
| def _rows_to_pretty(rows, fieldnames): | ||
| if not rows: | ||
| return "(0 rows)" | ||
|
|
||
| widths = {name: len(name) for name in fieldnames} | ||
| for row in rows: | ||
| for name in fieldnames: | ||
| widths[name] = max(widths[name], len(str(row.get(name, "")))) | ||
|
|
||
| header = " | ".join(name.ljust(widths[name]) for name in fieldnames) | ||
| sep = "-+-".join("-" * widths[name] for name in fieldnames) | ||
| lines = [header, sep] | ||
| for row in rows: | ||
| lines.append(" | ".join(str(row.get(name, "")).ljust(widths[name]) for name in fieldnames)) | ||
| return "\n".join(lines) | ||
|
|
||
|
|
||
| def _rows_to_json(rows, fieldnames): | ||
| return json.dumps(rows, default=str) | ||
|
|
||
|
|
||
| def _rows_to_jsonl(rows, fieldnames): | ||
| if not rows: | ||
| return "" | ||
| return "\n".join(json.dumps(row, default=str) for row in rows) | ||
|
|
||
|
TheTrueAI marked this conversation as resolved.
|
||
|
|
||
| _FORMATTERS = { | ||
| "json": _rows_to_json, | ||
| "jsonl": _rows_to_jsonl, | ||
| "csv": _rows_to_csv, | ||
| "pretty": _rows_to_pretty, | ||
| } | ||
|
|
||
|
|
||
| def _is_ns_timestamp(field_type) -> bool: | ||
| return pa.types.is_timestamp(field_type) and field_type.unit == "ns" | ||
|
|
||
|
|
||
| def _coerce_timestamps(table: pa.Table) -> tuple[pa.Table, bool]: | ||
| # Python datetime only supports microsecond precision, so to_pylist truncates ns | ||
| # timestamps anyway; cast explicitly with safe=False to acknowledge the precision loss. | ||
| if not any(_is_ns_timestamp(field.type) for field in table.schema): | ||
| return table, False | ||
| new_fields = [ | ||
| pa.field(field.name, pa.timestamp("us", tz=field.type.tz)) | ||
| if _is_ns_timestamp(field.type) | ||
| else field | ||
| for field in table.schema | ||
| ] | ||
| return table.cast(pa.schema(new_fields), safe=False), True | ||
|
|
||
|
|
||
| def _format_table(table: pa.Table, output_format: str, stderr=None) -> str: | ||
| table, coerced = _coerce_timestamps(table) | ||
| if coerced and stderr is not None: | ||
| stderr.write( | ||
| "Warning: nanosecond precision timestamps truncated to microseconds for display.\n" | ||
| ) | ||
| rows = table.to_pylist() | ||
| fieldnames = table.schema.names | ||
| return _FORMATTERS[output_format](rows, fieldnames) | ||
|
|
||
|
|
||
| def _ensure_trailing_nl(text: str) -> str: | ||
| if not text: | ||
| return "" | ||
| return text if text.endswith("\n") else text + "\n" | ||
|
|
||
|
|
||
| def _write_error(stderr, message: str): | ||
| stderr.write(json.dumps({"error": str(message)}) + "\n") | ||
|
|
||
|
|
||
| def build_parser() -> argparse.ArgumentParser: | ||
| parser = argparse.ArgumentParser(prog="influx3", description="InfluxDB 3 query CLI") | ||
| subparsers = parser.add_subparsers(dest="command", required=True) | ||
|
|
||
| query_parser = subparsers.add_parser("query", aliases=["q"], help="Run a SQL or InfluxQL query") | ||
| query_parser.add_argument("query", nargs="?", help="The query string to execute") | ||
| query_parser.add_argument("-f", "--file", dest="file_path", help="File containing the query") | ||
| query_parser.add_argument("-H", "--host", dest="host", help="InfluxDB host URL") | ||
| query_parser.add_argument("-d", "--database", dest="database", help="Database name") | ||
| query_parser.add_argument("--token", dest="token", help="Authentication token") | ||
| query_parser.add_argument( | ||
| "-l", | ||
| "--language", | ||
| dest="language", | ||
| choices=["sql", "influxql"], | ||
| default="sql", | ||
| help="Query language", | ||
| ) | ||
| query_parser.add_argument( | ||
| "--format", | ||
| dest="output_format", | ||
| choices=list(_FORMATTERS), | ||
| default="json", | ||
| help="Output format", | ||
| ) | ||
| query_parser.add_argument("-o", "--output", dest="output_file_path", help="Write output to file") | ||
| query_parser.add_argument("--query-timeout", dest="query_timeout", type=int, help="Query timeout in ms") | ||
| query_parser.set_defaults(func=_run_query) | ||
| return parser | ||
|
|
||
|
|
||
| def _run_query(args, stdout, stderr, env: Optional[Mapping[str, str]] = None) -> int: | ||
| if env is None: | ||
| env = os.environ | ||
|
|
||
|
karel-rehor marked this conversation as resolved.
|
||
| host = _resolve_option(args.host, env, "INFLUXDB3_HOST_URL", INFLUX_HOST, "http://127.0.0.1:8181") | ||
| database = _resolve_option(args.database, env, "INFLUXDB3_DATABASE_NAME", INFLUX_DATABASE) | ||
| token = _resolve_option(args.token, env, "INFLUXDB3_AUTH_TOKEN", INFLUX_TOKEN) | ||
|
|
||
| if (args.query is None) == (args.file_path is None): | ||
| _write_error(stderr, "Provide exactly one of query or --file.") | ||
| return 1 | ||
|
|
||
| if not database: | ||
| _write_error(stderr, "Database is required. Set --database or INFLUXDB3_DATABASE_NAME.") | ||
| return 1 | ||
|
|
||
| if args.query_timeout is not None and args.query_timeout < 0: | ||
| _write_error(stderr, "--query-timeout must be non-negative.") | ||
| return 1 | ||
|
|
||
| try: | ||
| query = args.query | ||
| if args.file_path: | ||
| with open(args.file_path, "r", encoding="utf-8") as file_handle: | ||
| query = file_handle.read() | ||
|
|
||
| query_kwargs = {} | ||
| if args.query_timeout is not None: | ||
| query_kwargs["query_timeout"] = args.query_timeout | ||
|
|
||
|
TheTrueAI marked this conversation as resolved.
|
||
| with InfluxDBClient3(host=host, database=database, token=token, **query_kwargs) as client: | ||
| table = client.query( | ||
| query=query, | ||
| language=args.language, | ||
| mode="all", | ||
| database=database, | ||
| ) | ||
|
|
||
| payload = _ensure_trailing_nl(_format_table(table, args.output_format, stderr=stderr)) | ||
| if args.output_file_path: | ||
| with open(args.output_file_path, "w", encoding="utf-8", newline="") as file_handle: | ||
| file_handle.write(payload) | ||
| else: | ||
| stdout.write(payload) | ||
|
TheTrueAI marked this conversation as resolved.
|
||
| return 0 | ||
| except (InfluxDB3ClientQueryError, InfluxDBError, OSError, pa.ArrowException) as error: | ||
| _write_error(stderr, str(error)) | ||
| return 1 | ||
|
|
||
|
|
||
| def main(argv=None) -> int: | ||
| parser = build_parser() | ||
| args = parser.parse_args(argv) | ||
| return args.func(args, sys.stdout, sys.stderr) | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| raise SystemExit(main()) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.