kafka-connect-fs
kafka-connect-fs copied to clipboard
Connect windows server with a ip and port
I need help with the connector. I'm trying to make a simple source but the file is on a windows server (I have the IP and the access port). I'm trying to do the following
Path in windows is: C://Test/me.txt
"fs.uris": "file:///<my_ip>:<my_port>/Test",
"policy.regexp": ".*",
...
In the interpretation I had reading the documentation, it was to read all the files inside the directory ""
I'm using SimplePolicy and reader class TextFilereader
The error I'm getting seeing the connector log is that the file doesn't exist.
I already did a check to see the directory and everything is ok.
Can anyone help?