Skip to content

anelendata/target-couchbase

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
bin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

target-couchbase

target-couchbase

What is it

This is a Singer target that loads JSON-formatted data following the Singer spec to Couchbase Server.

Install

First, make sure Python 3.6 or higher is installed on your system or follow these installation instructions for Mac or Ubuntu.

pip install -U couchbase
pip install -U target-couchbase

Or you can install the lastest development version from GitHub:

pip install -U couchbase
pip install --no-cache-dir https://github.com/anelendata/target-couchbase/archive/master.tar.gz#egg=target-couchbase

Note: Please refer to Couchbase documentation for the details of installation of couchbase Python SDK.

Run

Step 1: Configure

Create a file called target_config.json in your working directory, following this sample:

{
    "cluster": "{{ your-couchbase-server.com }}:8091",
    "username": "{{ couchbase_username }}",
    "password": "{{ couchbase_password }}",
    "bucket": "{{ your-bucket-name }}"
}

Step 2: Run

target-bigquery can be run with any Singer Target. As example, let use tap-exchangeratesapi.

pip install tap-exchangeratesapi

And create tap_config.json that looks like:

{
    "base": "USD",
    "start_date": "2021-01-11"
}

(Adjust your start date. 7 days ago is recommended for the test)

Run:

tap-exchangeratesapi -c tap_config.json | target-couchbase -c target_config.json

Original repository

About this project

This project is developed by ANELEN and friends. Please check out the ANELEN's open innovation philosophy and other projects

ANELEN

Copyright © 2021~ Anelen Co., LLC

About

Load the data to Couchbase via singer.io

Resources

Code of conduct

Stars

Watchers

Forks

Packages

No packages published