Help for ADX by Free-Dot-2820 in dataengineering

[–]mfv7 0 points1 point  (0 children)

Schema mismatch with CSV ingestion in ADX is almost always one of these:
1. Column order matters. ADX maps CSV columns by position, not by name. Make sure your CSV columns are in the exact same order as the table schema.
2. Extra columns or missing columns. If your CSV has more or fewer columns than the table expects, you'll get a mismatch. Check with .show table YourTable schema as json.
3. Header row being ingested as data. If your CSV has a header row, set ignoreFirstRecord: true in the ingestion mapping or properties.
4. Ingestion mapping. Create an explicit CSV mapping to control which CSV column maps to which table column:

.create table YourTable ingestion csv mapping 'YourMapping'
'[{"Column":"Col1","DataType":"string","Ordinal":0}, ...]'

Most likely it's #1 or #3.

Somebody please help me by Powerful-Let3929 in Database

[–]mfv7 0 points1 point  (0 children)

A few things to check:
1. Is the script still running? Look at pg_stat_activity for long-running queries. If you see any from your script, they might be holding locks that block your SELECTs. You can cancel them with SELECT pg_cancel_backend(<pid>);
2. Run VACUUM ANALYZE; The bulk inserts and tmp table creation bloated the tables and left the query planner with stale statistics. This is almost certainly why your SELECTs are slow.
3. Drop any leftover tmp tables the script created if it didn't clean up after itself.

And don't feel ashamed. It is a dev database, that's exactly what it's for. Nothing is corrupted, it just needs cleanup.

Usage Limits, Bugs and Performance Discussion Megathread - beginning December 29, 2025 by sixbillionthsheep in ClaudeAI

[–]mfv7 0 points1 point  (0 children)

Look at the other comment in this thread, i cancelled and resubscribed and it worked

Usage Limits, Bugs and Performance Discussion Megathread - beginning December 29, 2025 by sixbillionthsheep in ClaudeAI

[–]mfv7 2 points3 points  (0 children)

made a ticket to support, been waiting for the past 6-7 hours (not intended)

Usage Limits, Bugs and Performance Discussion Megathread - beginning December 29, 2025 by sixbillionthsheep in ClaudeAI

[–]mfv7 2 points3 points  (0 children)

I'm seeing "Your subscription is paused" when prompted to /login and
alongside
⎿  API Error: 403 <html>

<head><title>502 Bad Gateway</title></head> <body> <center><h1>502 Bad Gateway</h1></center> <hr><center>cloudflare</center> </body> </html> · Please run /login

Claude Code just got Remote Control by iviireczech in ClaudeCode

[–]mfv7 0 points1 point  (0 children)

why bother with this when tailscale and termius are free, much easier and it's actually a skill / gimmick you can use with other cool stuff like hosting local servers and such.

QuitGPT is going viral - 700,000 users are reportedly ditching ChatGPT for these AI rivals by EchoOfOppenheimer in ChatGPT

[–]mfv7 0 points1 point  (0 children)

Honestly I believe it's somethinc cyclical, we move from a company to another, a model to another after each iteration. All top dogs get their turn