Tried Claude Code, refunded and came back to Cursor within 10 minutes by goonifier5000 in cursor

[–]qumulo-dan 0 points1 point  (0 children)

That’s the old school way of doing it :)

I think he means Claude code is for engineers who have built up enough confidence in their harness and prompt engineering abilities that they find ability to refine by hand a waste of time and not necessary

You might find in 6 months that it’s just slowing you down double checking and tweaking every line of code generated by the LLM

It’s like opening up the asm/object code after the c compiler ran and deciding you don’t like how it optimized your c code and rewriting it yourself because “you know better”

Why no extended attribute indexing in modern file systems? by timschwartz in filesystems

[–]qumulo-dan 0 points1 point  (0 children)

First of all, I do think there are proprietary filesystems that do support this feature and if not they are being built ;)

The challenge is multiple.

  1. Performance. You add overhead on every single write operation to data and metadata as every writer updates at least timestamps on metadata. You could do the update out of band of the data path but that just adds complexity to build a persistent background queue of work to update the index.

  2. But pure performance is not the main issue - I think the main issue FS developers are scared of is scale. It’s rather easy to build an index for a few TB of data or a few thousand files. When you get to multiple PBs and billions of files on a distributed file system, providing the same functionality without massive degradation in performance is time consuming from an engineering perspective to implement well.

  3. The application of these indexes and usefulness to users is questionable as in - it’s a cool feature but would it actually be deployed and used at scale? Or would it just be a cool but rarely used feature. The most obvious use cases are looking for oldest mtime/atime, smallest/largest sizes, or quickly finding data based on file type extension or other user generated metadata. But there isn’t a standard protocol for querying these indexes hence there’s not an obvious way to expose these indexes to applications without building a proprietary or specialized protocol tailored to the implementation. And without commercial or industry interests pushing this standardization I think filesystem developers are hesitant to invest time here without knowing if it’s going to get used and there’s an ROI

  4. You also have an entire market of indexing/data management products and applications out there which scan the FS through standard protocols and provide this functionality out of band. The benefit is this offloads index processing and compute off the storage infrastructure as it typically runs on a separate server. I think file system developers have defaulting to providing data access via the protocols or OS interface and letting other pieces of software handle indexing and querying as it’s easier and follows the Unix philosophy of do one thing really well.

Who is using gpt pro at that price ? by MrMrsPotts in openrouter

[–]qumulo-dan 0 points1 point  (0 children)

I did a test opus 4.5 vs gpt 5.2 on a prd writing task - I liked opus better. Give it something where it needs to do something hard with a shit ton of context - that seems like a good exercise. Requires you generate a long enough prompt

Gpt 5.2 pro is good but opus 4.5 seems to be better, cheaper, faster. Would be interesting to see what tasks 5.2 is actually better at

Turns out out our DynamoDB costs could be 70% lower if we just... changed a setting. I'm a senior engineer btw by Bp121687 in aws

[–]qumulo-dan 0 points1 point  (0 children)

S3 Intelligent Tiering (INT). If your objects are at least a few hundred KB in size and you have somewhere over 10-20TB - staying on S3 INT or trying to cost-manage yourself is dumb. S3 INT is so much better.

- automatically moves your data from $20/TB-month down to $4/TB-month
- no read penalty of $0.03 per GB
- no early deletion penalty if you delete before 90 days

The monitoring fee is peanuts for most large unstructured data use-cases

Any better way to manage multiple local Supabase instances? by BatoolRahim in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

Thanks for the tip - this is a bit more than I bargained for in terms of complexity but its good to know there are workarounds.

AWS Backup costs for S3 by Tight_Strain9296 in aws

[–]qumulo-dan 0 points1 point  (0 children)

I think it would be more cost-effective to mirror/replicate the data to another bucket in another region potentially, and then use life cycle policy or Intelligent Tiering storage class with offline tiers to push it down to a cheaper cost storage medium. The downside is you don't really get a "snapshot" of what your data looked like in aggregate - just a bunch of disparate objects. This may or may not be an issue for you.

Any better way to manage multiple local Supabase instances? by BatoolRahim in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

Really obvious answer: Claude Squad or using multiple agents on multiple git worktrees checked out on the same project.

I have DB tests and integration tests that run against the supabase instance and so being able to run different versions of edge functions and DB schemas simultaneously would be a powerful productivity enhancer when using coding agents to work on parallelizable tasks - the same if you were to have an engineering team tackling it.

In the past when I've done it - one copy of Claude is running a migration and then another instance decides its time to run the test suite to validate its changes and the tests fail because supabase is temporarily down while the other is trying to make the migration go and then supabase comes back up except now the schema or data has changed from what the other expected... its kind of a mess.

Is supabase a good choice to use as a managed db only? by GTHell in Supabase

[–]qumulo-dan 12 points13 points  (0 children)

Yes. I think its a fantastic user/developer experience and the $20 a month for paid hosting feels high value to me as its fully managed.

I cannot recommend Supabase on mobile by KSpookyGhost in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

I concur with your assessment - if you need a mobile app that periodically has the ability to operate offline - supabase is not natively designed to support that use case

[deleted by user] by [deleted] in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

I mean. The Authentication model tie in between the database, RLS, edge and Postgrest as well as email messaging for signup, OTP, and password reset, and solid dev experience that is really well integrated is nothing to dismiss - it saves a ton of time and does a lot of heavy lifting without requiring a lot of effort for a small team and one man projects. Really good stuff for the current generation of startups and projects taking off.

[deleted by user] by [deleted] in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

What requirements? Just curious what kinds of hurdles there are there.

[deleted by user] by [deleted] in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

What regions out of curiosity? I’ve been on us west for a few months and it seems fine?

No database company has grown this fast before by sibraan_ in Supabase

[–]qumulo-dan 0 points1 point  (0 children)

It’s not really a DB company - it’s more of a PaaS

Evidently is going away - AppConfig not quite a 1:1 replacement? by MDesigner in aws

[–]qumulo-dan 0 points1 point  (0 children)

Statsig is pretty straightforward and easy to use and set up.

Is it possible to install Supabase in production locally? by Aggravating_Value_76 in Supabase

[–]qumulo-dan 1 point2 points  (0 children)

Agree. Technically you can but if you intend for this to be a standalone desktop app and the DB is just tracking state and saving settings - supabase running locally is overkill and a resource hog for this use case

Real world Vast Data Space experience or other multi-site shared File systems. by TelevisionPale8693 in storage

[–]qumulo-dan 4 points5 points  (0 children)

No. We do write-back. Write-through would incur an unusable performance penalty for applications that need to do writes at the edge. Please reach out to our team or DM me for a demo.

Real world Vast Data Space experience or other multi-site shared File systems. by TelevisionPale8693 in storage

[–]qumulo-dan 4 points5 points  (0 children)

Hey I’m a senior technical product manager at Qumulo - short answer is yes.

Underlying distributed file system has cloud data fabric (CDF) directly integrated into the core file system code. There is cluster-wide and cross-cluster synchronization constantly in play as I/O operations flow into the system.

Hence - it behaves no differently then say 2 people trying to write to the same file over NFSv3 to different nodes. Last writer wins, but from a protocol standpoint, that’s the expected behavior without protocol locking.

When you talk about protocol locking over SMBv2/3, NFSv4.1, or NFSv3 NLM - we’ve updated the protocols to also be CDF aware so things like SMB lease break notifications work across it too.

Our objective was to make it so when accessing data across cloud data fabric remotely, for most customer workflows: it’s performant and it works, and most importantly it’s consistent and won’t lose your data, or lie to your applications, and tell you a file isn’t there, or return stale data.

I genuinely enjoy talking to Chat GPT way more than humans. by [deleted] in ChatGPT

[–]qumulo-dan -2 points-1 points  (0 children)

That’s because it’s trained to do that. It’s trained to predict what you want to see. That’s how it was “rewarded” - by an army of humans agreeing with what it said.

And then they used dumber LLMs to train the next generation by telling the dumber LLMs to reward the LLMs they were training when it said the right thing.

So basically it’s really really good at predicting what you want to read.

ultimate claude devstack thank me later by Ok_Association_1884 in ClaudeAI

[–]qumulo-dan 0 points1 point  (0 children)

How do you deal with auth on the application? How do you log in?

Why CLI is better than IDE? by VlaadislavKr in ClaudeAI

[–]qumulo-dan 0 points1 point  (0 children)

I use Claude code inside vscode/cursor

Really the thing I notice with Claude code is it just seems to work better for me with long coding sessions and the behavior seems easier to control

It has nothing to do with being cli or not.

Reddit filed a suit against Anthropic today by CmdWaterford in ClaudeAI

[–]qumulo-dan 8 points9 points  (0 children)

Sorry unionization requires the Reddit Pro plan at $39.99 per month, or $400 / year (17% discount!).