You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pegasus.apache.org by la...@apache.org on 2022/05/26 07:10:26 UTC

[incubator-pegasus] branch master updated (0c834d9c -> be563437)

This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


    from 0c834d9c chore(go-client): Use apache instead of xiaomi in urls (#981)
     add ba15dff3 first commit
     add 61b1a1be nodejs client simple function commit
     add fd8ae635 1.update README and comments; 2.rename tableHandler; 3.fix bug while rpc error is INVALID_DATA and UNKNOWN
     add b43d7b09 1. move bunyan from devDepedency to dependency; 2. add package-lock.json; 3. change interface consistent with Java client, and update comments, test and README; 4.change log configuration
     add 9844cd53 disable rotating-file in logging library
     add e7be2e58 add param type check and fix timeout bug
     add 536e7200 fix connect emit error event
     add 2f81d5ab change operations inside batch from sync to async
     add fdb512c6 update version to 1.0.4
     add 50bb6e87 1. change batch interface to async using promise; 2.fix rt linear growth bug
     add 2c24c084 try to fix reconnect to replica and meta
     add 58563c7f remove comments
     add 0ccaf2ed 1.0.7
     add d4ab667e update log libary from bunyan to log4js
     add 1c8d2e86 1.enable client to config log and add test; 2.change some log level from debug to info; 3.update dependency
     add 8275867b 1.0.9
     add 7ec10869 change config log4js from import log module from json file
     add f1badb14 fix bug - can not get json config while using default log config
     add 781a80a3 fix lots of timeout bug and change default log config
     add 3c87484a update client unit test
     add 15b536fc formart code
     add 177d897d fix bug - repeated cluster replica session
     add 8fd72070 change getConnection from sync to async
     add d0c4ff77 remove some comments and refactor logs
     add afdbe8ca remove useless try code
     add 48d80bed update queryMeta - distinguish different table query meta state and add queryMeta delay time
     add 8086108e remove useless comments and update README
     add 2779332c Merge pull request #1 from hycdong/async_connection
     add 9faa98b5 update dependeny version
     add ff70ebb1 1.0.13
     add f2525afc fix bug in reconect meta session
     add 67dd58b4 Merge pull request #2 from hycdong/async_connection
     add df0a006a 1.0.14
     add 7f9799f7 update dependencies version to aviod potential security vulnerabilities
     add 04a5c6b1 Merge pull request #4 from hycdong/master
     add 3dd8fcb3 fix meta session reconnection bug
     add 70228d8e Merge pull request #6 from hycdong/master
     add 7ee57285 fill correct partition_hash in thrift header
     add 31025f35 Merge pull request #7 from hycdong/master
     add 74c72219 update dependencies version to aviod potential security vulnerabilities
     add e55af018 Merge pull request #8 from hycdong/master
     add adf23223 remove package-lock.json file to avoid useless alert
     add a8bd3e50 Merge pull request #9 from hycdong/json-lock
     add cb21cfd9 remove package-lock.json
     add 6657479a Merge pull request #10 from hycdong/json-lock
     add 48f42293 feat(split): adapt partition split
     add 609567be feat(split): adapt partition split
     add 76349482 prepare to merge into incubator-pegasus
     add 9c9002e3 prepare to merge into incubator-pegasus
     add 88bac6e6 fix README
     add 85fb64f9 refactor: prepare to merge into incubator-pegasus
     add 51cfa7a8 chore(nodejs-client): Merge nodejs-client from XiaoMi/pegasus-nodejs-client
     add d461e251 chore(nodejs-client): Merge nodejs-client from XiaoMi/pegasus-nodejs-client: adapt changes
     new be563437 chore(nodejs-client): Merge nodejs-client from XiaoMi/pegasus-nodejs-client

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    5 +
 .licenserc.yaml                                    |    2 +
 .../utils.h => nodejs-client/.eslintrc.js          |   28 +-
 nodejs-client/.npmigonre                           |    1 +
 nodejs-client/README.md                            |  240 ++
 {python-client => nodejs-client}/idl/base.thrift   |    3 +-
 .../idl/recompile_thrift.sh                        |   35 +-
 nodejs-client/idl/replication.thrift               |  226 ++
 nodejs-client/idl/rrdb.thrift                      |  170 ++
 .../idl/base.thrift => nodejs-client/index.js      |   15 +-
 .../drop_table.go => nodejs-client/log_config.js   |   22 +-
 nodejs-client/package.json                         |   38 +
 nodejs-client/src/client.js                        |  327 +++
 nodejs-client/src/connection.js                    |  406 +++
 nodejs-client/src/dsn/base_types.js                |  291 ++
 nodejs-client/src/dsn/meta.js                      | 1956 ++++++++++++++
 nodejs-client/src/dsn/replication_types.js         | 2767 ++++++++++++++++++++
 nodejs-client/src/dsn/rrdb.js                      | 2072 +++++++++++++++
 nodejs-client/src/dsn/rrdb_types.js                | 1564 +++++++++++
 nodejs-client/src/errors.js                        |  128 +
 nodejs-client/src/operator.js                      |  486 ++++
 nodejs-client/src/session.js                       |  471 ++++
 nodejs-client/src/table_handler.js                 |  579 ++++
 nodejs-client/src/tools.js                         |  170 ++
 nodejs-client/test/client.test.js                  |  335 +++
 25 files changed, 12280 insertions(+), 57 deletions(-)
 copy src/test/bench_test/utils.h => nodejs-client/.eslintrc.js (71%)
 create mode 100644 nodejs-client/.npmigonre
 create mode 100644 nodejs-client/README.md
 copy {python-client => nodejs-client}/idl/base.thrift (93%)
 copy scripts/clear_zk.sh => nodejs-client/idl/recompile_thrift.sh (69%)
 create mode 100644 nodejs-client/idl/replication.thrift
 create mode 100644 nodejs-client/idl/rrdb.thrift
 copy go-client/idl/base.thrift => nodejs-client/index.js (89%)
 copy admin-cli/executor/drop_table.go => nodejs-client/log_config.js (74%)
 create mode 100644 nodejs-client/package.json
 create mode 100644 nodejs-client/src/client.js
 create mode 100644 nodejs-client/src/connection.js
 create mode 100644 nodejs-client/src/dsn/base_types.js
 create mode 100644 nodejs-client/src/dsn/meta.js
 create mode 100644 nodejs-client/src/dsn/replication_types.js
 create mode 100644 nodejs-client/src/dsn/rrdb.js
 create mode 100644 nodejs-client/src/dsn/rrdb_types.js
 create mode 100644 nodejs-client/src/errors.js
 create mode 100644 nodejs-client/src/operator.js
 create mode 100644 nodejs-client/src/session.js
 create mode 100644 nodejs-client/src/table_handler.js
 create mode 100644 nodejs-client/src/tools.js
 create mode 100644 nodejs-client/test/client.test.js


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pegasus.apache.org
For additional commands, e-mail: commits-help@pegasus.apache.org


[incubator-pegasus] 01/01: chore(nodejs-client): Merge nodejs-client from XiaoMi/pegasus-nodejs-client

Posted by la...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git

commit be56343717012a2258e6e9947f9851e723bc4b1f
Merge: 0c834d9c d461e251
Author: Yingchun Lai <la...@apache.org>
AuthorDate: Thu May 26 15:10:20 2022 +0800

    chore(nodejs-client): Merge nodejs-client from XiaoMi/pegasus-nodejs-client

 .gitignore                                 |    5 +
 .licenserc.yaml                            |    2 +
 nodejs-client/.eslintrc.js                 |   36 +
 nodejs-client/.npmigonre                   |    1 +
 nodejs-client/README.md                    |  240 +++
 nodejs-client/idl/base.thrift              |   42 +
 nodejs-client/idl/recompile_thrift.sh      |   40 +
 nodejs-client/idl/replication.thrift       |  226 +++
 nodejs-client/idl/rrdb.thrift              |  170 ++
 nodejs-client/index.js                     |   24 +
 nodejs-client/log_config.js                |   27 +
 nodejs-client/package.json                 |   38 +
 nodejs-client/src/client.js                |  327 ++++
 nodejs-client/src/connection.js            |  406 ++++
 nodejs-client/src/dsn/base_types.js        |  291 +++
 nodejs-client/src/dsn/meta.js              | 1956 ++++++++++++++++++++
 nodejs-client/src/dsn/replication_types.js | 2767 ++++++++++++++++++++++++++++
 nodejs-client/src/dsn/rrdb.js              | 2072 +++++++++++++++++++++
 nodejs-client/src/dsn/rrdb_types.js        | 1564 ++++++++++++++++
 nodejs-client/src/errors.js                |  128 ++
 nodejs-client/src/operator.js              |  486 +++++
 nodejs-client/src/session.js               |  471 +++++
 nodejs-client/src/table_handler.js         |  579 ++++++
 nodejs-client/src/tools.js                 |  170 ++
 nodejs-client/test/client.test.js          |  335 ++++
 25 files changed, 12403 insertions(+)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pegasus.apache.org
For additional commands, e-mail: commits-help@pegasus.apache.org