Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
71d54207
Commit
71d54207
authored
4 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Config options for builder buffer sizes
parent
362ab420
No related branches found
No related tags found
No related merge requests found
Pipeline
#29083
failed
4 years ago
Stage: all
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/streams/include/ftl/streams/builder.hpp
+4
-2
4 additions, 2 deletions
components/streams/include/ftl/streams/builder.hpp
components/streams/src/receiver.cpp
+16
-0
16 additions, 0 deletions
components/streams/src/receiver.cpp
with
20 additions
and
2 deletions
components/streams/include/ftl/streams/builder.hpp
+
4
−
2
View file @
71d54207
...
...
@@ -33,6 +33,8 @@ class BaseBuilder : public ftl::data::Generator {
void
setID
(
uint32_t
id
)
{
id_
=
id
;
}
void
setPool
(
ftl
::
data
::
Pool
*
p
)
{
pool_
=
p
;
}
void
setBufferSize
(
size_t
s
)
{
bufferSize_
=
s
;
}
void
setMaxBufferSize
(
size_t
s
)
{
max_buffer_size_
=
s
;
}
void
setCompletionSize
(
size_t
s
)
{
completion_size_
=
s
;
}
inline
ftl
::
Handle
onFrameSet
(
const
ftl
::
data
::
FrameSetCallback
&
cb
)
override
{
return
cb_
.
on
(
cb
);
}
...
...
@@ -53,6 +55,8 @@ class BaseBuilder : public ftl::data::Generator {
int
id_
;
size_t
size_
;
size_t
bufferSize_
=
1
;
size_t
max_buffer_size_
=
16
;
size_t
completion_size_
=
8
;
ftl
::
Handler
<
const
ftl
::
data
::
FrameSetPtr
&>
cb_
;
ftl
::
data
::
ChangeType
ctype_
=
ftl
::
data
::
ChangeType
::
COMPLETED
;
};
...
...
@@ -153,8 +157,6 @@ class ForeignBuilder : public BaseBuilder {
std
::
atomic
<
int
>
jobs_
;
volatile
bool
skip_
;
ftl
::
Handle
main_id_
;
size_t
max_buffer_size_
=
16
;
size_t
completion_size_
=
8
;
std
::
string
name_
;
...
...
This diff is collapsed.
Click to expand it.
components/streams/src/receiver.cpp
+
16
−
0
View file @
71d54207
...
...
@@ -36,6 +36,20 @@ Receiver::Receiver(nlohmann::json &config, ftl::data::Pool *p) : ftl::Configurab
i
.
second
->
setBufferSize
(
bsize
);
}
});
on
(
"max_buffer_size"
,
[
this
]()
{
size_t
bsize
=
value
(
"max_buffer_size"
,
16
);
for
(
auto
&
i
:
builders_
)
{
i
.
second
->
setMaxBufferSize
(
bsize
);
}
});
on
(
"completion_size"
,
[
this
]()
{
size_t
bsize
=
value
(
"completion_size"
,
8
);
for
(
auto
&
i
:
builders_
)
{
i
.
second
->
setCompletionSize
(
bsize
);
}
});
}
Receiver
::~
Receiver
()
{
...
...
@@ -56,6 +70,8 @@ ftl::streams::BaseBuilder &Receiver::builder(uint32_t id) {
b
->
setID
(
id
);
b
->
setPool
(
pool_
);
fb
->
setBufferSize
(
value
(
"frameset_buffer_size"
,
0
));
fb
->
setBufferSize
(
value
(
"max_buffer_size"
,
16
));
fb
->
setBufferSize
(
value
(
"completion_size"
,
8
));
handles_
[
id
]
=
std
::
move
(
fb
->
onFrameSet
([
this
](
const
ftl
::
data
::
FrameSetPtr
&
fs
)
{
callback_
.
trigger
(
fs
);
return
true
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment