fescobar / allure-docker-service

This docker container allows you to see up to date reports simply mounting your "allure-results" directory in the container (for a Single Project) or your "projects" directory (for Multiple Projects). Every time appears new results (generated for your tests), Allure Docker Service will detect those changes and it will generate a new report automatically (optional: send results / generate report through API), what you will see refreshing your browser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Latest results not updated on allure

JackyShao01 opened this issue · comments

Hi,

We are consuming allure-docker-service running on Fargate - We can successfully upload results and see generated report from the link allure-docker-servic-UI being provided. however when the results are getting increased , we are facing the issue which the latest result got delayed to be uploaded and get 413 http status code.

We assume that payload in request to one of instance in Fargate is too big so that 413 http status error occurs.
The payload includes all links such as .txt and .json files. How should we fix this problem?

We are not sure the real reason. We can provide the full log if required.

Thank you in advance.

Split the results.

@fescobar Could you please elaborate? If we split the results that would create multiple report in allure. Is there any way to upload large result sets?

@Saurabhrck If you have 1000 results files to upload, then split those results into small parts and send them individually. I mean send 100, after 100 more until reaching the 1000 files.

@fescobar Owo. Did not know we could do that. Just made some changes to python script and it worked like a charm. 1.1 GB uploaded and generated report properly.

Thanks for the help.