-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add proto producer, improved proto consumer, add topic sizes (#50)
* wip * wip working * wip - update FE * produce via web * fix: add string producer * add auto deserilization * fix: add size * fix: insert schema id when subject not avail * fix: auto detect descriptor * add offset strategy proto * fix: fix compilation * fix: sbt dev * fix: bump zio-kafka * fix: udate offset strategy * fix: validate cluster id * fix: add scalafix * fix: bump kafka embeded, fmt * fmt * fix: remove commented code * build on m2 🤯 * fix css * set reset offset to earliest on manual retrieval * sort by timestamp, fix selecting schema id * add schema id while listing proto messages, fix reading null values * fix: reset envoy hosts
- Loading branch information
1 parent
13d91a2
commit 7f02b1f
Showing
54 changed files
with
1,436 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,5 @@ revision.txt | |
.DS_Store | ||
local.sbt | ||
site/build | ||
kafkamate.json | ||
kafkamate.json | ||
null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
rules = [ | ||
OrganizeImports | ||
] | ||
|
||
OrganizeImports { | ||
blankLines = Auto | ||
coalesceToWildcardImportThreshold = 5 | ||
expandRelative = true | ||
groupExplicitlyImportedImplicitsSeparately = false | ||
groupedImports = AggressiveMerge | ||
groups = [ | ||
"re:(javax?|scala)\\.", # language | ||
"re:^(?!javax?\\.|scala\\.|com\\.investsuite).*", # library | ||
"*" | ||
] | ||
importSelectorsOrder = Ascii | ||
importsOrder = Ascii | ||
preset = DEFAULT | ||
removeUnused = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
version = "2.7.5" | ||
version = "3.5.9" | ||
runner.dialect = scala213 | ||
align.preset = some | ||
maxColumn = 120 | ||
align.preset = most | ||
align.multiline = false | ||
continuationIndent.defnSite = 2 | ||
assumeStandardLibraryStripMargin = true | ||
docstrings = JavaDoc | ||
lineEndings = preserve | ||
includeCurlyBraceInSelectChains = false | ||
danglingParentheses.preset = true | ||
optIn.annotationNewlines = true | ||
newlines.alwaysBeforeMultilineDef = false | ||
|
||
rewrite.rules = [RedundantBraces] | ||
align.tokens = [ | ||
{code = "%", owner = "Term.ApplyInfix"}, | ||
{code = "%%", owner = "Term.ApplyInfix"}, | ||
{code = "%%%", owner = "Term.ApplyInfix"}, | ||
{code = "=>", owner = "Case"} | ||
] | ||
|
||
align.openParenCallSite = false | ||
|
||
newlines.source=keep | ||
newlines.topLevelStatements = [before] | ||
newlines.beforeMultiline = keep | ||
newlines.topLevelStatementsMinBreaks = 1 | ||
|
||
optIn.breakChainOnFirstMethodDot = true | ||
|
||
continuationIndent.defnSite = 2 | ||
|
||
project.excludeFilters = [] | ||
verticalMultiline.atDefnSite = true | ||
verticalMultiline.arityThreshold = 3 | ||
verticalMultiline.newlineAfterOpenParen = true | ||
|
||
rewrite.redundantBraces.generalExpressions = false | ||
rewriteTokens = { | ||
"⇒": "=>" | ||
"→": "->" | ||
"←": "<-" | ||
} | ||
danglingParentheses.callSite = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.