-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from iPromKnight/zyclops
feat: completed generic ingestion with service discovery
- Loading branch information
Showing
69 changed files
with
864 additions
and
178 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ riderModule.iml | |
.DS_Store | ||
.idea/ | ||
|
||
src/Zilean.DmmScraper/python/ | ||
src/Zilean.Scraper/python/ |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"Zilean": { | ||
"Dmm": { | ||
"EnableScraping": true, | ||
"EnableEndpoint": true, | ||
"ScrapeSchedule": "0 * * * *", | ||
"MinimumReDownloadIntervalMinutes": 30, | ||
"MaxFilteredResults": 200, | ||
"MinimumScoreMatch": 0.85, | ||
"ImportBatched": false | ||
}, | ||
"Torznab": { | ||
"EnableEndpoint": true | ||
}, | ||
"Database": { | ||
"ConnectionString": "Host=localhost;Database=zilean;Username=postgres;Password=postgres;Include Error Detail=true;Timeout=300;CommandTimeout=300;" | ||
}, | ||
"Prowlarr": { | ||
"EnableEndpoint": true | ||
}, | ||
"Torrents": { | ||
"EnableEndpoint": false | ||
}, | ||
"Imdb": { | ||
"EnableImportMatching": true, | ||
"EnableEndpoint": true, | ||
"MinimumScoreMatch": 0.85 | ||
}, | ||
"Ingestion": { | ||
"ZurgInstances": [], | ||
"ZileanInstances": [], | ||
"EnableScraping": false, | ||
"Kubernetes": { | ||
"EnableServiceDiscovery": false, | ||
"KubernetesSelectors": [ | ||
{ | ||
"UrlTemplate": "http://zurg.{0}:9999", | ||
"LabelSelector": "app.elfhosted.com/name=zurg", | ||
"EndpointType": 1 | ||
} | ||
], | ||
"KubeConfigFile": "/$HOME/.kube/config" | ||
}, | ||
"BatchSize": 500, | ||
"MaxChannelSize": 5000, | ||
"ScrapeSchedule": "0 * * * *", | ||
"ZurgEndpointSuffix": "/debug/torrents", | ||
"ZileanEndpointSuffix": "/torrents/all" | ||
} | ||
} | ||
} |
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 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
4 changes: 2 additions & 2 deletions
4
...ervice/Features/Dmm/DmmFilteredRequest.cs → .../Features/Search/SearchFilteredRequest.cs
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.