pgproxy

command module
v0.0.0-...-e19ae27 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2017 License: Apache-2.0 Imports: 1 Imported by: 0

README

pgproxy

pgproxy

Build Status codecov GoDoc Code Health Code Issues Go Report Card License

pgproxy is a postgresql proxy server, through a pipe redirect connection, which allows you to filter the requested sql statement. In the future it will support multi-database backup, adapt to distributed databases and other schemes except the analyze sql statement.

You can do:

  • database read and write separation
  • database services disaster recovery
  • proxy database
  • rewrite sql statement
  • filter dangerous sql
  • monitor database operations
  • sql requests current limit and merge

Installation

$ go get -u github.com/wgliang/pgproxy

Using

As a separate application

Start or shut down the proxy server.

$ pgproxy start/stop

Use pgproxy on the command line

$ pgproxy cli

Ps: You can use it as you would with a native command line.

Be called as a package

package_example

package main

import (
	"fmt"
	"os"
	"os/signal"
	"syscall"

	"github.com/wgliang/pgproxy/cli"
)

func main() {
	// call proxy
	cli.Main("../pgproxy.conf", []string{"pgproxy", "start"})
	
	// 捕获ctrl-c,平滑退出
	chExit := make(chan os.Signal, 1)
	signal.Notify(chExit, syscall.SIGINT, syscall.SIGTERM, syscall.SIGKILL)
	select {
	case <-chExit:
		fmt.Println("Example EXITING...Bye.")
	}
}

Support

select/delete/update statement and support any case.

On the support of the sql standard:

The parser is forked from vitess's sqlparser of youtube.

In pgproxy, database tables are like MySQL(5.6,5.7) relational tables, and you can use relational modeling schemes (normalization) to structure your schema. It supports almost all MySQL(5.6,5.7) scalar data types. It also provides full SQL support within a shard, including JOIN statements. Some postgresql operations are not supported,detail see support type and keywords.

Credits

Package parser is based on sqlparser

Documentation

Overview

Program pgproxy is a proxy-server to database PostgreSQL.

Directories

Path Synopsis
Package cli provides virtual command-line access in pgproxy include start,cli and stop action.
Package cli provides virtual command-line access in pgproxy include start,cli and stop action.
examples
Package parser provides filtering rules if you need.
Package parser provides filtering rules if you need.
dependency/bson
Package bson implements encoding and decoding of BSON objects.
Package bson implements encoding and decoding of BSON objects.
dependency/bytes2
Package bytes2 provides alternate implementations of functionality similar to go's bytes package.
Package bytes2 provides alternate implementations of functionality similar to go's bytes package.
dependency/hack
Package hack gives you some efficient functionality at the cost of breaking some Go rules.
Package hack gives you some efficient functionality at the cost of breaking some Go rules.
dependency/sqltypes
Package sqltypes implements interfaces and types that represent SQL values.
Package sqltypes implements interfaces and types that represent SQL values.
Package proxy provides proxy service and redirects requests form proxy.Addr to remote.Addr.
Package proxy provides proxy service and redirects requests form proxy.Addr to remote.Addr.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL