You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/03/03 14:37:00 UTC

[avro] branch master updated (9cd3c0e -> 5c1f440)

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

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git.


    from 9cd3c0e  Bump grpc.version from 1.44.0 to 1.44.1 in /lang/java (#1572)
     add 5c1f440  AVRO-3416: Benchmarking project for C# (#1566)

No new revisions were added by this update.

Summary of changes:
 lang/csharp/Avro.sln                               |  15 +-
 lang/csharp/README.md                              |   1 +
 lang/csharp/src/apache/benchmark/.gitignore        |   1 +
 .../Avro.benchmark.csproj}                         |  30 ++-
 lang/csharp/src/apache/benchmark/Benchmarks.cs     | 254 +++++++++++++++++++++
 .../src/apache/benchmark/Program.cs}               |  19 +-
 .../apache/avro/benchmark/big/mailing_address.cs}  |  78 +++++--
 .../org/apache/avro/benchmark/big/userInfo.cs      | 128 +++++++++++
 .../org/apache/avro/benchmark/small/test.cs}       |  24 +-
 lang/csharp/src/apache/benchmark/schema/big.avsc   |  62 +++++
 lang/csharp/src/apache/benchmark/schema/small.avsc |  13 ++
 lang/csharp/versions.props                         |   3 +-
 12 files changed, 576 insertions(+), 52 deletions(-)
 create mode 100644 lang/csharp/src/apache/benchmark/.gitignore
 copy lang/csharp/src/apache/{perf/Avro.perf.csproj => benchmark/Avro.benchmark.csproj} (66%)
 create mode 100644 lang/csharp/src/apache/benchmark/Benchmarks.cs
 copy lang/{java/maven-plugin/src/test/avro/AvdlClasspathImport.avdl => csharp/src/apache/benchmark/Program.cs} (69%)
 copy lang/csharp/src/apache/{test/Specific/ComplexTypeWithReservedWords.cs => benchmark/org/apache/avro/benchmark/big/mailing_address.cs} (51%)
 create mode 100644 lang/csharp/src/apache/benchmark/org/apache/avro/benchmark/big/userInfo.cs
 copy lang/csharp/src/apache/{test/Specific/EmbeddedGenericRecordUser.cs => benchmark/org/apache/avro/benchmark/small/test.cs} (77%)
 create mode 100644 lang/csharp/src/apache/benchmark/schema/big.avsc
 create mode 100644 lang/csharp/src/apache/benchmark/schema/small.avsc