Skip to content

komamitsu/embulk-plugin-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Embulk input plugin for Redis

Generic

Overview

  • Plugin type: input
  • Resume supported: no

Configuration

  • host: Hostname of the Redis server (string, default: "localhost")
  • port: Port of the Redis server (integer, default: 6379)
  • db: Database number (integer, default: 0)
  • key_prefix: Key prefix for input/output plugin (string, default:"")
  • encode: Encoding in Redis (string, default: "json")
  • json: Stored as a JSON string. GET/SET commands can access it
  • hash: Stored as a Hash. H* commands such as HMGET/HMSET can access it
  • columns: Hash records that has the following two fields (array, default:[])
  • name: Name of the column
  • type: Column types as follows
    • boolean
    • long
    • double
    • string
    • timestamp

Example

in:
  type: redis
  host: localhost
  port: 6379
  db: 0
  key_prefix: user_
  encode: json
  columns:
  - {name: id, type: long}
  - {name: account, type: long}
  - {name: time, type: timestamp}
  - {name: purchase, type: timestamp}
  - {name: comment, type: string}
  - {name: admin, type: boolean}

Embulk output plugin for Redis

Generic

Overview

  • Plugin type: output
  • Resume supported: no

Configuration

  • host: Hostname of the Redis server (string, default: "localhost")
  • port: Port of the Redis server (integer, default: 6379)
  • db: Database number (integer, default: 0)
  • key_prefix: Key prefix for input/output plugin (string, default:"")
  • encode: Encoding in Redis (string, default: "json")
  • json: Stored as a JSON string. GET/SET commands can access it
  • hash: Stored as a Hash. H* commands such as HMGET/HMSET can access it
  • key: Column name used for a key in Redis (string, required)

Example

out:
  type: redis
  host: localhost
  port: 6379
  db: 0
  key: id
  key_prefix: user_
  encode: json

About

Embulk input/output plugin for Redis

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages