Skip to content

Commit 418ee46

Browse files
sleipnirAdriano SantosElias
authored
Projection query DSL implementation (#394)
* chore: initial projection query DSL implementation * feat: support complex queries * feat: add support to multi arch images * chore: update deps * fix: projection repo start and some tests * fix: add child spec to native projection adapter * feat: added more tests * fix: String.chars not implemented * fix: convert to chars * try fix * handle tuple args * fix: assert tests * fix: formatting * translate comments * feat: add support to group by * feat: added support to having clause * refactor: fix some compilation warnings * trying nimble_parsec to parse queries * some progress in query dsl parser * feat: create projection tables from protobuf data * refactor: minor adjust * feat: added dynamic table creator * refactor: rename module * working projection table with upsert and query * refact * refact * merge * querying and table creation working on projection actor initialization * saving state after callback * pagination to queries * tests fix * remove ununsed code * fix * fix test * fix some errors --------- Co-authored-by: Adriano Santos <[email protected]> Co-authored-by: Elias <[email protected]>
1 parent c446069 commit 418ee46

File tree

43 files changed

+3458
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3458
-374
lines changed

.github/workflows/ci.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ jobs:
6767
cd ../../
6868
6969
- name: Run tests spawn_statestores
70+
run: |
71+
cd spawn_statestores/statestores
72+
mix deps.get
73+
MIX_ENV=test PROXY_CLUSTER_STRATEGY=gossip PROXY_HTTP_PORT=9005 SPAWN_STATESTORE_KEY=3Jnb0hZiHIzHTOih7t2cTEPEpY98Tu1wvQkPfq/XwqE= elixir --name [email protected] -S mix test
74+
cd ../../
75+
76+
- name: Run tests statestores_native
7077
run: |
7178
cd spawn_statestores/statestores_native
7279
mix deps.get

.github/workflows/release.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,11 @@ jobs:
5959
file_glob: true
6060
body: ${{ steps.changelog.outputs.changes }}
6161

62+
- name: Set up QEMU
63+
uses: docker/setup-qemu-action@v3
64+
6265
- name: Set up Docker Buildx
63-
uses: docker/setup-buildx-action@v2
66+
uses: docker/setup-buildx-action@v3
6467

6568
- name: Login to GitHub Container Registry
6669
uses: docker/login-action@v2
@@ -73,16 +76,17 @@ jobs:
7376
run: echo ${{ secrets.GHCR_PAT }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
7477

7578
- name: Build and push spawn proxy image
76-
uses: docker/build-push-action@v5
79+
uses: docker/build-push-action@v6
7780
with:
81+
platforms: linux/amd64,linux/arm64
7882
context: .
7983
file: ./Dockerfile-proxy
8084
push: true
8185
tags: ghcr.io/eigr/spawn-proxy:latest,ghcr.io/eigr/spawn-proxy:1.4.3
8286
github-token: ${{ secrets.GHCR_PAT }}
8387

8488
- name: Build and push spawn operator image
85-
uses: docker/build-push-action@v5
89+
uses: docker/build-push-action@v6
8690
with:
8791
context: .
8892
file: ./Dockerfile-operator

.tool-versions

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
elixir 1.17.2
2-
erlang 26.1.2
3-
1+
elixir 1.18
2+
erlang 27.2

Makefile

+7-2
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,9 @@ test-proxy:
174174
test-statestores_native:
175175
cd spawn_statestores/statestores_native && MIX_ENV=test mix deps.get && MIX_ENV=test PROXY_CLUSTER_STRATEGY=gossip PROXY_HTTP_PORT=9005 SPAWN_STATESTORE_KEY=3Jnb0hZiHIzHTOih7t2cTEPEpY98Tu1wvQkPfq/XwqE= elixir --name [email protected] -S mix test
176176

177+
test-statestores:
178+
cd spawn_statestores/statestores && MIX_ENV=test mix deps.get && MIX_ENV=test PROXY_CLUSTER_STRATEGY=gossip PROXY_HTTP_PORT=9005 SPAWN_STATESTORE_KEY=3Jnb0hZiHIzHTOih7t2cTEPEpY98Tu1wvQkPfq/XwqE= elixir --name [email protected] -S mix test
179+
177180
test-statestores_mariadb:
178181
cd spawn_statestores/statestores_mariadb && \
179182
MIX_ENV=test mix deps.get && \
@@ -344,8 +347,10 @@ run-sdk-local4:
344347
PROXY_CLUSTER_STRATEGY=epmd \
345348
SPAWN_USE_INTERNAL_NATS=true \
346349
SPAWN_PUBSUB_ADAPTER=nats \
347-
PROXY_DATABASE_TYPE=mariadb \
348-
PROXY_DATABASE_PORT=3307 \
350+
PROXY_DATABASE_TYPE=postgres \
351+
PROXY_DATABASE_PORT=5432 \
352+
PROXY_DATABASE_USERNAME=postgres \
353+
PROXY_DATABASE_SECRET=postgres \
349354
SPAWN_STATESTORE_KEY=3Jnb0hZiHIzHTOih7t2cTEPEpY98Tu1wvQkPfq/XwqE= \
350355
SPAWN_SUPERVISORS_STATE_HANDOFF_CONTROLLER=nats \
351356
iex --name [email protected] -S mix

compile-pb.sh

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ PROTOS=("
3232
priv/protos/spawn/actors/protocol.proto
3333
priv/protos/spawn/actors/state.proto
3434
priv/protos/spawn/actors/healthcheck.proto
35+
priv/protos/spawn/actors/test.proto
3536
")
3637

3738
BASE_PATH=`pwd`

lib/_generated/spawn/actors/extensions.pb.ex

+73-56
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
defmodule Spawn.Actors.PbExtension do
22
@moduledoc false
3-
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0"
3+
use Protobuf, protoc_gen_elixir_version: "0.13.0", syntax: :proto3
44

55
extend(Google.Protobuf.FieldOptions, :actor_id, 9999,
66
optional: true,
77
type: :bool,
88
json_name: "actorId"
99
)
1010

11+
extend(Google.Protobuf.FieldOptions, :searchable, 4_890_129, optional: true, type: :bool)
12+
1113
extend(Google.Protobuf.MethodOptions, :view, 4_890_127,
1214
optional: true,
1315
type: Spawn.Actors.ActorViewOption
@@ -19,63 +21,9 @@ defmodule Spawn.Actors.PbExtension do
1921
)
2022
end
2123

22-
defmodule Spawn.Actors.ActorViewOption do
23-
@moduledoc false
24-
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0"
25-
26-
def descriptor do
27-
# credo:disable-for-next-line
28-
%Google.Protobuf.DescriptorProto{
29-
name: "ActorViewOption",
30-
field: [
31-
%Google.Protobuf.FieldDescriptorProto{
32-
name: "query",
33-
extendee: nil,
34-
number: 1,
35-
label: :LABEL_OPTIONAL,
36-
type: :TYPE_STRING,
37-
type_name: nil,
38-
default_value: nil,
39-
options: nil,
40-
oneof_index: nil,
41-
json_name: "query",
42-
proto3_optional: nil,
43-
__unknown_fields__: []
44-
},
45-
%Google.Protobuf.FieldDescriptorProto{
46-
name: "map_to",
47-
extendee: nil,
48-
number: 2,
49-
label: :LABEL_OPTIONAL,
50-
type: :TYPE_STRING,
51-
type_name: nil,
52-
default_value: nil,
53-
options: nil,
54-
oneof_index: nil,
55-
json_name: "mapTo",
56-
proto3_optional: nil,
57-
__unknown_fields__: []
58-
}
59-
],
60-
nested_type: [],
61-
enum_type: [],
62-
extension_range: [],
63-
extension: [],
64-
options: nil,
65-
oneof_decl: [],
66-
reserved_range: [],
67-
reserved_name: [],
68-
__unknown_fields__: []
69-
}
70-
end
71-
72-
field(:query, 1, type: :string)
73-
field(:map_to, 2, type: :string, json_name: "mapTo")
74-
end
75-
7624
defmodule Spawn.Actors.ActorOpts do
7725
@moduledoc false
78-
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0"
26+
use Protobuf, protoc_gen_elixir_version: "0.13.0", syntax: :proto3
7927

8028
def descriptor do
8129
# credo:disable-for-next-line
@@ -236,3 +184,72 @@ defmodule Spawn.Actors.ActorOpts do
236184
field(:subjects, 8, repeated: true, type: Spawn.Actors.ProjectionSubject)
237185
field(:kind, 9, type: Spawn.Actors.Kind, enum: true)
238186
end
187+
188+
defmodule Spawn.Actors.ActorViewOption do
189+
@moduledoc false
190+
use Protobuf, protoc_gen_elixir_version: "0.13.0", syntax: :proto3
191+
192+
def descriptor do
193+
# credo:disable-for-next-line
194+
%Google.Protobuf.DescriptorProto{
195+
name: "ActorViewOption",
196+
field: [
197+
%Google.Protobuf.FieldDescriptorProto{
198+
name: "query",
199+
extendee: nil,
200+
number: 1,
201+
label: :LABEL_OPTIONAL,
202+
type: :TYPE_STRING,
203+
type_name: nil,
204+
default_value: nil,
205+
options: nil,
206+
oneof_index: nil,
207+
json_name: "query",
208+
proto3_optional: nil,
209+
__unknown_fields__: []
210+
},
211+
%Google.Protobuf.FieldDescriptorProto{
212+
name: "map_to",
213+
extendee: nil,
214+
number: 2,
215+
label: :LABEL_OPTIONAL,
216+
type: :TYPE_STRING,
217+
type_name: nil,
218+
default_value: nil,
219+
options: nil,
220+
oneof_index: nil,
221+
json_name: "mapTo",
222+
proto3_optional: nil,
223+
__unknown_fields__: []
224+
},
225+
%Google.Protobuf.FieldDescriptorProto{
226+
name: "page_size",
227+
extendee: nil,
228+
number: 3,
229+
label: :LABEL_OPTIONAL,
230+
type: :TYPE_INT32,
231+
type_name: nil,
232+
default_value: nil,
233+
options: nil,
234+
oneof_index: nil,
235+
json_name: "pageSize",
236+
proto3_optional: nil,
237+
__unknown_fields__: []
238+
}
239+
],
240+
nested_type: [],
241+
enum_type: [],
242+
extension_range: [],
243+
extension: [],
244+
options: nil,
245+
oneof_decl: [],
246+
reserved_range: [],
247+
reserved_name: [],
248+
__unknown_fields__: []
249+
}
250+
end
251+
252+
field(:query, 1, type: :string)
253+
field(:map_to, 2, type: :string, json_name: "mapTo")
254+
field(:page_size, 3, type: :int32, json_name: "pageSize")
255+
end

0 commit comments

Comments
 (0)