aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/schedulers
Commit message (Collapse)AuthorAgeFilesLines
* Implement remote runner jobs in serverChocobozzz2023-05-091-0/+42
| | | | Move ffmpeg functions to @shared
* Delete completed/failed jobs directly from bullmqChocobozzz2022-11-231-0/+2
|
* Fix server lintChocobozzz2022-11-151-1/+1
|
* Prevent error in redundancy schedulerChocobozzz2022-10-311-4/+17
|
* Prevent error in update schedulerChocobozzz2022-10-311-1/+5
|
* Put private videos under a specific subdirectoryChocobozzz2022-10-242-24/+46
|
* Handle sync failure in synchronizeChannel fnChocobozzz2022-09-271-21/+14
|
* Improve VideoChannelSyncLatestScheduler logsChocobozzz2022-09-141-3/+3
|
* Add ability to list imports of a channel syncChocobozzz2022-08-101-4/+0
|
* Channel sync (#5135)Florent2022-08-101-0/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add external channel URL for channel update / creation (#754) * Disallow synchronisation if user has no video quota (#754) * More constraints serverside (#754) * Disable sync if server configuration does not allow HTTP import (#754) * Working version synchronizing videos with a job (#754) TODO: refactoring, too much code duplication * More logs and try/catch (#754) * Fix eslint error (#754) * WIP: support synchronization time change (#754) * New frontend #754 * WIP: Create sync front (#754) * Enhance UI, sync creation form (#754) * Warning message when HTTP upload is disallowed * More consistent names (#754) * Binding Front with API (#754) * Add a /me API (#754) * Improve list UI (#754) * Implement creation and deletion routes (#754) * Lint (#754) * Lint again (#754) * WIP: UI for triggering import existing videos (#754) * Implement jobs for syncing and importing channels * Don't sync videos before sync creation + avoid concurrency issue (#754) * Cleanup (#754) * Cleanup: OpenAPI + API rework (#754) * Remove dead code (#754) * Eslint (#754) * Revert the mess with whitespaces in constants.ts (#754) * Some fixes after rebase (#754) * Several fixes after PR remarks (#754) * Front + API: Rename video-channels-sync to video-channel-syncs (#754) * Allow enabling channel sync through UI (#754) * getChannelInfo (#754) * Minor fixes: openapi + model + sql (#754) * Simplified API validators (#754) * Rename MChannelSync to MChannelSyncChannel (#754) * Add command for VideoChannelSync (#754) * Use synchronization.enabled config (#754) * Check parameters test + some fixes (#754) * Fix conflict mistake (#754) * Restrict access to video channel sync list API (#754) * Start adding unit test for synchronization (#754) * Continue testing (#754) * Tests finished + convertion of job to scheduler (#754) * Add lastSyncAt field (#754) * Fix externalRemoteUrl sort + creation date not well formatted (#754) * Small fix (#754) * Factorize addYoutubeDLImport and buildVideo (#754) * Check duplicates on channel not on users (#754) * factorize thumbnail generation (#754) * Fetch error should return status 400 (#754) * Separate video-channel-import and video-channel-sync-latest (#754) * Bump DB migration version after rebase (#754) * Prettier states in UI table (#754) * Add DefaultScope in VideoChannelSyncModel (#754) * Fix audit logs (#754) * Ensure user can upload when importing channel + minor fixes (#754) * Mark synchronization as failed on exception + typos (#754) * Change REST API for importing videos into channel (#754) * Add option for fully synchronize a chnanel (#754) * Return a whole sync object on creation to avoid tricks in Front (#754) * Various remarks (#754) * Single quotes by default (#754) * Rename synchronization to video_channel_synchronization * Add check.latest_videos_count and max_per_user options (#754) * Better channel rendering in list #754 * Allow sorting with channel name and state (#754) * Add missing tests for channel imports (#754) * Prefer using a parent job for channel sync * Styling * Client styling Co-authored-by: Chocobozzz <me@florianbigard.com>
* Use bullmq job dependencyChocobozzz2022-08-091-1/+1
|
* /!\ Use a dedicated config file for developmentChocobozzz2022-07-062-5/+5
| | | | | It means you have to replace NODE_ENV=test to NODE_ENV=dev if you use it npm run dev:* commands are already updated
* Rename video full loadingChocobozzz2022-06-282-2/+2
|
* Add ability to set a custom video import timeoutChocobozzz2022-05-241-1/+1
|
* Support video views/viewers stats in serverChocobozzz2022-04-153-5/+27
| | | | | | | | | | * Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
* Don't store remote rates of remote videosChocobozzz2022-03-181-1/+1
| | | | | In the future we'll stop to expose all available rates to improve users privacy
* Decrease time to cleanup resumable uploadsChocobozzz2021-12-031-28/+7
|
* Fix extendsLocalExpiration for redundancyChocobozzz2021-11-121-11/+3
|
* Refactor video viewsChocobozzz2021-11-091-0/+52
| | | | | | | | Introduce viewers attribute for live videos Count views for live videos Reduce delay to see the viewer update for lives Add ability to configure video views buffer interval and view ip expiration
* Constants consistencyChocobozzz2021-10-2210-10/+10
|
* Rewrite youtube-dl importChocobozzz2021-10-221-2/+2
| | | | | | | | Use python3 binary Allows to use a custom youtube-dl release URL Allows to use yt-dlp (youtube-dl fork) Remove proxy config from configuration to use HTTP_PROXY and HTTPS_PROXY env variables
* Process slow followers in unicast job queueChocobozzz2021-10-131-7/+7
|
* More robust webtorrent redundancy downloadChocobozzz2021-09-061-6/+2
| | | | | Avoid issues with inconsistencies between magnet infohash and torrent infohash, blocking webtorrent upload that will timeout
* esModuleInterop to trueChocobozzz2021-08-272-3/+3
|
* More logs for webtorrent downloadChocobozzz2021-08-261-4/+4
|
* Better logs for redundancyChocobozzz2021-08-261-19/+35
|
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Correctly handle large HLS files for redundancyChocobozzz2021-08-061-8/+7
|
* Refactor video links buildersChocobozzz2021-07-261-5/+5
|
* Use random names for VOD HLS playlistsChocobozzz2021-07-261-3/+4
|
* Don't retry UpdateVideosScheduler transactionsChocobozzz2021-06-171-7/+6
|
* Refactor schedule updateChocobozzz2021-06-111-11/+10
|
* Refactor getOrCreateAPVideoChocobozzz2021-06-021-2/+2
|
* Merge branch 'release/3.2.0' into developChocobozzz2021-05-261-2/+2
|\
| * Fix redundancy max sizeChocobozzz2021-05-261-2/+2
| |
* | Cleanup models directory organizationChocobozzz2021-05-113-4/+4
| |
* | Use a class for youtube-dlChocobozzz2021-05-111-3/+3
|/
* Resumable video uploads (#3933)kontrollanten2021-05-101-0/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: resumable video uploads relates to #324 * fix review comments * video upload: error handling * fix audio upload * fixes after self review * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/middlewares/validators/videos/videos.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * update after code review * refactor upload route - restore multipart upload route - move resumable to dedicated upload-resumable route - move checks to middleware - do not leak internal fs structure in response * fix yarn.lock upon rebase * factorize addVideo for reuse in both endpoints * add resumable upload API to openapi spec * add initial test and test helper for resumable upload * typings for videoAddResumable middleware * avoid including aws and google packages via node-uploadx, by only including uploadx/core * rename ex-isAudioBg to more explicit name mentioning it is a preview file for audio * add video-upload-tmp-folder-cleaner job * stronger typing of video upload middleware * reduce dependency to @uploadx/core * add audio upload test * refactor resumable uploads cleanup from job to scheduler * refactor resumable uploads scheduler to compare to last execution time * make resumable upload validator to always cleanup on failure * move legacy upload request building outside of uploadVideo test helper * filter upload-resumable middlewares down to POST, PUT, DELETE also begin to type metadata * merge add duration functions * stronger typings and documentation for uploadx behaviour, move init validator up * refactor(client/video-edit): options > uploadxOptions * refactor(client/video-edit): remove obsolete else * scheduler/remove-dangling-resum: rename tag * refactor(server/video): add UploadVideoFiles type * refactor(mw/validators): restructure eslint disable * refactor(mw/validators/videos): rename import * refactor(client/vid-upload): rename html elem id * refactor(sched/remove-dangl): move fn to method * refactor(mw/async): add method typing * refactor(mw/vali/video): double quote > single * refactor(server/upload-resum): express use > all * proper http methud enum server/middlewares/async.ts * properly type http methods * factorize common video upload validation steps * add check for maximum partially uploaded file size * fix audioBg use * fix extname(filename) in addVideo * document parameters for uploadx's resumable protocol * clear META files in scheduler * last audio refactor before cramming preview in the initial POST form data * refactor as mulitpart/form-data initial post request this allows preview/thumbnail uploads alongside the initial request, and cleans up the upload form * Add more tests for resumable uploads * Refactor remove dangling resumable uploads * Prepare changelog * Add more resumable upload tests * Remove user quota check for resumable uploads * Fix upload error handler * Update nginx template for upload-resumable * Cleanup comment * Remove unused express methods * Prefer to use got instead of raw http * Don't retry on error 500 Co-authored-by: Rigel Kent <par@rigelk.eu> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add new plugin/peertube version notifsChocobozzz2021-03-242-0/+61
|
* Use got instead of requestChocobozzz2021-03-241-4/+4
|
* Don't guess remote tracker URLChocobozzz2021-02-181-2/+3
|
* Dissociate video file names and video uuidChocobozzz2021-02-181-6/+6
|
* Purge entire video from redundancyChocobozzz2021-02-021-1/+9
|
* Fix incorrect IDs in AP federationChocobozzz2020-11-201-18/+19
|
* Split types and typingsChocobozzz2020-06-182-2/+2
|
* Fix video view filenameChocobozzz2020-06-151-1/+1
|
* Fix auto follow index URLChocobozzz2020-05-121-9/+7
|
* Allow to auto follow a specific URLChocobozzz2020-05-111-0/+4
|
* Avoir some circular dependenciesChocobozzz2020-05-043-4/+4
|
* Fix build with typescript 3.8Chocobozzz2020-02-281-1/+1
|