Databases and JDBC

Ingest Meters from a JDBC Enabled Source

Using metering data from an existing JDBC source is very common. Many repositories support JDBC (MongoDB, Elasticsearch, MySQL, Postgres, and many more)

There are several ways to do so:

  1. Use our SDKs (https://amberflo.readme.io/docs/sdks) to write the code that reads the data from the JDBC source and loads it into Amberflo. We have multiple samples for different languages such as Python and Javascript. https://github.com/amberflo/metering-python-sample
  2. Use a local agent (like logstash) and use its JDBC plugin to upload to S3 (https://amberflo.readme.io/docs/logstash)
  3. Use an ETL tool that can push data into S3 and Amberflo will pick it up from there. https://amberflo.readme.io/docs/s3-ingestion
744