Can i change ARCHIVE_TOTAL_SIZE_LIMIT ?
See original GitHub issueHi there.
I got below error when entered digdag push
.
error: Status code 400: {"message":"Total size of the archive exceeds limit (2378971 > 2097152 bytes)","status":400}
I think this cause is ARCHIVE_TOTAL_SIZE_LIMIT
from that code.
I want set more big size limit than 2MB. Is it difficult?
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Exchange Online limits - Service Descriptions - Microsoft Learn
You can change the size limit individually on each folder or change the default size limit defined in the organization's configuration to make...
Read more >How to Increase Office 365 Mailbox Size Limits - NAKIVO
Discover the different methods you can use to check and increase the Office 365 mailbox size limits for all users in your organization....
Read more >Microsoft Caps Exchange Online's “Unlimited Archive” at 1.5 TB
The change happens on November 1, 2021, and when the new limit is active, users will be unable to add more information to...
Read more >Uploading – Tips - Internet Archive Help Center
Yes, you can. You can view your item or files history by clicking on the item. You will then see the item and...
Read more >Archiving andMailbox Limits | ALA Support
The archive does not have a size limit, so it is ALA Best Practice to move important items to this area. You will...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@muga Hi, muga-san.
I think the problem reported in this issue does not concern #880 .
#880 parameterized the max limit size of GET API, not POST API.
In order to parameterize the max limit size of Project,
ARCHIVE_TOTAL_SIZE_LIMIT
in https://github.com/treasure-data/digdag/blob/master/digdag-server/src/main/java/io/digdag/server/rs/ProjectResource.java#L630-L634 is needed to be configurable, like here https://github.com/treasure-data/digdag/blob/master/digdag-server/src/main/java/io/digdag/server/rs/AttemptResource.java#L80e.g.
#880 could fix this issue and will be released as v0.9.31. https://github.com/treasure-data/digdag/milestone/10