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/10 06:36:38 UTC

[incubator-pegasus] branch master updated (fbed9a13 -> 3dfc3658)

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 fbed9a13 Merge pull request #964 from cauchy1988/merge-java-client
     new 719f39c8 add README
     new fee58d62 first checkin
     new 3f8e4cef add example in readme
     new 32f7d012 define a serializer trait for convenient use
     new 61fa1c6c update async
     new 51327a9b del hashKey before testing
     new d862b842 any ref serializer
     new 98083722 use 1.11.2-thrift-0.11.0-inlined
     new 27617dd4 support incr
     new 932c7613 remove src/main/scala/com/xiaomi/infra/pegasus/scalaclient/AnyRefSerializer.scala
     new 5121fef0 Merge pull request #1 from XiaoMi/github
     new ed650276 update build config and add test (#2)
     new 8498aa11 fix: update create client api for lastest java client version (#5)
     new 88491ed7 feat: support open table with `tableOptions`  (#6)
     new ec278866 fix: update git action ci (#7)
     new c1ea4f41 chore: prepare to merge into incubator-pegasus (#8)
     new 681f2a03 Merge pegasus-scala-client repo
     new 0db87f70 scala client conform to  apache style
     new 3dfc3658 Merge pull request #966 from XiaoMi/pegasus-scala-client

The 914 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:
 ...{test_java-client.yml => test_scala-client.yml} |   8 +-
 .gitignore                                         |  14 +
 README.md                                          |   2 +-
 scala-client/README.md                             |  55 ++++
 scala-client/build.sbt                             |  59 ++++
 .../project/build.properties                       |   7 +-
 .../project/plugins.sbt                            |   4 +-
 {java-client => scala-client}/scripts/ci-test.sh   |  28 +-
 .../scripts/format-all.sh                          |  10 +-
 .../org/apache/pegasus/scalaclient/Models.scala    |  73 +++++
 .../apache/pegasus/scalaclient/PegasusUtil.scala   | 150 ++++++++++
 .../scalaclient/ScalaPegasusAsyncTable.scala       | 182 ++++++++++++
 .../pegasus/scalaclient/ScalaPegasusClient.scala   | 261 +++++++++++++++++
 .../scalaclient/ScalaPegasusClientFactory.scala    |  29 +-
 .../pegasus/scalaclient/ScalaPegasusTable.scala    | 291 +++++++++++++++++++
 .../apache/pegasus/scalaclient/Serializer.scala    |  97 +++++++
 .../org/apache/pegasus/scalaclient/package.scala   |  65 +++++
 .../src/test/resources}/log4j.properties           |   6 +-
 .../src/test/resources/pegasus.properties          |  12 +-
 .../org/apache/pegasus/scalaclient/TableSpec.scala | 308 +++++++++++++++++++++
 20 files changed, 1608 insertions(+), 53 deletions(-)
 copy .github/workflows/{test_java-client.yml => test_scala-client.yml} (88%)
 create mode 100644 scala-client/README.md
 create mode 100644 scala-client/build.sbt
 copy src/geo/CMakeLists.txt => scala-client/project/build.properties (91%)
 copy src/test/kill_test/killer_registry.h => scala-client/project/plugins.sbt (93%)
 copy {java-client => scala-client}/scripts/ci-test.sh (70%)
 copy src/redis_protocol/CMakeLists.txt => scala-client/scripts/format-all.sh (86%)
 mode change 100644 => 100755
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/Models.scala
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/PegasusUtil.scala
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/ScalaPegasusAsyncTable.scala
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/ScalaPegasusClient.scala
 copy java-client/src/main/java/org/apache/pegasus/client/FilterType.java => scala-client/src/main/scala/org/apache/pegasus/scalaclient/ScalaPegasusClientFactory.scala (64%)
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/ScalaPegasusTable.scala
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/Serializer.scala
 create mode 100644 scala-client/src/main/scala/org/apache/pegasus/scalaclient/package.scala
 copy {java-client/configuration => scala-client/src/test/resources}/log4j.properties (97%)
 copy .gitmodules => scala-client/src/test/resources/pegasus.properties (79%)
 create mode 100644 scala-client/src/test/scala/org/apache/pegasus/scalaclient/TableSpec.scala


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