https://discord.cloudflare.com logo
Join Discord
Powered by
# workers-discussions
  • b

    Benji

    04/16/2023, 1:21 PM
    https://github.com/eidam/cf-workers-status-page/issues/129#issuecomment-1510380391
  • b

    Benji

    04/16/2023, 1:21 PM
    just shared on github 😄
  • b

    Benji

    04/16/2023, 1:22 PM
    Copy code
    Account id= 71571c8606d2bb2c159c3a610b341bda
    I think these are the namespace ids:
    87bd98f1d14d44ccafc5f0d8d455165a
    c9ef7bc233314704b08f8304750a628d
    here again
  • w

    Walshy | Pages

    04/16/2023, 1:22 PM
    ty, @Rob [KV, Queues] ^
  • b

    Benji

    04/16/2023, 1:23 PM
    Im not 100% sure if the issue is still going, but i havent gotten a 90% email yet
  • b

    Benji

    04/16/2023, 1:24 PM
    considering, i got the 50% email quite early compared to usual, im guessing its still an issue
  • b

    Benji

    04/16/2023, 1:24 PM
    usually comes at around 6pm, it was at 10am yesterday and about 10am today again
  • e

    Erisa | Support Engineer

    04/16/2023, 1:28 PM
    https://www.cloudflarestatus.com/incidents/fxhsgv1myxzg
  • e

    Erisa | Support Engineer

    04/16/2023, 1:28 PM
    > Cloudflare is investigating reports that Workers KV write operations are being counted multiple times resulting in free tier overruns. > > We are working to analyse and mitigate this problem. More updates to follow shortly.
  • b

    Benji

    04/16/2023, 1:31 PM
    Thanks for the update. Keep me updated, if you need any additional information, feel free to ping me 😄
  • r

    Rob [KV, Queues]

    04/16/2023, 1:38 PM
    Hey everyone - have an open incident for this (see status page above).
  • r

    Rob [KV, Queues]

    04/16/2023, 1:38 PM
    The increased usage should not continue to accrue.
  • r

    Rob [KV, Queues]

    04/16/2023, 1:38 PM
    We're looking into how to reset any daily usage limits that have been overrun
  • b

    Benji

    04/16/2023, 1:40 PM
    Oki, thanks 👍
  • r

    Rob [KV, Queues]

    04/16/2023, 1:51 PM
    Thanks for reporting
  • n

    niceglasses

    04/16/2023, 7:35 PM
    noob question, is workers able to help with a problem like this? This website uses php7.0 on an AWS server and i have to work with it as it is.. T_T this wordpress revoluion slider and scripts are like gazillion versions behind, everything is working but this CPU/eval/parse times are ridiculous, how would you guys tackle this?
  • s

    Skye

    04/16/2023, 7:40 PM
    Please don't tag people for help, when someone knows how to answer your questions, they will
  • n

    niceglasses

    04/16/2023, 7:41 PM
    Ok sorry no prob
  • o

    Ottomated

    04/17/2023, 1:36 AM
    Does anyone know if V8 JIT optimzations are cached across isolates somehow, so a worker could benefit from them?
  • d

    Deleted Account

    04/17/2023, 4:44 AM
    does anyone here have source code for sending emails in workers?
  • z

    zegevlier

    04/17/2023, 9:44 AM
    I believe that this currently does not exist. However, there are restrictions in what you can do during the startup of the worker such that they would be able to implement caching the initial state after the startup. AFAIK this is not yet being worked on (at least not in the public workerd repo), and I'm not sure how that would relate to JIT optimizations.
  • p

    paras

    04/17/2023, 1:32 PM
    Hi all - noob question, I'm building an app for a third party customer to be deployed on cloudflare workers. It's currently running under my account and namespace whilst in dev and test. Once it's completed, what is the best way to handover ownership of the app to the customer, assuming they have no knowledge of cf workers?
  • k

    Kartik

    04/17/2023, 1:35 PM
    use a config file to setup the ci cd
  • j

    jed

    04/17/2023, 1:40 PM
    i have a question about worker invocation lifetime. is there any difference between these two approaches? 1.
    try { return new Response('ok') } finally { await sendLog() }
    2.
    context.waitUntil(sendLog()); return new Response('ok')
  • l

    lasseschou

    04/17/2023, 1:40 PM
    Joined the waitlist for puppeteer ages ago. Has anybody got access? https://blog.cloudflare.com/introducing-workers-browser-rendering-api/
  • l

    lasseschou

    04/17/2023, 1:40 PM
    Or is there another way to run puppeteer on Cloudflare Workers?
  • k

    kian

    04/17/2023, 1:40 PM
    The 1st probably will never finish the second promise
  • k

    kian

    04/17/2023, 1:41 PM
    As soon as a Response is returned, that's the hint that the request lifecycle is over
  • k

    kian

    04/17/2023, 1:41 PM
    waitUntil
    is what tells it to stay up
  • s

    Skye

    04/17/2023, 1:41 PM
    I mean that's a general JS thing with a
    return
1...239924002401...2509Latest