Skip to content
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

Connector: InfluxDB3 Source #788

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft

Connector: InfluxDB3 Source #788

wants to merge 6 commits into from

Conversation

tim-quix
Copy link
Contributor

@tim-quix tim-quix commented Mar 14, 2025

Example use:

from quixstreams.sources.community.influxdb3 import InfluxDB3Source
from quixstreams import Application
import datetime
import uuid

source = InfluxDB3Source(
    host="http://localhost:8181",
    organization_id='abc123',
    database="connector5",
    token='123',
    start_date=datetime.datetime.now(tz=datetime.timezone.utc) - datetime.timedelta(days=2),
    end_date=datetime.datetime.now(tz=datetime.timezone.utc),
    time_delta='24h',
    max_retries=2,
)

app = Application(
    broker_address="localhost:9092",
    consumer_group=str(uuid.uuid4()),
)
sdf = app.dataframe(source=source).print(metadata=True)


if __name__ == '__main__':
    app.run()

@tim-quix
Copy link
Contributor Author

Currently blocked, awaiting Tomas feedback.

@tim-quix
Copy link
Contributor Author

tim-quix commented Mar 19, 2025

The cleanup is complete, only need to add docs now. I have tested it and it works.

A few other questions:

  1. Do we want to add key, value, and timestamp setters? Seems like something we should have, especially since the message key is just the name of the measurement + randint(1, 1000)
  2. Do we need the messages per second tracker that Tomas added in the newest version?
  3. Do we want to allow users to specify more frequent queries when there's no end_date and its caught up?
  4. Should we have the added measurement name field added to the data be called _measurement_name rather than measurement_name?

Besides these questions, just need to add connector docs and should be good.

@tim-quix
Copy link
Contributor Author

tim-quix commented Apr 2, 2025

@tomas-quix

Do we need the messages per second tracker that Tomas added in the newest version?
Do we want to allow users to specify more frequent queries when there's no end_date and its caught up? Right now it sleeps a long while when it could be more up-to-date

Otherwise I believe this is good to go, please have a look. I only added some minor things like a key setter and being able to name the outgoing measurement_name column (default _measurement_name)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant