Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE #389] Support redis as event store #416

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b05cd72
Support connect to redis
jjz921024 Jun 17, 2021
889564a
stash
Jun 17, 2021
4b4c3fd
stash
Jun 20, 2021
3905834
spi
jjz921024 Jul 5, 2021
51b9672
[ISSUE #366 ] remove custom-format topic concept (#388)
iNanos Jun 17, 2021
9000aeb
[ISSUE #366] remove custom concept [dcn&&region] (#390)
iNanos Jun 21, 2021
3555f13
[ISSUE #391] Optimize interface design in eventmesh-connector-api (#392)
lrhkobe Jun 21, 2021
6910fed
miss group name set for userAgent (#395)
iNanos Jun 22, 2021
8eaa52b
[ISSUE #393]:perf topic name in test file (#394)
keranbingaa Jun 22, 2021
741cdfb
support unsubscribe topics while delconsumer in http mode (#396)
xwm1992 Jun 23, 2021
aedfd94
[ISSUE #397]Remove subscription session failed error (#398)
xwm1992 Jun 25, 2021
5f441be
[ISSUE #406] Github Actions: Resource not accessible by integration (…
SteveYurongSu Jun 30, 2021
b6b6346
[ISSUE #411] Enable CI workflows running on [0-9]+.[0-9]+.[0-9]+** br…
SteveYurongSu Jul 1, 2021
d28d64f
Update README.md
qqeasonchen Jul 6, 2021
e34c7b8
Update README.zh-CN.md
qqeasonchen Jul 6, 2021
a80055e
Merge 1.3.0 to develop. (#430)
dongzl Jul 12, 2021
f955369
[ISSUE #425] Using templates to encourage useful issues and PRs (#426)
SteveYurongSu Jul 12, 2021
ab3c444
fix ConfigurationWrapper typo (#437)
liutaohua Jul 15, 2021
78a324f
[ISSUE #438] Enable Github Actions for Checkstyle (#439)
SteveYurongSu Jul 16, 2021
f91c8dc
[ISSUE #436] Fix typo errors for runtime package (#441)
liutaohua Jul 16, 2021
20d817b
[ISSUE #428]Fix Chinese annotation (#431)
Roc-00 Jul 16, 2021
420c930
[ISSUE #367] Support prototype spi instance (#432)
ruanwenjun Jul 16, 2021
f6f855a
add test case. (#440)
tydhot Jul 16, 2021
18a5b7a
Delete sChat2.jks
qqeasonchen Jul 19, 2021
0d53c28
[ISSUE #442] Fix findings filtered by Checkstyle workflow (#443)
SteveYurongSu Jul 19, 2021
d4fcb89
[ISSUE #367] Refactor connector (#433)
ruanwenjun Jul 20, 2021
45a9861
Add files via upload
qqeasonchen Jul 21, 2021
c89fee0
Support connect to redis
jjz921024 Jun 17, 2021
fa3fd6e
rebase on develop branch
Jul 25, 2021
4aec6ad
rebase on develop branch
Jul 25, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
name: 🐛 Bug Report
about: If something isn't working as expected.
labels: 'bug'
---

## Bug Report

### Describe the bug
<!--
A clear and concise description of what the bug is.
-->

### Environment

- OS: [e.g. Ubuntu 21.04 LTS]
- EventMesh version(s): [e.g. 1.2.0]
- RocketMQ version(s): [e.g. 4.7.1]
- ...

### Steps to reproduce
<!--
Describe the steps to reproduce the bug here.
-->

### Expected behavior
<!--
A clear and concise description of what you expected to happen.
-->

### Debug logs
<!--
Add your debug logs here.
-->

<details>
<summary>Click to expand</summary>

```
replace this line with your debug logs
```
</details>
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation_related.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: ✏️ Documentation Related
about: I find some issues related to the documentation.
labels: 'doc'
---

## Documentation Related

<!--
Describe the issues here :D
-->
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: ✨ Enhancement Request
about: I want to suggest an enhancement for this project (and may want to implement it 🙂)!
labels: 'enhancement'
---

## Enhancement Request

<!--
First of all: Have you checked the docs https://github.com/apache/incubator-eventmesh/tree/develop/docs,
or GitHub issues whether someone else has already reported your issue?
-->

### Is your enhancement request related to a problem? Please describe

<!--
A clear and concise description of what the enhancement is.
-->

### Describe the solution you'd like

<!--
A clear and concise description of what you want to happen. Add any considered drawbacks.
-->

### Describe alternatives you've considered

<!--
A clear and concise description of any alternative solutions or features you've considered.
-->

### Additional context

<!--
Add any other context or screenshots about the enhancement request here.
-->
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: 🚀 Feature Request
about: I want to suggest a feature for this project (and may want to implement it 🙂)!
labels: 'feature'
---

## Feature Request

<!--
First of all: Have you checked the docs https://github.com/apache/incubator-eventmesh/tree/develop/docs,
or GitHub issues whether someone else has already reported your issue?
Maybe the feature already exists?
-->

### Is your feature request related to a problem? Please describe

<!--
A clear and concise description of what the problem is.
-->

### Describe the solution you'd like

<!--
A clear and concise description of what you want to happen. Add any considered drawbacks.
-->

### Describe alternatives you've considered

<!--
A clear and concise description of any alternative solutions or features you've considered.
-->

### Additional context

<!--
Add any other context or screenshots about the feature request here.
-->
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: 🤔 Question
about: I have a question that isn't answered in docs or discussions.
labels: 'question'
---

## Question

<!--
Describe your question here :D
-->
47 changes: 46 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1 +1,46 @@
#TBD
<!--
### Contribution Checklist

- Name the pull request in the form "[ISSUE #XXXX] Title of the pull request",
where *XXXX* should be replaced by the actual issue number.
Skip *[ISSUE #XXXX]* if there is no associated github issue for this pull request.

- Fill out the template below to describe the changes contributed by the pull request.
That will give reviewers the context they need to do the review.

- Each pull request should address only one issue.
Please do not mix up code from multiple issues.

- Each commit in the pull request should have a meaningful commit message.

- Once all items of the checklist are addressed, remove the above text and this checklist,
leaving only the filled out template below.

(The sections below can be removed for hotfixes of typos)
-->

<!--
(If this PR fixes a GitHub issue, please add `Fixes ISSUE#<XXX>`.)
-->

Fixes ISSUE#<XXXX>.

### Motivation

*Explain the content here.*
*Explain why you want to make the changes and what problem you're trying to solve.*



### Modifications

*Describe the modifications you've done.*



### Documentation

- Does this pull request introduce a new feature? (yes / no)
- If yes, how is the feature documented? (not applicable / docs / JavaDocs / not documented)
- If a feature is not applicable for documentation, explain why?
- If a feature is not documented yet in this PR, please create a followup issue for adding the documentation
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ on:
push:
branches:
- develop
- '[0-9]+.[0-9]+.[0-9]+**'
pull_request:
branches:
- develop
- '[0-9]+.[0-9]+.[0-9]+**'
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -69,6 +71,28 @@ jobs:
- name: Upload coverage report to codecov.io
run: bash <(curl -s https://codecov.io/bash) || echo 'Failed to upload coverage report!'

checkstyle:
name: Checkstyle

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Download checkstyle exectable
run: wget -O - -q https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.44/checkstyle-8.44-all.jar > ./checkstyle.jar

- name: Download reviewdog exectable
run: wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b . v0.12.0

- name: Check code style
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
java -jar ./checkstyle.jar -c ./style/checkStyle.xml -f xml ./eventmesh-* \
| ./reviewdog -f=checkstyle -reporter=github-pr-check -filter-mode=nofilter -fail-on-error

license-check:
name: License Check

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

name: Greetings

on: [pull_request, issues]
on: [pull_request_target, issues]

jobs:
greeting:
Expand Down
33 changes: 19 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,25 @@ The protocol of eventmesh is easier and more convenient, you can read more [here
| v1.0.0 |Support java-sdk , tcp pub/sub, http pub|
| v1.1.0 |Support RocketMQ as eventstore|
| v1.1.1 |Support https|
| v1.2.0 |Support EventMesh store layer pluggable by OpenMessaging Pub/Sub API, http sub, docker|
| V1.3.0 |Support CloudEvents, Event Streaming|
| |Support Event function,triggers and bindings|
| |Support Event orchestration, Servelss workflow|
| |Support Event transaction|
| |Support Event schema|
| |Support Event governance, dashboard|
| |Support Event security|
| |Support multi language SDK(c\go\python\wasm)|
| |Support Promethus as metrics|
| |Support Skywalking as tracing|
| |Support streaming event store|
| |Support gRPC protocol|
| |Support MQTT protocol|
| v1.2.0 |Support pluggable event store by OpenMessaging Pub/Sub API, http sub, docker|
| V1.3.0 |Support CloudEvents, event streaming|
| WIP |Support more pluggable event storage (Kafka, Pulsar, Redis, etc...)|
| WIP |Support Event schema|
| WIP |Support Event governance|
| WIP |Support Event function,triggers and bindings|
| WIP |Support Event orchestration, Servelss workflow|
| WIP |Support in-memory event store|
| WIP |Support Event transaction|
| WIP |Support Event security|
| WIP |Support multi language SDK(c\go\python\wasm)|
| WIP |Support metrics exporter|
| WIP |Support tracing exporter|
| WIP |Support at-least-once/at-most-once delivery guarantees|
| WIP |Support cold event storage (S3, Minio, SQL, key/value, etc...)|
| WIP |Support gRPC protocol|
| WIP |Support MQTT protocol|
| WIP |Support reactive fisrt|


## Quick Start
1. Build and deploy event-store(default RocketMQ), see [instruction](https://rocketmq.apache.org/docs/quick-start/).
Expand Down
32 changes: 18 additions & 14 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,24 @@ eventmesh的通信协议更加简洁方便,详细内容,阅读更多[这里]
| v1.0.0 |Support java-sdk , tcp pub/sub, http pub|
| v1.1.0 |Support RocketMQ as eventstore|
| v1.1.1 |Support https|
| v1.2.0 |Support EventMesh store layer pluggable by OpenMessaging Pub/Sub API, http sub, docker|
| V1.3.0 |Support CloudEvents, Event Streaming|
| |Support Event function,triggers and bindings|
| |Support Event orchestration, Servelss workflow|
| |Support Event transaction|
| |Support Event schema|
| |Support Event governance, dashboard|
| |Support Event security|
| |Support multi language SDK(c\go\python\wasm)|
| |Support Promethus as metrics|
| |Support Skywalking as tracing|
| |Support streaming event store|
| |Support gRPC protocol|
| |Support MQTT protocol|
| v1.2.0 |Support pluggable event store by OpenMessaging Pub/Sub API, http sub, docker|
| V1.3.0 |Support CloudEvents, event streaming|
| WIP |Support more pluggable event storage (Kafka, Pulsar, Redis, etc...)|
| WIP |Support Event schema|
| WIP |Support Event governance|
| WIP |Support Event function,triggers and bindings|
| WIP |Support Event orchestration, Servelss workflow|
| WIP |Support in-memory event store|
| WIP |Support Event transaction|
| WIP |Support Event security|
| WIP |Support multi language SDK(c\go\python\wasm)|
| WIP |Support metrics exporter|
| WIP |Support tracing exporter|
| WIP |Support at-least-once/at-most-once delivery guarantees|
| WIP |Support cold event storage (S3, Minio, SQL, key/value, etc...)|
| WIP |Support gRPC protocol|
| WIP |Support MQTT protocol|
| WIP |Support reactive fisrt|

## 快速开始
1. 构建并部署event-store(RocketMQ), 请参见[说明](https://rocketmq.apache.org/docs/quick-start/)
Expand Down
Loading