-
Notifications
You must be signed in to change notification settings - Fork 0
feat: tiles deletion creation (MAPCO-5735) #95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
razbroc
wants to merge
16
commits into
master
Choose a base branch
from
feat/tiles-deletion-skeleton
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,493
−3,237
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a1b5529
feat: basic development
razbroc ac9efa7
feat: implement tiles deletion functionality and update related confi…
razbroc 9f85918
feat: enhance conflict feature extraction by unzipping shapefile reports
razbroc b82c9df
feat: enhance tile deletion task manager to include ingestion resolut…
razbroc 4de04de
feat: add report storage provider configuration and enhance S3 servic…
razbroc 3b687a5
feat: update @map-colonies/raster-shared to version 8.1.0-alpha.3 and…
razbroc 124411f
feat: enhance conflict feature processing by uniting geometries and r…
razbroc e9b4080
style: lint
razbroc 79d08da
feat: refactor conflict feature reading into a separate utility function
razbroc 09e08fa
feat: add TileDeletionTaskManager mock to update job handler test setup
razbroc 71192e3
style: lint
razbroc 5e044f4
chore: update tests configuration
razbroc 0dbb490
refactor: remove reportStorageProvider references from configuration …
razbroc 87dd680
Refactor deletion and merge task managers; update report utility for …
razbroc 8406e05
Merge branch 'master' of github.com:MapColonies/overseer into feat/ti…
razbroc d88cc20
style: lint
razbroc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -8,13 +8,13 @@ global: | |
|
|
||
| geoserver: | ||
| workspace: '' | ||
| dataStore: '' | ||
| ca: | ||
| dataStore: '' | ||
| ca: | ||
| secretName: '' | ||
| path: '/usr/local/share/ca-certificates' | ||
| key: 'ca.crt' | ||
| gracefulReloadMaxSeconds: 300 | ||
| storage: {} | ||
| storage: {} | ||
|
|
||
| mclabels: | ||
| #environment: development | ||
|
|
@@ -129,50 +129,50 @@ metrics: | |
|
|
||
| instanceType: "" # supported values: ingestion | export | ||
| jobDefinitions: | ||
| jobs: | ||
| new: | ||
| type: "" | ||
| update: | ||
| type: "" | ||
| swapUpdate: | ||
| type: "" | ||
| seed: | ||
| type: "" | ||
| export: | ||
| jobs: | ||
| new: | ||
| type: "" | ||
| update: | ||
| type: "" | ||
| swapUpdate: | ||
| type: "" | ||
| seed: | ||
| type: "" | ||
| export: | ||
| type: "" | ||
| cleanupExpirationDays: 14 | ||
| gpkgsRootDir: "gpkgs" | ||
| tasks: | ||
| createTasks: | ||
| type: "" | ||
| init: | ||
| type: "" | ||
| finalize: | ||
| type: "" | ||
| merge: | ||
| type: "" | ||
| tileBatchSize: 10000 | ||
| taskBatchSize: 5 | ||
| radiusBuffer: 0.000006 | ||
| radiusBufferUnits: "degrees" # supported values are: "degrees" | "centimeters" | "meters" | "millimeters" | "kilometers" | "miles" | "inches" | "yards" | "feet" | "radians" | ||
| truncatePrecision: 11 # coordinate decimal precision | ||
| truncateCoordinates: 2 # maximum number of coordinates (primarly used to remove z coordinates) | ||
| seed: | ||
| type: "" | ||
| grid: "WorldCRS84" | ||
| maxZoom: 21 | ||
| skipUncached: true | ||
| zoomThreshold: 16 #zoom level threshold for high res seeding first seeding task will be 0->zoomThreshold | ||
| maxTilesPerSeedTask: 250000 | ||
| maxTilesPerCleanTask: 500000 | ||
| export: | ||
| type: "" | ||
|
|
||
| config: | ||
| dequeueIntervalMs: 3000 | ||
| heartBeat: | ||
| intervalMs: 3000 | ||
| maxTaskAttempts: 3 | ||
| tasks: | ||
| createTasks: | ||
| type: "" | ||
| init: | ||
| type: "" | ||
| finalize: | ||
| type: "" | ||
| merge: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add "tilesDeletion" task types values |
||
| type: "" | ||
| tileBatchSize: 10000 | ||
| taskBatchSize: 5 | ||
| radiusBuffer: 0.000006 | ||
| radiusBufferUnits: "degrees" # supported values are: "degrees" | "centimeters" | "meters" | "millimeters" | "kilometers" | "miles" | "inches" | "yards" | "feet" | "radians" | ||
| truncatePrecision: 11 # coordinate decimal precision | ||
| truncateCoordinates: 2 # maximum number of coordinates (primarly used to remove z coordinates) | ||
| seed: | ||
| type: "" | ||
| grid: "WorldCRS84" | ||
| maxZoom: 21 | ||
| skipUncached: true | ||
| zoomThreshold: 16 #zoom level threshold for high res seeding first seeding task will be 0->zoomThreshold | ||
| maxTilesPerSeedTask: 250000 | ||
| maxTilesPerCleanTask: 500000 | ||
| export: | ||
| type: "" | ||
|
|
||
| config: | ||
| dequeueIntervalMs: 3000 | ||
| heartBeat: | ||
| intervalMs: 3000 | ||
| maxTaskAttempts: 3 | ||
|
|
||
| env: | ||
| port: 8080 | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
REVERT