-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade collector to 3.1.x and enrich to 4.0.x
New collector and enrich versions mean: * Cats Effect 3 * Http4s as web server, so no more Akka HTTP * Using IO monad instead of Id To be consistent with other Snowplow applications, this commit also brings small improvements to configuration loading. Just like collector configuration, iglu resolver and all enrichments support HOCON configuration format. As collector 3.1.x is on scala 2.13 and enrich 4.0.x on scala 2.12, it was easier to cross compile collector to 2.12 than upgrade enrich to 2.13. That's why micro uses collector from this branch -> https://github.com/snowplow/stream-collector/tree/3.1.0_cross_scala_2.12 and is based on scala 2.12.
- Loading branch information
Showing
22 changed files
with
1,084 additions
and
1,012 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
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
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
collector { | ||
interface = "0.0.0.0" | ||
port = 9090 | ||
ssl { | ||
port = 9543 | ||
} | ||
|
||
streams { | ||
good = "good" | ||
bad = "bad" | ||
buffer { | ||
byteLimit = 3145728 | ||
recordLimit = 500 | ||
timeLimit = 5000 | ||
} | ||
sink {} | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.