Ilya Averyanov 5f32d4cbd8 chore(mongo): reduce test flackyness пре 4 година
..
etc 6903997b94 feat(connector): add new option 'mode' to mqtt connectors пре 4 година
include 178bafbabf chore: rename required function to not_empty пре 4 година
src 5f32d4cbd8 chore(mongo): reduce test flackyness пре 4 година
test 14630568d6 feat: create tests for connector pgsql module and refactoring пре 4 година
.gitignore 54dedc8343 Revert "chore: mv emqx_connector to emqx_data_bridge" пре 4 година
README.md 052bd9081d docs(schema): Fix typos in the schema files пре 4 година
rebar.config 6572785907 Merge pull request #6712 from tigercl/fix/pgsql пре 4 година

README.md

emqx_connector

This application is a collection of connectors.

A connector is a callback module of emqx_resource that maintains the data related to external resources. Put all resource related callback modules in a single application is good as we can put some util functions/modules here for reusing purpose.

For example, a MySQL connector is an emqx resource that maintains all the MySQL connection related parameters (configs) and the TCP connections to the MySQL server.

An MySQL connector can be used as following:

(emqx@127.0.0.1)5> emqx_resource:list_instances_verbose().
[#{config =>
       #{auto_reconnect => true,cacertfile => [],certfile => [],
         database => "mqtt",keyfile => [],password => "public",
         pool_size => 1,
         server => {{127,0,0,1},3306},
         ssl => false,user => "root",verify => false},
   id => <<"mysql-abc">>,mod => emqx_connector_mysql,
   state => #{poolname => 'mysql-abc'},
   status => started}]
(emqx@127.0.0.1)6> emqx_resource:query(<<"mysql-abc">>, {sql, <<"SELECT count(1)">>}).
{ok,[<<"count(1)">>],[[1]]}