-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(state): improved stateful mode, Redis and S3 are now supported (#9)
* feat(state): improved stateful mode, Redis and S3 are now supported
- Loading branch information
Showing
17 changed files
with
915 additions
and
446 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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
yandex_tracker_client==2.* | ||
boto3==1.34.* | ||
redis==5.0.* | ||
datadog==0.47.* | ||
APScheduler==3.10.* | ||
requests==2.31.* | ||
|
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,31 +1,17 @@ | ||
from tracker_exporter.main import ( | ||
run_etl, | ||
configure_sentry, | ||
configure_jsonfile_storage, | ||
configure_state_service, | ||
configure_state_manager, | ||
) | ||
from tracker_exporter.etl import YandexTrackerETL | ||
from tracker_exporter.services.clickhouse import ClickhouseClient | ||
from tracker_exporter.services.tracker import YandexTrackerClient | ||
from tracker_exporter.services.state import ( | ||
StateKeeper, | ||
JsonStateStorage, | ||
RedisStateStorage, | ||
S3FileStorageStrategy, | ||
LocalFileStorageStrategy, | ||
) | ||
|
||
__all__ = [ | ||
"ClickhouseClient", | ||
"YandexTrackerClient", | ||
"YandexTrackerETL", | ||
"StateKeeper", | ||
"JsonStateStorage", | ||
"RedisStateStorage", | ||
"S3FileStorageStrategy", | ||
"LocalFileStorageStrategy", | ||
"run_etl", | ||
"configure_sentry", | ||
"configure_jsonfile_storage", | ||
"configure_state_service", | ||
"configure_state_manager", | ||
] |
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
Oops, something went wrong.