Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!304
Add smoketest for UC3 Flink
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add smoketest for UC3 Flink
Add-smoketest-for-uc3-flink
into
main
Overview
0
Commits
1
Pipelines
3
Changes
2
Merged
Sören Henning
requested to merge
Add-smoketest-for-uc3-flink
into
main
2 years ago
Overview
0
Commits
1
Pipelines
3
Changes
2
Expand
0
0
Merge request reports
Compare
main
version 1
2af1697d
2 years ago
main (base)
and
latest version
latest version
ab03f6f4
1 commit,
2 years ago
version 1
2af1697d
1 commit,
2 years ago
2 files
+
21
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
theodolite-benchmarks/docker-test/uc3-flink/test.sh
0 → 100755
+
11
−
0
Options
#!/bin/sh
until
docker-compose
exec
-T
kcat kcat
-L
-b
kafka:9092
-t
output
-J
| jq
-r
'.topics[0].partitions | length'
|
grep
"
\b
3
\b
"
;
do
sleep
5s
;
done
docker-compose
exec
-T
kcat kcat
-C
-b
kafka:9092
-t
output
-s
key
=
s
-s
value
=
s
-r
http://schema-registry:8081
-f
'%k:%s\n'
-c
600 |
tee
/dev/stderr |
awk
-F
':'
'!/^%/ {print $1}'
|
sort
|
uniq
|
wc
-l
|
grep
"
\b
10
\b
"
\ No newline at end of file
Loading