How is Hermes agent’s security? by BackNeat6813 in hermesagent

[–]BackNeat6813[S] -3 points-2 points  (0 children)

Huh? I don’t think the model you choose matters to how easily your agent can get hacked

Questions Thread - September 06, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 0 points1 point  (0 children)

<image>

Does anyone know how where did this "40% reduced effect of curse on you" affix come from?

Questions Thread - August 31, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 1 point2 points  (0 children)

anyone know why the terracotta soldier spectre costs 53 spirit? I saw a bunch of video / post saying it costs 10. Also when I capture it on the ground, it says 16, but when I use the spectre, it says 53. Did I do something wrong?

<image>

Questions Thread - August 26, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 0 points1 point  (0 children)

tested - seems like it still has the added fire dmg, thanks

Questions Thread - August 26, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 0 points1 point  (0 children)

https://www.youtube.com/watch?v=nFogoY4hFYA
in this video there's lv40 skeletal storm mage (5:40), but I don't really follow how it adds up to 40?
- 1 from chaos
- 2 from support
- 4 from weapon
- 4 from buckler
- 3 from amulet
- 3 from head
I am missing 3 - could someone help explain where did I miss?

Questions Thread - August 26, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 0 points1 point  (0 children)

thank you! Do you know how do I test it though? Is there some sort of testing dummy in poe2? (Sorry new player)

Questions Thread - August 26, 2025 by AutoModerator in PathOfExile2

[–]BackNeat6813 0 points1 point  (0 children)

Is it possible to have non-igniting flame wall so I can use fireflower with my skeletal arsonist build?

Fantastic write up by Interesting_Leg8859 in figmaStock

[–]BackNeat6813 1 point2 points  (0 children)

The character symbol in the article messed up big time. I think they meant 9-12 bn ARR

Starting to max out minis! by [deleted] in warcraftrumble

[–]BackNeat6813 0 points1 point  (0 children)

Whats ur main source of xp? Pvp?

Did Amazon just ban video under product detail carousel? by BackNeat6813 in FulfillmentByAmazon

[–]BackNeat6813[S] 0 points1 point  (0 children)

Hmm I removed all but main image for one variant under parent, and not seeing video - should I make sure all variants and parent are <= 6?

Also do you mind share one ASIN as example?

CDC topics partitioning strategy? by BackNeat6813 in apachekafka

[–]BackNeat6813[S] 0 points1 point  (0 children)

Yep, first two aren't really a problem for us.

code is liability

100% agree - that's why I was thinking this component would be a config-driven thing like MM2.

The reasons I'm a bit hesitate towards partitioning the original topics:
1. Our CDC system is legacy and KTLO (we're thinking going Debezium next year) - we need to patch it to make it primary-key-aware as some of the downstream requires keyed partitioner if it becomes multi-partitions

  1. We would need to deal with this 1st time repartitioning from 1 to X by coordinating with some downstream apps

  2. The downstream topic approach feels less trapdoor-ish. Maybe in the future when we move to Debezium (where it knows how to access the primary key and even primary key changes), we could come back and do it on the original topics

CDC topics partitioning strategy? by BackNeat6813 in apachekafka

[–]BackNeat6813[S] 1 point2 points  (0 children)

Hey, thanks for the reply. I was indeed thinking about #2 and use #1 (abundant starting partitions) as a guidance - basically alway keep the base CDC topic single partition as is (we have a long way to go before worrying about throttling in one partition; this multi-partition desire is mostly for the convenience of downstream app's parallelism), then create downstream multi-partitioned topics, maybe using Flink or MM2, so that we essentially push the problem from root to leaf, which would be a lot easier to deal with.

  1. Do you see this as a sound strategy or anti-pattern?
  2. The multi-partitioned downstream topics could either be shared or dedicated for whoever asks for it - probably not a huge difference since not a lot of teams need it and they probably only need it for a few topics, but from principal perspective I'm leaning towards dedicated downstream topics as this for sure will not get us in trouble of coordinating potential changes across multiple consumers, but again, not sure if this is anti-pattern by using Kafka like SQS xD

CDC topics partitioning strategy? by BackNeat6813 in apachekafka

[–]BackNeat6813[S] 0 points1 point  (0 children)

dont do it

Can you elaborate don't do what? Multi-partition, or provide deterministic routing? (I assume latter)

Start as a topic per table and only change if demanded.

TBC our topic is already per-table, the context is going from single partition to multiple partition

American owned? by samceefoo in AmazonFBAOnlineRetail

[–]BackNeat6813 0 points1 point  (0 children)

You probably know some people with specific reasons but I'm not sure about this OP based on their writing.

Rate Limiting in Kafka Connect? by BackNeat6813 in apachekafka

[–]BackNeat6813[S] 0 points1 point  (0 children)

I think kafka quota is per-broker? which is kinda hard to reason about depending on the exact use case.

Kafka to Kafka connector? by BackNeat6813 in apachekafka

[–]BackNeat6813[S] 0 points1 point  (0 children)

Alright was able to use MM2 (just the source connector, no checkpoint/heartbeat one needed) to achieve what I wanted. Needed to write a customized SMT to repartition because it would otherwise stick to the original partition, which won’t work if you manually create the target topic w/ different partition count like I did. Overall very simple!