ondro_k
ondro_k
CACrawlee & Apify
Created by !!!Joefree!!! 👑 on 5/27/2025 in #apify-platform
BUG? ACTOR_MAX_PAID_DATASET_ITEMS
so if I first set to unlimit, then when ressurect for the second time it will set to that big number
even if you set the limit to unlimited when you start the run for the first time, the platform will limit it to your available credits / price per one result.
but it's a little bit odd to see a weird number in the log.
yeah it can be confusing, I'll ask them to update the description so that it's clear where the number comes from
8 replies
CACrawlee & Apify
Created by !!!Joefree!!! 👑 on 5/27/2025 in #apify-platform
BUG? ACTOR_MAX_PAID_DATASET_ITEMS
thanks for the link, I've sent it to our platform devs...I'll keep you posted
8 replies
CACrawlee & Apify
Created by !!!Joefree!!! 👑 on 5/24/2025 in #apify-platform
Under Maintenance
Hey, there was an issue with automated QA checks of public actors...it should be fixed now
10 replies
CACrawlee & Apify
Created by !!!Joefree!!! 👑 on 5/27/2025 in #apify-platform
BUG? ACTOR_MAX_PAID_DATASET_ITEMS
Hey, the platform sets the Maximum charged results automatically based on user's available credits. But that number is crazy big, could you share a link to the run? I'll take a look. Thanks
8 replies
CACrawlee & Apify
Created by optimistic-gold on 10/14/2024 in #apify-platform
Making my Docker image more efficient
Hey, you could use apify/actor-python-playwright as a base image, which already has the browser preinstalled...so you could skip the poetry run playwright install chromium --with-deps part. the image is 3 months old but there are plans to update it more often
5 replies
CACrawlee & Apify
Created by !!!Joefree!!! 👑 on 10/12/2024 in #apify-platform
Minor Bug: README.MD
Hey, this should be fixed now
6 replies
CACrawlee & Apify
Created by exotic-emerald on 10/12/2024 in #apify-platform
Standby python actor throws when accessing the Actor.config object
hey, you can follow the progress here
10 replies
CACrawlee & Apify
Created by rival-black on 10/16/2024 in #apify-platform
reset password input box broken
Hey, so this is a known issue and it's hard to debug. The input does not allow you to type into it if you are signed into the console. It should work fine in anonymous window.
6 replies
CACrawlee & Apify
Created by xenial-black on 10/16/2024 in #apify-platform
reset password input box broken
thanks, the issue seems to be with pasting password from the clipboard...I have reported this to the team.
6 replies
CACrawlee & Apify
Created by fascinating-indigo on 10/14/2024 in #apify-platform
how to purchase increased actor RAM addon
hey, you need to re-subscribe (don't cancel, just upgrade). Just buy the same plan but with the add-on
6 replies
CACrawlee & Apify
Created by frail-apricot on 10/12/2024 in #apify-platform
Standby python actor throws when accessing the Actor.config object
Thanks, I'll send it to our python devs and will get back to you
10 replies
CACrawlee & Apify
Created by stormy-gold on 10/15/2024 in #crawlee-js
chromium version error in path
I think playwrigh uses same browser version for all OSes...what I would do is to remove node_modules and .cache/ms-playwright/*, then run npm install and then npx playwright install and it should install the same chromium version
12 replies
CACrawlee & Apify
Created by rare-sapphire on 10/16/2024 in #apify-platform
reset password input box broken
No description
6 replies
CACrawlee & Apify
Created by national-gold on 10/15/2024 in #crawlee-js
chromium version error in path
it looks like you're using different playwright versions...if you run npx playwright --version, do you get the same versions on both machines?
12 replies
CACrawlee & Apify
Created by flat-fuchsia on 10/15/2024 in #crawlee-js
chromium version error in path
just to make sure...is your package.json and package-lock.json same on both machines?
12 replies
CACrawlee & Apify
Created by wise-white on 10/15/2024 in #crawlee-js
chromium version error in path
aaah, I see. Can you try to run npx playwright install (without --with-deps)? I tested it on my Fedora and it worked. It still uses ubuntu binaries but it should work fine even on Fedora:
BEWARE: your OS is not officially supported by Playwright; downloading fallback build for ubuntu20.04-x64.
BEWARE: your OS is not officially supported by Playwright; downloading fallback build for ubuntu20.04-x64.
12 replies
CACrawlee & Apify
Created by genetic-orange on 10/4/2024 in #apify-platform
Crash on using Prisma, generate and schema
Hey, we use multistage docker image builds to build our actors. TLDR: files generated by prisma generate do not end up in the final actor's image, that's being run. Solution should be simple - you just need to copy the files generated by prisma generate to the final image. According to prisma docs, generated files are stored in node_modules/.prisma/client, so you should just copy them same way as dist folder:
COPY --from=builder --chown=myuser /home/myuser/dist ./dist

# Copying files from `prisma generate` to the final image
COPY --from=builder --chown=myuser /home/myuser/node_modules/.prisma/client ./node_modules/.prisma/client # <<< add this line to your dockerfile
COPY --from=builder --chown=myuser /home/myuser/dist ./dist

# Copying files from `prisma generate` to the final image
COPY --from=builder --chown=myuser /home/myuser/node_modules/.prisma/client ./node_modules/.prisma/client # <<< add this line to your dockerfile
Let me know if this helped
5 replies
CACrawlee & Apify
Created by foreign-sapphire on 10/12/2024 in #apify-platform
Standby python actor throws when accessing the Actor.config object
Hey, could you share your actor id/run id?
10 replies