clean up integration test (#92)

* clean up integration test

* disable game

* disable general/rest

* fix integration test for group

* fix integration test for multi-registry

* add run config for multi-registry

* more run configs and README enhancement

* disable multi-registry

* fix build issue

* increase etcd connection timeout

* enhance docker-compose

* disable etcd from integration test

* disable registry/nacos

* enhance integraton tests

* enhance integration test

* disable consul and etcd

* disable servicediscovery/etcd

* disable tls
45 files changed
tree: 83398f4910f55c7dbe793f0eff1280ab226d6c71
  1. .github/
  2. .images/
  3. .run/
  4. async/
  5. attachment/
  6. build/
  7. chain/
  8. config-api/
  9. configcenter/
  10. context/
  11. direct/
  12. docker/
  13. filter/
  14. game/
  15. general/
  16. generic/
  17. group/
  18. helloworld/
  19. metric/
  20. multi-registry/
  21. multi-zone/
  22. registry/
  23. router/
  24. seata/
  25. shopping-order/
  26. tls/
  27. tracing/
  28. .asf.yaml
  29. .gitignore
  30. ci.sh
  31. go.mod
  32. go.sum
  33. HOWTO.md
  34. HOWTO_zh.md
  35. integrate_test.sh
  36. LICENSE
  37. README.md
  38. README_zh.md
  39. start_integrate_test.sh
README.md

Dubbo Golang Examples

CI

What It Contains

  • async: An async example.
  • attachment: An attachment example, to show how to use attachment to pass user data from the client to the server.
  • chain: Show an example of calling chain
  • config-api: Use API to config Dubbo-go
  • configcenter: Uses of different config centers, including zookeeper, apollo and nacos at present.
  • context: Use context
  • direct: A direct invocation example
  • docker: Use Docker to package and run Dubbo-go application
  • filter: Some examples of different filter, including custom_filter and tpslimit
  • game: game service example
  • general: A general example
  • generic: A generic invocation example
  • group: Service group
  • helloworld: A 101 example
  • metric: Enable metrics in Dubbo-go application
  • multi-registry: Register services to different registry centers
  • multi-zone: Call Dubbo services from different zones
  • multi_registry: A multi-registry example
  • registry: uses of different registres, including kubernetes, nacos, etcd and service-discovery
  • router: router examples, including condition and tag
  • seata: A seata example
  • shopping-center: A complete shopping sample
  • tls: Use TLS in Dubbo-go application
  • tracing: tracing example

How To Run

Pls. refer How To Run for the instructions.

How to contribute

If you want to add more samples, pls. read on:

  1. Create new sub directory and give it an appropriate name for your new sample. Pls. follow the layout of the existing sample if you are not sure how to organize your code.
  2. Make sure your sample work as expected before submit PR, and make sure GitHub CI passes after PR is submitted. Pls. refer to the existing sample on how to test the sample.
  3. Pls. provide README.md to explain your samples.