Skip to main content
Known Participant
February 4, 2026

P: Lightroom Desktop on macOS freezes & crashes at launch and export

  • February 4, 2026
  • 29 replies
  • 788 views

Hello Adobe team,

 

I’ve been suffering with frequent crashes of Lightroom (aka Lightroom CC, but NOT Lightroom Classic) since November. 

 

I had a busy / active forum thread going but it has apparently been made unavailable ~8 days ago when you re-launched the Community site, which is very frustrating. This was the link to the thread - perhaps you can see it still?

 

Summary: I am using Lightroom 9.1 (aka Lightroom CC, *NOT* Lightroom Classic) on my MacBook Pro (M4 Max CPU, 48GB RAM, macOS Tahoe 26.2). 

 

Sometime around November, the app began freezing with a pinwheel cursor while doing routine activities: editing a photo, exporting pics, or even just being left open but in the background. Attempting to quit Lightroom puts it into a pinwheel freeze 90% of the time.

 

I’ve submitted dozens of crash reports, hopefully you can see them (they’re linked to my Adobe account). I also have two fresh log outputs from today (a Console crash report and a Lightroom Diagnostic log) which I’m happy to share if requested.

 

I’ve had the same issues whether I run Lightroom as Apple Silicon-native or via Rosetta emulation. I’ve also done a complete uninstallation (including preferences and my full local library) and reinstalled multiple times, but the issues come back very quickly.

 

I’m utterly beyond frustrated at this point. I’ve been paying for my Adobe account and unable to use Lightroom for months, and going in circles with your chat support reps is making me lose my mind. If anyone else asks me if I’ve tried rebooting, I might throw my laptop out the nearest window.

 

Please, I’m begging you for help getting this resolved.

    29 replies

    kimiwang
    Participant
    July 28, 2026

    I'm hitting the same freeze pattern and I've traced it to a specific cause. Posting the detail in case it's useful.

    Environment: Lightroom 9.4.1 (build 20260625-0318-d30e963), macOS 26.5.2 (25F84), M5 Max / 128 GB, arm64 native. Reproduced identically on 9.4.

    It's a hang, not a crash. No .ips crash report is generated for these events — every Lightroom entry in DiagnosticReports is a "disk writes" resource report. Adobe's own crash reporter also fails to launch, with error -1712 (Apple Event timeout), consistent with the app being unresponsive. So this class of failure may not be reaching you through normal crash telemetry at all.

    What the spindumps show. Six spindumps across separate sessions, all identical. The process has hit the dispatch thread soft limit:

     
    Processes reached dispatch thread soft limit (90): Adobe Lightroom

    The main thread is blocked on window activation, which is exactly when the beachball appears — restoring a minimised window, or Show All Windows:

     
    -[NSApplication _handleActivatedEvent:]
    -[NSNotificationCenter postNotificationName:object:userInfo:]
    -[NSOperation waitUntilFinished]
    __psynch_cvwait

    And 83,000+ samples are parked in the GrowthSDK queue:

     
    DispatchQueue "GrowthSDK"
    libAdobeGrowthSDK.dylib
    dunamis_ingest_flush
    dunamis::IngestInstanceImpl::flush(...)
    dunamis::Pipeline::flush()
    std::this_thread::sleep_for(...)

    CPU time is only ~5.6s across those 83,000 samples, so the threads are parked in a retry loop rather than doing work. A healthy session on the same machine shows 16-17 samples across 2-3 threads.

    What the Dunamis logs show. This is the part that identifies the cause. From ~/Library/Logs/Adobe/com.adobe.dunamis/, repeating for the length of a 100 MB log file:

     
    xfr.req    cancel: code=dunamis_http_error:0 token=20651
    xfr.req request is cancelled: url=https://cc-api-data.adobe.io/ingest
    status=0 None reason= verb=POST
    evt.store push: bal=9268 name=main.anon_events.0.v1.<uuid>
    xfr.req cancel: code=dunamis_http_error:0 token=20652
    evt.store push: bal=9269
    ...

    Three things there:

    • POSTs to cc-api-data.adobe.io/ingest return status=0 — no HTTP response at all, not a 4xx or 5xx.
    • Every cancelled request pushes its events back onto the store. The backlog (bal) climbs monotonically: 9268, 9269, 9270, 9271.
    • Retries continue with no visible backoff and no drop policy, each consuming a dispatch thread, until the pool is exhausted and the main thread deadlocks.

    Transfer token count exceeded 20,655 in a single session.

    The endpoint itself is fine. From the same machine with Lightroom quit, DNS resolves normally and curl -X POST https://cc-api-data.adobe.io/ingest returns 403 in 0.82s. Whatever produces status=0 is happening inside the SDK.

    Time to failure scales with telemetry event volume. Culling — an event per flag and rating — hangs within minutes. Develop work takes around two hours. Idle eventually hangs from queued events. Healthy sessions show status=200 and bal=0.

    The account-level opt-out doesn't prevent it. With desktop app usage sharing disabled at account.adobe.com, the log shows:

     
    W  ing.pipeln  discard all events: reason=optout  name=main.auth_events.0.v1.<uuid>

    Only auth_events are discarded. main.anon_events keeps collecting and retrying — and anon_events is the queue that grows to 9,271.

    Things I tried that didn't help: account-level usage opt-out; full CC sign-out and sign-in; quarantining the Dunamis caches in Application Support and Preferences; CC Cleaner plus a clean reinstall of 9.4.1; rollback to 9.4. Identical spindump signature after every one. The attached spindump is from after the clean reinstall.

    Ruled out with evidence: memory (128 GB, 95% free, zero swap, Lightroom peak footprint 3 GB, no jetsam kills); disk space (4.3 TB free); catalog corruption (survives clean reinstall with the library intact); image-processing load (export and denoise spike the thread count past 150 and recover normally — the deadlock never does); DNS; VPN software (reproduced with all of it quit); and folder permissions on ~/Library/Logs, which are drwxr-xr-x with no ACLs — I checked because of the separate 9.4 permissions launch crash.

    A few smaller things I noticed along the way:

    • That log folder held 1.0 GB across 91 files, one at exactly 104,857,619 bytes — a 100 MiB rotation cap being hit.
    • Repeated "fs lock failed: code=35" (EAGAIN) across three instance UUIDs, so multiple processes are contending for the same Dunamis store.
    • A latency value of 18347258964us — about 5.1 hours — logged in a session that was six minutes old.
    • The duplicate Objective-C class warnings at launch (SODSFileDecode, _GPUOperator, _CPUOperator in both WichitaFoundation and CameraRaw; VFExporter and friends in both CameraRaw and video_toolkit). Present on a clean install, and I've seen other users post the same lines.

    What would fix it: bound the ingest retry loop with backoff and an eventual drop; cap the GrowthSDK queue's concurrency so telemetry can't consume the process-wide dispatch pool; stop requeuing events from cancelled transfers without limit; and don't block the main thread on a telemetry-dependent NSOperation during window activation. A telemetry endpoint that stops responding should degrade analytics, not make the application unusable.

    Attached: an excerpt of the hang spindump (header plus the full Lightroom process block — the complete file is 29 MB, available on request); an excerpt of the Dunamis log showing the retry loop; and a healthy-state spindump from the same machine and build during a session that didn't hang.

    The two spindumps side by side:

     
    hang:     DispatchQueue "GrowthSDK"   83083 samples   cpu time 5.628s
    Processes reached dispatch thread soft limit (90)

    healthy: DispatchQueue "GrowthSDK" 16 samples cpu time 0.005s
    (no thread limit reached)

    The corresponding Dunamis logs show status=200 and bal=0 in the healthy sessions, versus status=0 and bal climbing past 9,271 in the failing one.

    Happy to provide any of the six spindumps or the full logs.


    @Sameer K 

    Claire H.
    Community Manager
    Community Manager
    July 30, 2026

    Hi ​@kimiwang, thanks for the detailed information about this bug. I have forwarded your information to our developer team as they continue to investigate and fix this issue. We will let you know if we need anything else. We will update here once a fix has been released. I appreciate your patience! ^CH

    dj_paige
    Legend
    February 10, 2026

    I don’t think Lightroom software is supported on Beta operating systems.

    michaeln57162900
    Participant
    February 10, 2026

    Thanks

    Sameer K
    Community Manager
    Community Manager
    February 9, 2026

    Hey, ​@michaeln57162900. Welcome to the Lightroom Community. I’ll help you figure this out. 

    Has this started happening since a recent Lightroom release? Have you installed Lightroom from the Creative Cloud desktop app or via the Mac App Store? Was Lightroom working on this machine before you updated to macOS Tahoe 26.3 (beta)? 

    Try these steps to get Lightroom to launch:

    • Reset Lightroom by holding the OPT + SHIFT when you launch Lightroom and select 'Yes'.
    • Ensure Lightroom has the required permissions on macOS: https://adobe.ly/3DyUwsz
    • Go to the following location to launch Lightroom via the terminal.
      In Finder > Application Folder > Open Lightroom  Folder > Right-click on Lightroom .app > Show Package Contents > Contents > macOS > Lightroom—double-click to open.

    Share the log of what you see in the terminal window when Lightroom Launches. 

     

    Let me know how it goes. 

    Thanks!
    Sameer K

    (Type '@' and type my name to mention me when you reply)

    michaeln57162900
    Participant
    February 10, 2026

    Many thanks Sameer K.

    I’ve tried all the steps you suggested but still no joy.

    The Lightroom App I am using is the Cloud based Lightroom. It all went wrong when I upgraded my MacOS to the latest Tahoe Beta 26.3.

    I can get all my images on the Lightroom Mobile App on my iPad /iPhone but I need the Mac to process the images properly.

    After I launch the LR app and no images load, when I go to close the app, the software hangs and doesn’t respond which leads me to think its something to do with the MacOS Beta??

    Sameer K
    Community Manager
    Community Manager
    February 10, 2026

    Thanks for the update, ​@michaeln57162900. It helps. 

    Here, try these suggestions:

    • In MacOS Finder, choose Go > Go To Folder in the Finder window and type ~/pictures. Locate a bundle named Lightroom Library.lrlibrary.
    • Right-click or control-click this bundle and choose Show Package Contents. You'll find a folder inside it with a long cryptic string of numbers and letters (for example: d1a4f88d2b534c7d91022136fd182532). Open that folder.
    • In the folder, move out all the files named Managed Catalog.[anything] to the Mac's desktop. 
    • Launch Lightroom.

    Let me know how it goes. Thanks!

    Sameer K

    (Type '@' and type my name to mention me when you reply)

    michaeln57162900
    Participant
    February 9, 2026

    I’m running Tahoe 26.3 Beta

    Sameer K
    Community Manager
    Community Manager
    February 4, 2026

    Hey, ​@Huxley5CC4. Thanks for creating this new thread. In one of my last responses on our previous thread, I shared that the team is actively monitoring this conversation. 

    We request that you share a Sample Process log from the Activity Monitor on macOS. It is recommended that you try creating the Sample Process closer to when Lightroom starts to freeze.

    Follow the steps here, or as mentioned below: https://helpx.adobe.com/photoshop/kb/how-to-get-a-process-sample-or-spindump.html 

    1. Open Activity Monitor
    2. Launch Lightroom
    3. Select Lightroom in Activity Monitor
    4. Select “Sample Process”. In the Activity Monitor’s Menu bar, select View -> Sample Process
    5. Save the file and send it to us here, or via direct message from my profile. 

    Additionally, do you notice an abnormal RAM usage spike? You can monitor that in the Activity Monitor as well. 

     

    Thanks!
    Sameer K

    Known Participant
    February 4, 2026

    Hi Sameer - here is the direct link to the process sample you requested: https://www.dropbox.com/scl/fi/1i2fcvrzwjl4yiq625dxr/Huxley-Sample-of-Adobe-Lightroom.txt?rlkey=h8dsxvnme9idglhi2gefj96z8&dl=0

     

    Also, this is the RAM usage - I don’t know if this is abnormal or not:

     

    Known Participant
    February 4, 2026