GoDFT – Go Data Flow Tunnel

Summary

Project NameGoDFT [Go Data Flow Tunnel]
UsageSimple data transfer and management
Source Code https://github.com/webhkp/godft

Usage

my-mongo-input:
  driver: mongo
  connection: mongodb://webhkp:mysecretpass@localhost:27017/?maxPoolSize=20&w=majority
  database: bigboxcode
  collection:
    customer:
      limit: 4
      sort:
        age: -1
      field:
        - address.city
        - age
        - name
    product:
      limit: 10
      sort:
        id: -1
    order:
        field:
           - price
           - customer
           - quantity
        sort:
          price: 1
          quantity: -10
        limit: 22
           
json-child:
  driver: json
  input: my-mongo-input
  outputPath: ./docs/testres/
  readOnly: false
  inputPath:
    - ./docs/testres/
    - ./docs/order_sample.json