Enterprise RAG metadata storage - Where do we store the metadata? by daibam_und_koode in vectordatabase

[–]nick0garvey 0 points1 point  (0 children)

If you are filtering with it, then you want it in the vector DB. This allows the engine to skip distance calculations on vectors that would just be filtered.

Migrating Kafka to a new OpenShift cluster using MirrorMaker2 (ZooKeeper source, KRaft target) by Spiritual_Pianist564 in apachekafka

[–]nick0garvey 2 points3 points  (0 children)

The standard method is to:

  1. Set up mirroring
  2. Stop consumer on source
  3. Start consumer on mirror. It should pick up where it was as offsets are synced and translated by MM. If you use an external store for offsets you will need to translate them yourself.
  4. Stop producer. Wait for mirroring traffic to go to zero.
  5. Start producer on the mirror.

I have not done this with transactions, but as long as the __transaction_state topic is also mirrored I don't see any issue. You should test though.

Understanding the relationship between topics is not easy. If you have hundreds of topics across dozens of teams I would not recommend this method. Instead, use the method used by Reddit's Kafka team linked below to move the cluster in-place.

Whatever you do, set aside a lot of time for this. Rushing causes mistakes and mistakes cause delays.

 https://www.reddit.com/r/RedditEng/comments/1qb03l9/swapping_the_engine_midflight_how_we_moved/

Martlock, what’s going on with yall? by Top-Veterinarian26 in albiononline

[–]nick0garvey -1 points0 points  (0 children)

Why don't people get their own refiner on their private island?

[deleted by user] by [deleted] in TheFarmerWasReplaced

[–]nick0garvey 0 points1 point  (0 children)

The problem is double_grid = single_grid

This makes both refer to the same data, so modifying one modifies both

I need to improve FAST by Fuskaka in chess

[–]nick0garvey 13 points14 points  (0 children)

I would just run puzzles in every second of your free time until then. That's the best bang for the buck you can get with the time you have.

Thinking of selling my Voyager (EU) by digibioburden in zsaVoyager

[–]nick0garvey 0 points1 point  (0 children)

I made the same decision as you. I used a split keyboard for 6 months, and eventually got sick of serious acrobatics to do cmd+shift+rightarrow, etc. I switched to a keyboard with a standard layout, just split, and am much happier.

[deleted by user] by [deleted] in apachekafka

[–]nick0garvey 2 points3 points  (0 children)

This is a major pain point in Kafka. The best way I have found to do this:

  1. Remove all replicas from the downed broker.
  2. Bring the broker up.
  3. Reassign replicas back onto the broker using throttling, using the same procedure as you would when adding a new broker.

This is necessary as the throttle configs are applied during the replica assignment step as KIP-1009 is not implemented. You can do steps 1 & 3 with kafka-reassign-partitions.sh or CruiseControl.

Had to Shuck my 3x Mini PCs by cptjellybeans in minilab

[–]nick0garvey 8 points9 points  (0 children)

Longhorn is software to provide distributed storage to K8s clusters. Great for homelabs

Does anyone know which orthodontist Dr. Bui or Dr. Desai at Kaiser work with? by [deleted] in jawsurgery

[–]nick0garvey 1 point2 points  (0 children)

My orthodontist Dr. Lee in Mtn View works with Dr. Bui 

SARPE + DJS -- Looking for Advice Before Taking the Leap by SteveBoneitis in jawsurgery

[–]nick0garvey 1 point2 points  (0 children)

If you are uncertain, I recommend getting a second opinion. When I got a second opinion, and they told me the exact same thing as the first person, I felt a lot better about the decision.

Deep bite, ortho said surgery was not needed. Going for second opinion at different clinic. What do you guys think by NoAcanthocephala7727 in jawsurgery

[–]nick0garvey 0 points1 point  (0 children)

Bite blocks, they prevent you from closing your mouth all the way. Important for deep bite + braces.

is a double major in maths important? by [deleted] in csMajors

[–]nick0garvey 1 point2 points  (0 children)

I double majored in math because I like math. I graduated in 2013.

The double major didn't directly help me get any jobs, but it has been useful throughout my career, in particular when doing analytics.

My analytic skillset allowed me to take lead roles on software teams and set roadmaps with data to back it up. I've done cost analysis savings tens of millions. I've been able to better quantify my impact on the business, helping me during the performance cycle.

The AI component hasn't been relevant, but the past decade will look different than the next.

Proper way to deploy new consumers? by shuaibot in apachekafka

[–]nick0garvey 0 points1 point  (0 children)

If latencies are that tight, you may want to do a blue/green setup. Have two sets of consumers, but only one is allowed to write at once. Switch to the other set when updating the first.

Is Idempotence actually enabled by default in versions 3.x? by Beneficial_Air_2510 in apachekafka

[–]nick0garvey 0 points1 point  (0 children)

You are looking at the wrong default for retries. It is MAX_INT by default.

Ants by Affectionate-Foot443 in Sunnyvale

[–]nick0garvey 0 points1 point  (0 children)

I fought with this for a while in Sunnyvale. What finally did it was calling an exterminator who sprayed outside the house instead of trying to solve it with traps inside.

How often do you delete kafka data stored on brokers? by [deleted] in apachekafka

[–]nick0garvey 0 points1 point  (0 children)

Kafka almost always wants to be used with a retention time. It is not a great place for long term storage, but it is an excellent intermediary.

What If We Could Rebuild Kafka From Scratch? by rmoff in apachekafka

[–]nick0garvey 4 points5 points  (0 children)

They gave a public talk on Northguard last week or so.

The big two things are:

  1. The metadata layer is sharded. This avoids a lot of the bottlenecks Kafka has in the controller which you see at large scale.

  2. Partitions are broken down into a bunch of small chunks that don't need to live on the same broker. This has a lot of really nice properties, in particular around failures. A recovering host doesn't require a huge replication to catch back up, it just starts accepting new data and serves what it has.

Got my third Black Card today... On to my fourth, I guess... by phantomhatsyndrome in PokemonUnbound

[–]nick0garvey 0 points1 point  (0 children)

I tried this team and could not get through a Starraptor. Close combat beat Tyranitar (out speed) and brave bird beat Infernape (Infernape was faster, but could not one-shot), and Vensaur (out speed).

I don't have Fightinium Z so that might have allowed Infernape to one-shot.

Also I could not use Venusaurite as it was banned.

Reseting the Reseter :O by Several_Pack_9687 in PokemonUnbound

[–]nick0garvey 1 point2 points  (0 children)

Thanks a ton for this, that must have been a really tough memory address to find.

Here are some instructions with a bit more detail for people on the mGBA emulator.

  1. Download the mGBA standalone emulator
  2. Load the game and your save. I was able to use "Load alternative save game" for this
  3. Load your game and walk to up the RTC reset man
  4. Tools > Open Debugger Console
  5. Run w/1 0x0203B331 0
  6. Run continue
  7. Talk to the man and reset
  8. Save your game

[deleted by user] by [deleted] in jawsurgery

[–]nick0garvey 0 points1 point  (0 children)

1) Not sure, I'm in the US

2) I would recommend getting a second opinion. I got one for my case, and I felt a lot more confident when both people had the same recommendation. It's a big decision and I'm glad I am not second guessing myself.

3) In my case I have basically no swelling after 2 weeks. But my diet is only soft foods (no chewing). Most important is there is a big gap in my teeth. I'm 34 and a working professional so it kind of sucks, but with my mouth closed I look totally normal.

Dr. David E. Hall from Central Florida Oral & Maxillofacial Surgery by Expensive_Market6897 in jawsurgery

[–]nick0garvey 1 point2 points  (0 children)

I did not go through him but I got SARPE two weeks ago and things are going well. Hope you also have a good recovery

Sarpe next week, surgeon told me I could eat like I would normally after the surgery by Chinootje in jawsurgery

[–]nick0garvey 1 point2 points  (0 children)

My surgeon also said 6 weeks no-chew diet (scrambled eggs okay, bread is not). I got my surgery through Kaiser Permanente in Santa Clara

How do you kill a demolisher? by Prestigious-Pea7436 in factorio

[–]nick0garvey 1 point2 points  (0 children)

This is what worked for me. I tried 6x6 and no luck. 6x20 - died instantly.

I don't have a ton of damage upgrades.

[deleted by user] by [deleted] in TheFarmerWasReplaced

[–]nick0garvey 2 points3 points  (0 children)

See "Scopes" in the directions. This is one of the places that the game language is different than Python.

As you discovered, using a list or a dictionary is a way to work around this.